├── .bleep └── generated-sources │ ├── typo-tester-anorm@jvm213 │ └── scripts.GenHardcodedFiles │ │ ├── anorm │ │ └── testdb │ │ │ └── hardcoded │ │ │ └── ExecuteReturningSyntax.scala │ │ └── testdb │ │ └── hardcoded │ │ ├── TestInsert.scala │ │ ├── Text.scala │ │ ├── compositepk │ │ └── person │ │ │ ├── PersonFieldValue.scala │ │ │ ├── PersonFields.scala │ │ │ ├── PersonId.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── customtypes │ │ └── Defaulted.scala │ │ ├── myschema │ │ ├── Number.scala │ │ ├── Sector.scala │ │ ├── football_club │ │ │ ├── FootballClubFieldValue.scala │ │ │ ├── FootballClubFields.scala │ │ │ ├── FootballClubId.scala │ │ │ ├── FootballClubRepo.scala │ │ │ ├── FootballClubRepoImpl.scala │ │ │ ├── FootballClubRepoMock.scala │ │ │ └── FootballClubRow.scala │ │ ├── marital_status │ │ │ ├── MaritalStatusFieldValue.scala │ │ │ ├── MaritalStatusFields.scala │ │ │ ├── MaritalStatusId.scala │ │ │ ├── MaritalStatusRepo.scala │ │ │ ├── MaritalStatusRepoImpl.scala │ │ │ ├── MaritalStatusRepoMock.scala │ │ │ └── MaritalStatusRow.scala │ │ └── person │ │ │ ├── PersonFieldValue.scala │ │ │ ├── PersonFields.scala │ │ │ ├── PersonId.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── package.scala │ │ └── streamingInsert.scala │ ├── typo-tester-anorm@jvm3 │ └── scripts.GenHardcodedFiles │ │ ├── anorm │ │ └── testdb │ │ │ └── hardcoded │ │ │ └── ExecuteReturningSyntax.scala │ │ └── testdb │ │ └── hardcoded │ │ ├── TestInsert.scala │ │ ├── Text.scala │ │ ├── compositepk │ │ └── person │ │ │ ├── PersonFieldValue.scala │ │ │ ├── PersonFields.scala │ │ │ ├── PersonId.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── customtypes │ │ └── Defaulted.scala │ │ ├── myschema │ │ ├── Number.scala │ │ ├── Sector.scala │ │ ├── football_club │ │ │ ├── FootballClubFieldValue.scala │ │ │ ├── FootballClubFields.scala │ │ │ ├── FootballClubId.scala │ │ │ ├── FootballClubRepo.scala │ │ │ ├── FootballClubRepoImpl.scala │ │ │ ├── FootballClubRepoMock.scala │ │ │ └── FootballClubRow.scala │ │ ├── marital_status │ │ │ ├── MaritalStatusFieldValue.scala │ │ │ ├── MaritalStatusFields.scala │ │ │ ├── MaritalStatusId.scala │ │ │ ├── MaritalStatusRepo.scala │ │ │ ├── MaritalStatusRepoImpl.scala │ │ │ ├── MaritalStatusRepoMock.scala │ │ │ └── MaritalStatusRow.scala │ │ └── person │ │ │ ├── PersonFieldValue.scala │ │ │ ├── PersonFields.scala │ │ │ ├── PersonId.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── package.scala │ │ └── streamingInsert.scala │ ├── typo-tester-doobie@jvm213 │ └── scripts.GenHardcodedFiles │ │ └── testdb │ │ └── hardcoded │ │ ├── TestInsert.scala │ │ ├── compositepk │ │ └── person │ │ │ ├── PersonFieldValue.scala │ │ │ ├── PersonFields.scala │ │ │ ├── PersonId.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── customtypes │ │ └── Defaulted.scala │ │ ├── myschema │ │ ├── Number.scala │ │ ├── Sector.scala │ │ ├── football_club │ │ │ ├── FootballClubFieldValue.scala │ │ │ ├── FootballClubFields.scala │ │ │ ├── FootballClubId.scala │ │ │ ├── FootballClubRepo.scala │ │ │ ├── FootballClubRepoImpl.scala │ │ │ ├── FootballClubRepoMock.scala │ │ │ └── FootballClubRow.scala │ │ ├── marital_status │ │ │ ├── MaritalStatusFieldValue.scala │ │ │ ├── MaritalStatusFields.scala │ │ │ ├── MaritalStatusId.scala │ │ │ ├── MaritalStatusRepo.scala │ │ │ ├── MaritalStatusRepoImpl.scala │ │ │ ├── MaritalStatusRepoMock.scala │ │ │ └── MaritalStatusRow.scala │ │ └── person │ │ │ ├── PersonFieldValue.scala │ │ │ ├── PersonFields.scala │ │ │ ├── PersonId.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ └── package.scala │ ├── typo-tester-doobie@jvm3 │ └── scripts.GenHardcodedFiles │ │ └── testdb │ │ └── hardcoded │ │ ├── TestInsert.scala │ │ ├── compositepk │ │ └── person │ │ │ ├── PersonFieldValue.scala │ │ │ ├── PersonFields.scala │ │ │ ├── PersonId.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── customtypes │ │ └── Defaulted.scala │ │ ├── myschema │ │ ├── Number.scala │ │ ├── Sector.scala │ │ ├── football_club │ │ │ ├── FootballClubFieldValue.scala │ │ │ ├── FootballClubFields.scala │ │ │ ├── FootballClubId.scala │ │ │ ├── FootballClubRepo.scala │ │ │ ├── FootballClubRepoImpl.scala │ │ │ ├── FootballClubRepoMock.scala │ │ │ └── FootballClubRow.scala │ │ ├── marital_status │ │ │ ├── MaritalStatusFieldValue.scala │ │ │ ├── MaritalStatusFields.scala │ │ │ ├── MaritalStatusId.scala │ │ │ ├── MaritalStatusRepo.scala │ │ │ ├── MaritalStatusRepoImpl.scala │ │ │ ├── MaritalStatusRepoMock.scala │ │ │ └── MaritalStatusRow.scala │ │ └── person │ │ │ ├── PersonFieldValue.scala │ │ │ ├── PersonFields.scala │ │ │ ├── PersonId.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ └── package.scala │ ├── typo-tester-typo-java │ └── scripts.GenHardcodedFiles │ │ └── testdb │ │ └── hardcoded │ │ ├── DefaultedDeserializer.java │ │ ├── DefaultedSerializer.java │ │ ├── TestInsert.java │ │ ├── compositepk │ │ └── person │ │ │ ├── PersonFields.java │ │ │ ├── PersonId.java │ │ │ ├── PersonRepo.java │ │ │ ├── PersonRepoImpl.java │ │ │ ├── PersonRepoMock.java │ │ │ ├── PersonRow.java │ │ │ └── PersonRowUnsaved.java │ │ ├── customtypes │ │ └── Defaulted.java │ │ └── myschema │ │ ├── Number.java │ │ ├── Sector.java │ │ ├── football_club │ │ ├── FootballClubFields.java │ │ ├── FootballClubId.java │ │ ├── FootballClubRepo.java │ │ ├── FootballClubRepoImpl.java │ │ ├── FootballClubRepoMock.java │ │ └── FootballClubRow.java │ │ ├── marital_status │ │ ├── MaritalStatusFields.java │ │ ├── MaritalStatusId.java │ │ ├── MaritalStatusRepo.java │ │ ├── MaritalStatusRepoImpl.java │ │ ├── MaritalStatusRepoMock.java │ │ └── MaritalStatusRow.java │ │ └── person │ │ ├── PersonFields.java │ │ ├── PersonId.java │ │ ├── PersonRepo.java │ │ ├── PersonRepoImpl.java │ │ ├── PersonRepoMock.java │ │ ├── PersonRow.java │ │ └── PersonRowUnsaved.java │ ├── typo-tester-typo-scala │ └── scripts.GenHardcodedFiles │ │ └── testdb │ │ └── hardcoded │ │ ├── TestInsert.scala │ │ ├── compositepk │ │ └── person │ │ │ ├── PersonFieldValue.scala │ │ │ ├── PersonFields.scala │ │ │ ├── PersonId.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── customtypes │ │ └── Defaulted.scala │ │ └── myschema │ │ ├── Number.scala │ │ ├── Sector.scala │ │ ├── football_club │ │ ├── FootballClubFieldValue.scala │ │ ├── FootballClubFields.scala │ │ ├── FootballClubId.scala │ │ ├── FootballClubRepo.scala │ │ ├── FootballClubRepoImpl.scala │ │ └── FootballClubRow.scala │ │ ├── marital_status │ │ ├── MaritalStatusFieldValue.scala │ │ ├── MaritalStatusFields.scala │ │ ├── MaritalStatusId.scala │ │ ├── MaritalStatusRepo.scala │ │ ├── MaritalStatusRepoImpl.scala │ │ └── MaritalStatusRow.scala │ │ └── person │ │ ├── PersonFieldValue.scala │ │ ├── PersonFields.scala │ │ ├── PersonId.scala │ │ ├── PersonRepo.scala │ │ ├── PersonRepoImpl.scala │ │ ├── PersonRow.scala │ │ └── PersonRowUnsaved.scala │ ├── typo-tester-zio-jdbc@jvm213 │ └── scripts.GenHardcodedFiles │ │ └── testdb │ │ └── hardcoded │ │ ├── TestInsert.scala │ │ ├── Text.scala │ │ ├── compositepk │ │ └── person │ │ │ ├── PersonFieldValue.scala │ │ │ ├── PersonFields.scala │ │ │ ├── PersonId.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── customtypes │ │ └── Defaulted.scala │ │ ├── myschema │ │ ├── Number.scala │ │ ├── Sector.scala │ │ ├── football_club │ │ │ ├── FootballClubFieldValue.scala │ │ │ ├── FootballClubFields.scala │ │ │ ├── FootballClubId.scala │ │ │ ├── FootballClubRepo.scala │ │ │ ├── FootballClubRepoImpl.scala │ │ │ ├── FootballClubRepoMock.scala │ │ │ └── FootballClubRow.scala │ │ ├── marital_status │ │ │ ├── MaritalStatusFieldValue.scala │ │ │ ├── MaritalStatusFields.scala │ │ │ ├── MaritalStatusId.scala │ │ │ ├── MaritalStatusRepo.scala │ │ │ ├── MaritalStatusRepoImpl.scala │ │ │ ├── MaritalStatusRepoMock.scala │ │ │ └── MaritalStatusRow.scala │ │ └── person │ │ │ ├── PersonFieldValue.scala │ │ │ ├── PersonFields.scala │ │ │ ├── PersonId.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── package.scala │ │ └── streamingInsert.scala │ └── typo-tester-zio-jdbc@jvm3 │ └── scripts.GenHardcodedFiles │ └── testdb │ └── hardcoded │ ├── TestInsert.scala │ ├── Text.scala │ ├── compositepk │ └── person │ │ ├── PersonFieldValue.scala │ │ ├── PersonFields.scala │ │ ├── PersonId.scala │ │ ├── PersonRepo.scala │ │ ├── PersonRepoImpl.scala │ │ ├── PersonRepoMock.scala │ │ ├── PersonRow.scala │ │ └── PersonRowUnsaved.scala │ ├── customtypes │ └── Defaulted.scala │ ├── myschema │ ├── Number.scala │ ├── Sector.scala │ ├── football_club │ │ ├── FootballClubFieldValue.scala │ │ ├── FootballClubFields.scala │ │ ├── FootballClubId.scala │ │ ├── FootballClubRepo.scala │ │ ├── FootballClubRepoImpl.scala │ │ ├── FootballClubRepoMock.scala │ │ └── FootballClubRow.scala │ ├── marital_status │ │ ├── MaritalStatusFieldValue.scala │ │ ├── MaritalStatusFields.scala │ │ ├── MaritalStatusId.scala │ │ ├── MaritalStatusRepo.scala │ │ ├── MaritalStatusRepoImpl.scala │ │ ├── MaritalStatusRepoMock.scala │ │ └── MaritalStatusRow.scala │ └── person │ │ ├── PersonFieldValue.scala │ │ ├── PersonFields.scala │ │ ├── PersonId.scala │ │ ├── PersonRepo.scala │ │ ├── PersonRepoImpl.scala │ │ ├── PersonRepoMock.scala │ │ ├── PersonRow.scala │ │ └── PersonRowUnsaved.scala │ ├── package.scala │ └── streamingInsert.scala ├── .claude └── settings.local.json ├── .github └── workflows │ ├── build.yml │ ├── deploy-docs.yml │ └── docker.yml ├── .gitignore ├── .mise.toml ├── .scalafmt.conf ├── CLAUDE.md ├── LICENSE ├── README.md ├── adventureworks_sql ├── person_detail.sql ├── person_dynamic.sql ├── person_row_join.sql ├── update_person.sql └── update_person_returning.sql ├── bleep.yaml ├── contributing.md ├── docker-compose.yml ├── docker └── Dockerfile ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── init ├── data │ ├── frontpage │ │ ├── complex-query.sql │ │ ├── schema.sql │ │ ├── update-user-status.sql │ │ └── user-analytics.sql │ ├── install.sql │ ├── issue148.sql │ └── test-tables.sql └── install.sh ├── openapi-test-java-server-jaxrs-client-jdk └── testapi │ ├── OpenApiIntegrationTest.java │ ├── api │ ├── AnimalsApi.java │ ├── AnimalsApiClient.java │ ├── AnimalsApiServer.java │ ├── BadRequest.java │ ├── ClientError4XX.java │ ├── CreatePetOnPetCreatedCallback.java │ ├── Created.java │ ├── NotFound.java │ ├── Ok.java │ ├── PetStatusChangedWebhook.java │ ├── PetsApi.java │ ├── PetsApiClient.java │ ├── PetsApiServer.java │ ├── Response200404.java │ ├── Response2004XX5XX.java │ ├── Response201400.java │ └── ServerError5XX.java │ └── model │ ├── Address.java │ ├── Animal.java │ ├── BaseEntity.java │ ├── Bird.java │ ├── Cat.java │ ├── Currency.java │ ├── Dog.java │ ├── Email.java │ ├── Error.java │ ├── Money.java │ ├── OptionalInfo.java │ ├── Owner.java │ ├── Pet.java │ ├── PetCreate.java │ ├── PetId.java │ └── PetStatus.java ├── openapi-test-java-server-quarkus-reactive-client-jdk └── testapi │ ├── OpenApiIntegrationTest.java │ ├── api │ ├── AnimalsApi.java │ ├── AnimalsApiClient.java │ ├── AnimalsApiServer.java │ ├── BadRequest.java │ ├── ClientError4XX.java │ ├── CreatePetOnPetCreatedCallback.java │ ├── Created.java │ ├── NotFound.java │ ├── Ok.java │ ├── PetStatusChangedWebhook.java │ ├── PetsApi.java │ ├── PetsApiClient.java │ ├── PetsApiServer.java │ ├── Response200404.java │ ├── Response2004XX5XX.java │ ├── Response201400.java │ └── ServerError5XX.java │ └── model │ ├── Address.java │ ├── Animal.java │ ├── BaseEntity.java │ ├── Bird.java │ ├── Cat.java │ ├── Currency.java │ ├── Dog.java │ ├── Email.java │ ├── Error.java │ ├── Money.java │ ├── OptionalInfo.java │ ├── Owner.java │ ├── Pet.java │ ├── PetCreate.java │ ├── PetId.java │ └── PetStatus.java ├── openapi-test-java-server-spring-client-jdk └── testapi │ ├── OpenApiIntegrationTest.java │ ├── api │ ├── AnimalsApi.java │ ├── AnimalsApiClient.java │ ├── AnimalsApiServer.java │ ├── BadRequest.java │ ├── ClientError4XX.java │ ├── CreatePetOnPetCreatedCallback.java │ ├── Created.java │ ├── NotFound.java │ ├── Ok.java │ ├── PetStatusChangedWebhook.java │ ├── PetsApi.java │ ├── PetsApiClient.java │ ├── PetsApiServer.java │ ├── Response200404.java │ ├── Response2004XX5XX.java │ ├── Response201400.java │ └── ServerError5XX.java │ └── model │ ├── Address.java │ ├── Animal.java │ ├── BaseEntity.java │ ├── Bird.java │ ├── Cat.java │ ├── Currency.java │ ├── Dog.java │ ├── Email.java │ ├── Error.java │ ├── Money.java │ ├── OptionalInfo.java │ ├── Owner.java │ ├── Pet.java │ ├── PetCreate.java │ ├── PetId.java │ └── PetStatus.java ├── openapi-test-kotlin-server-jaxrs-client-jdk ├── build.gradle.kts ├── src │ └── test │ │ └── kotlin │ │ └── testapi │ │ └── OpenApiIntegrationTest.kt └── testapi │ ├── api │ ├── AnimalsApi.kt │ ├── AnimalsApiClient.kt │ ├── AnimalsApiServer.kt │ ├── CreatePetOnPetCreatedCallback.kt │ ├── PetStatusChangedWebhook.kt │ ├── PetsApi.kt │ ├── PetsApiClient.kt │ ├── PetsApiServer.kt │ └── Responses.kt │ └── model │ ├── Address.kt │ ├── Animal.kt │ ├── BaseEntity.kt │ ├── Bird.kt │ ├── Cat.kt │ ├── Currency.kt │ ├── Dog.kt │ ├── Email.kt │ ├── Error.kt │ ├── Money.kt │ ├── OptionalInfo.kt │ ├── Owner.kt │ ├── Pet.kt │ ├── PetCreate.kt │ ├── PetId.kt │ └── PetStatus.kt ├── openapi-test-kotlin-server-quarkus-reactive-client-jdk ├── build.gradle.kts ├── src │ └── test │ │ └── kotlin │ │ └── testapi │ │ └── OpenApiIntegrationTest.kt └── testapi │ ├── api │ ├── AnimalsApi.kt │ ├── AnimalsApiClient.kt │ ├── AnimalsApiServer.kt │ ├── CreatePetOnPetCreatedCallback.kt │ ├── PetStatusChangedWebhook.kt │ ├── PetsApi.kt │ ├── PetsApiClient.kt │ ├── PetsApiServer.kt │ └── Responses.kt │ └── model │ ├── Address.kt │ ├── Animal.kt │ ├── BaseEntity.kt │ ├── Bird.kt │ ├── Cat.kt │ ├── Currency.kt │ ├── Dog.kt │ ├── Email.kt │ ├── Error.kt │ ├── Money.kt │ ├── OptionalInfo.kt │ ├── Owner.kt │ ├── Pet.kt │ ├── PetCreate.kt │ ├── PetId.kt │ └── PetStatus.kt ├── openapi-test-kotlin-server-spring-client-jdk ├── build.gradle.kts ├── src │ └── test │ │ └── kotlin │ │ └── testapi │ │ └── OpenApiIntegrationTest.kt └── testapi │ ├── api │ ├── AnimalsApi.kt │ ├── AnimalsApiClient.kt │ ├── AnimalsApiServer.kt │ ├── CreatePetOnPetCreatedCallback.kt │ ├── PetStatusChangedWebhook.kt │ ├── PetsApi.kt │ ├── PetsApiClient.kt │ ├── PetsApiServer.kt │ └── Responses.kt │ └── model │ ├── Address.kt │ ├── Animal.kt │ ├── BaseEntity.kt │ ├── Bird.kt │ ├── Cat.kt │ ├── Currency.kt │ ├── Dog.kt │ ├── Email.kt │ ├── Error.kt │ ├── Money.kt │ ├── OptionalInfo.kt │ ├── Owner.kt │ ├── Pet.kt │ ├── PetCreate.kt │ ├── PetId.kt │ └── PetStatus.kt ├── openapi-test-scala-server-http4s-client-http4s └── testapi │ ├── OpenApiIntegrationTest.scala │ ├── api │ ├── AnimalsApi.scala │ ├── AnimalsApiClient.scala │ ├── AnimalsApiServer.scala │ ├── CreatePetOnPetCreatedCallback.scala │ ├── PetStatusChangedWebhook.scala │ ├── PetsApi.scala │ ├── PetsApiClient.scala │ ├── PetsApiServer.scala │ └── Responses.scala │ └── model │ ├── Address.scala │ ├── Animal.scala │ ├── BaseEntity.scala │ ├── Bird.scala │ ├── Cat.scala │ ├── Currency.scala │ ├── Dog.scala │ ├── Email.scala │ ├── Error.scala │ ├── Money.scala │ ├── OptionalInfo.scala │ ├── Owner.scala │ ├── Pet.scala │ ├── PetCreate.scala │ ├── PetId.scala │ └── PetStatus.scala ├── openapi-test-scala-server-spring-client-jdk └── testapi │ ├── OpenApiIntegrationTest.scala │ ├── api │ ├── AnimalsApi.scala │ ├── AnimalsApiClient.scala │ ├── AnimalsApiServer.scala │ ├── CreatePetOnPetCreatedCallback.scala │ ├── PetStatusChangedWebhook.scala │ ├── PetsApi.scala │ ├── PetsApiClient.scala │ ├── PetsApiServer.scala │ └── Responses.scala │ └── model │ ├── Address.scala │ ├── Animal.scala │ ├── BaseEntity.scala │ ├── Bird.scala │ ├── Cat.scala │ ├── Currency.scala │ ├── Dog.scala │ ├── Email.scala │ ├── Error.scala │ ├── Money.scala │ ├── OptionalInfo.scala │ ├── Owner.scala │ ├── Pet.scala │ ├── PetCreate.scala │ ├── PetId.scala │ └── PetStatus.scala ├── settings.gradle.kts ├── site-in ├── comparison.md ├── customization │ ├── customize-naming.md │ ├── customize-nullability.md │ ├── customize-selected-relations.md │ ├── customize-sql-files.md │ ├── customize-types.md │ ├── overview.md │ └── selector.md ├── limitations.md ├── openapi │ ├── client-generation.md │ ├── overview.md │ ├── response-types.md │ ├── server-frameworks.md │ ├── type-safe-ids.md │ └── usage.md ├── other-features │ ├── clickable-links.md │ ├── constraints.md │ ├── dsl-in-depth.md │ ├── faster-compilation.md │ ├── flexible.md │ ├── generate-into-multiple-projects.md │ ├── json.md │ ├── scala-js-ready.md │ ├── streaming-inserts.md │ ├── testing-with-random-values.md │ └── testing-with-stubs.md ├── patterns │ ├── dynamic-queries.md │ └── multi-repo.md ├── readme.md ├── setup.md ├── type-safety │ ├── arrays.md │ ├── date-time.md │ ├── defaulted-types.md │ ├── domains.md │ ├── id-types.md │ ├── open-string-enums.md │ ├── string-enums.md │ ├── type-flow.md │ ├── typo-types.md │ └── user-selected-types.md └── what-is │ ├── dsl.md │ ├── relations.md │ └── sql-is-king.md ├── site ├── .gitignore ├── .prettierignore ├── .prettierrc.json ├── README.md ├── babel.config.js ├── blog │ ├── 2023-11-24-hello-zio.md │ ├── 2023-12-17-the-cost-of-implicits.mdx │ └── emailaddress │ │ ├── EmailaddressFields.scala │ │ ├── EmailaddressId.scala │ │ ├── EmailaddressRepo.scala │ │ ├── EmailaddressRepoImpl.scala │ │ ├── EmailaddressRepoMock.scala │ │ ├── EmailaddressRow.scala │ │ ├── EmailaddressRowUnsaved.scala │ │ └── EmailaddressStructure.scala ├── docs-api │ ├── client-generation.md │ ├── index.md │ ├── response-types.md │ ├── server-frameworks.md │ ├── type-safe-ids.md │ └── usage.md ├── docs-db │ ├── comparison.md │ ├── customization │ │ ├── customize-naming.md │ │ ├── customize-nullability.md │ │ ├── customize-selected-relations.md │ │ ├── customize-sql-files.md │ │ ├── customize-types.md │ │ ├── overview.md │ │ └── selector.md │ ├── limitations.md │ ├── other-features │ │ ├── clickable-links.md │ │ ├── constraints.md │ │ ├── dsl-in-depth.md │ │ ├── faster-compilation.md │ │ ├── flexible.md │ │ ├── generate-into-multiple-projects.md │ │ ├── json.md │ │ ├── scala-js-ready.md │ │ ├── streaming-inserts.md │ │ ├── testing-with-random-values.md │ │ └── testing-with-stubs.md │ ├── patterns │ │ ├── dynamic-queries.md │ │ └── multi-repo.md │ ├── readme.md │ ├── setup.md │ ├── type-safety │ │ ├── arrays.md │ │ ├── date-time.md │ │ ├── defaulted-types.md │ │ ├── domains.md │ │ ├── id-types.md │ │ ├── open-string-enums.md │ │ ├── string-enums.md │ │ ├── type-flow.md │ │ ├── typo-types.md │ │ └── user-selected-types.md │ └── what-is │ │ ├── dsl.md │ │ ├── relations.md │ │ └── sql-is-king.md ├── docusaurus.config.js ├── package-lock.json ├── package.json ├── scripts │ ├── generate-favicon.js │ └── generate-logo.js ├── sidebars-api.js ├── sidebars-db.js ├── src │ ├── components │ │ ├── DSLShowcase │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── FeatureShowcase │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── HomepageFeatures │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── KeyTakeaway.jsx │ │ ├── MagicalWizard │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── ScalaCompileTimesChart.jsx │ │ ├── TestingShowcase │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── TypeSafetyDemo │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ ├── TypoLogo │ │ │ ├── index.js │ │ │ └── styles.module.css │ │ └── WhyTypo │ │ │ ├── index.js │ │ │ └── styles.module.css │ ├── css │ │ └── custom.css │ ├── pages │ │ ├── index.js │ │ ├── index.module.css │ │ └── markdown-page.md │ └── theme │ │ └── Logo │ │ └── index.js ├── static │ ├── .nojekyll │ ├── CNAME │ └── img │ │ ├── docusaurus.png │ │ ├── favicon.ico │ │ ├── favicon.svg │ │ ├── logo.svg │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg └── tracker.js ├── snapshot-tests ├── anorm-sql │ ├── CompositeIdsTest │ │ └── query2.sql │ ├── DSLTest │ │ └── doubled.sql │ ├── ProductTest │ │ ├── delete.sql │ │ ├── leftJoined.sql │ │ ├── q.sql │ │ ├── q2.sql │ │ ├── query.sql │ │ ├── query0.sql │ │ └── updateReturning.sql │ └── SeekTest │ │ ├── complex.sql │ │ ├── uniform-ascending.sql │ │ └── uniform-descending.sql ├── dooble-sql │ ├── CompositeIdsTest │ │ └── query2.sql │ ├── DSLTest │ │ └── doubled.sql │ ├── ProductTest │ │ ├── delete.sql │ │ ├── leftJoined.sql │ │ ├── q.sql │ │ ├── q2.sql │ │ ├── query.sql │ │ ├── query0.sql │ │ └── updateReturning.sql │ └── SeekTest │ │ ├── complex.sql │ │ ├── uniform-ascending.sql │ │ └── uniform-descending.sql ├── java-sql │ ├── CompositeIdsTest │ │ └── query2.sql │ ├── DSLTest │ │ └── doubled.sql │ ├── ProductTest │ │ ├── delete.sql │ │ ├── leftJoined.sql │ │ ├── q.sql │ │ ├── q2.sql │ │ ├── query.sql │ │ ├── query0.sql │ │ └── updateReturning.sql │ └── SeekTest │ │ ├── complex.sql │ │ ├── uniform-ascending.sql │ │ └── uniform-descending.sql ├── kotlin-sql │ ├── CompositeIdsTest │ │ └── query2.sql │ ├── DSLTest │ │ └── doubled.sql │ ├── ProductTest │ │ ├── delete.sql │ │ ├── leftJoined.sql │ │ ├── q.sql │ │ ├── q2.sql │ │ ├── query.sql │ │ ├── query0.sql │ │ └── updateReturning.sql │ └── SeekTest │ │ ├── complex.sql │ │ ├── uniform-ascending.sql │ │ └── uniform-descending.sql └── zio-jdbc-sql │ ├── CompositeIdsTest │ └── query2.sql │ ├── DSLTest │ └── doubled.sql │ ├── ProductTest │ ├── delete.sql │ ├── leftJoined.sql │ ├── q.sql │ ├── q2.sql │ ├── query.sql │ ├── query0.sql │ └── updateReturning.sql │ └── SeekTest │ ├── complex.sql │ ├── uniform-ascending.sql │ └── uniform-descending.sql ├── sql └── custom │ ├── comments.sql │ ├── constraints.sql │ ├── domains.sql │ ├── enums.sql │ ├── table_comments.sql │ └── view_find_all.sql ├── tests └── src │ └── scala │ └── typo │ ├── DbTest.scala │ ├── NamingTest.scala │ ├── internal │ ├── FkAnalysisTest.scala │ ├── codegen │ │ └── CodeFormattingTest.scala │ └── sqlfiles │ │ ├── DecomposedSqlTest.scala │ │ └── NullabilityFromExplainTest.scala │ └── openapi │ └── parser │ └── TypeResolverTest.scala ├── typo-dsl-anorm └── src │ └── scala │ └── typo │ └── dsl │ ├── DeleteBuilder.scala │ ├── Fragment.scala │ ├── SelectBuilder.scala │ ├── SelectBuilderMock.scala │ ├── SelectBuilderSql.scala │ ├── SelectParams.scala │ ├── SortOrder.scala │ ├── SqlExpr.scala │ └── UpdateBuilder.scala ├── typo-dsl-doobie └── src │ └── scala │ └── typo │ └── dsl │ ├── DeleteBuilder.scala │ ├── SelectBuilder.scala │ ├── SelectBuilderMock.scala │ ├── SelectBuilderSql.scala │ ├── SelectParams.scala │ ├── SortOrder.scala │ ├── SqlExpr.scala │ ├── UpdateBuilder.scala │ ├── internal │ └── mkFragment.scala │ └── pagination │ └── SortOrderRepr.scala ├── typo-dsl-java ├── build.gradle.kts └── src │ └── java │ └── typo │ └── dsl │ ├── Bijection.java │ ├── DeleteBuilder.java │ ├── DeleteBuilderSql.java │ ├── DeleteParams.java │ ├── ForeignKey.java │ ├── Like.java │ ├── OrderByOrSeek.java │ ├── Path.java │ ├── RenderCtx.java │ ├── SelectBuilder.java │ ├── SelectBuilderMock.java │ ├── SelectBuilderSql.java │ ├── SelectParams.java │ ├── SortOrder.java │ ├── SqlExpr.java │ ├── SqlExprVisitor.java │ ├── SqlFunction1.java │ ├── SqlFunction2.java │ ├── SqlFunction3.java │ ├── SqlOperator.java │ ├── Structure.java │ ├── TriFunction.java │ ├── UpdateBuilder.java │ ├── UpdateBuilderSql.java │ ├── UpdateParams.java │ ├── example │ └── PersonExample.java │ └── internal │ ├── DummyComparator.java │ └── RowComparator.java ├── typo-dsl-shared └── typo │ └── dsl │ ├── Bijection.scala │ ├── DeleteParams.scala │ ├── ForeignKey.scala │ ├── Like.scala │ ├── OrderByOrSeek.scala │ ├── Path.scala │ ├── RenderCtx.scala │ ├── SqlFunction1.scala │ ├── SqlFunction2.scala │ ├── SqlFunction3.scala │ ├── SqlOperator.scala │ ├── Structure.scala │ ├── UpdateParams.scala │ ├── internal │ ├── DummyOrdering.scala │ └── mocks.scala │ └── package.scala ├── typo-dsl-zio-jdbc └── src │ └── scala │ └── typo │ └── dsl │ ├── DeleteBuilder.scala │ ├── PGType.scala │ ├── SelectBuilder.scala │ ├── SelectBuilderMock.scala │ ├── SelectBuilderSql.scala │ ├── SelectParams.scala │ ├── SortOrder.scala │ ├── SqlExpr.scala │ ├── UpdateBuilder.scala │ └── pagination │ └── SortOrderRepr.scala ├── typo-runtime-anorm └── src │ └── scala │ └── typo │ └── anormruntime │ ├── PgType.scala │ ├── ResultSetParser.scala │ ├── RowParser.scala │ └── package.scala ├── typo-runtime-java ├── build.gradle.kts └── src │ └── java │ └── typo │ ├── data │ ├── AclItem.java │ ├── AnyArray.java │ ├── Arr.java │ ├── Inet.java │ ├── Int2Vector.java │ ├── Json.java │ ├── Jsonb.java │ ├── Money.java │ ├── OidVector.java │ ├── PgNodeTree.java │ ├── Range.java │ ├── RangeBound.java │ ├── RangeFinite.java │ ├── Record.java │ ├── Regclass.java │ ├── Regconfig.java │ ├── Regdictionary.java │ ├── Regnamespace.java │ ├── Regoper.java │ ├── Regoperator.java │ ├── Regproc.java │ ├── Regprocedure.java │ ├── Regrole.java │ ├── Regtype.java │ ├── Unknown.java │ ├── Vector.java │ ├── Xid.java │ └── Xml.java │ └── runtime │ ├── And.java │ ├── ArrParser.java │ ├── ByteArrays.java │ ├── Either.java │ ├── Foo.java │ ├── Fragment.java │ ├── Operation.java │ ├── PgRead.java │ ├── PgText.java │ ├── PgType.java │ ├── PgTypename.java │ ├── PgTypes.java │ ├── PgWrite.java │ ├── ResultSetParser.java │ ├── RowParser.java │ ├── SqlBiConsumer.java │ ├── SqlConsumer.java │ ├── SqlFunction.java │ ├── Transactor.java │ ├── internal │ ├── RandomHelper.java │ ├── TypoPGObjectHelper.java │ ├── arrayMap.java │ ├── stringInterpolator.java │ └── stripMargin.java │ ├── streamingInsert.java │ └── tester.java ├── typo-runtime-scala └── src │ └── scala │ └── typo │ └── runtime │ └── FragmentInterpolator.scala ├── typo-scripts-doc └── src │ └── scala │ └── scripts │ └── GenDocumentation.scala ├── typo-scripts └── src │ └── scala │ └── scripts │ ├── CompileBenchmark.scala │ ├── GenHardcodedFiles.scala │ ├── GenerateOpenApiTest.scala │ ├── GenerateStripeTest.scala │ ├── GeneratedAdventureWorks.scala │ ├── GeneratedFrontpage.scala │ ├── GeneratedRowParsers.scala │ ├── GeneratedSources.scala │ ├── Publish.scala │ ├── PublishLocal.scala │ └── projectsToPublish.scala ├── typo-tester-anorm ├── generated-and-checked-in-2.13 │ ├── adventureworks │ │ ├── TestDomainInsert.scala │ │ ├── TestInsert.scala │ │ ├── Text.scala │ │ ├── customtypes │ │ │ ├── Defaulted.scala │ │ │ ├── TypoBox.scala │ │ │ ├── TypoBytea.scala │ │ │ ├── TypoCircle.scala │ │ │ ├── TypoHStore.scala │ │ │ ├── TypoInet.scala │ │ │ ├── TypoInstant.scala │ │ │ ├── TypoInt2Vector.scala │ │ │ ├── TypoInterval.scala │ │ │ ├── TypoJson.scala │ │ │ ├── TypoJsonb.scala │ │ │ ├── TypoLine.scala │ │ │ ├── TypoLineSegment.scala │ │ │ ├── TypoLocalDate.scala │ │ │ ├── TypoLocalDateTime.scala │ │ │ ├── TypoLocalTime.scala │ │ │ ├── TypoMoney.scala │ │ │ ├── TypoOffsetTime.scala │ │ │ ├── TypoPath.scala │ │ │ ├── TypoPoint.scala │ │ │ ├── TypoPolygon.scala │ │ │ ├── TypoRecord.scala │ │ │ ├── TypoShort.scala │ │ │ ├── TypoUUID.scala │ │ │ ├── TypoUnknownCitext.scala │ │ │ ├── TypoVector.scala │ │ │ └── TypoXml.scala │ │ ├── frontpage │ │ │ └── Email.scala │ │ ├── hr │ │ │ ├── d │ │ │ │ ├── DViewFields.scala │ │ │ │ ├── DViewRepo.scala │ │ │ │ ├── DViewRepoImpl.scala │ │ │ │ └── DViewRow.scala │ │ │ ├── e │ │ │ │ ├── EViewFields.scala │ │ │ │ ├── EViewRepo.scala │ │ │ │ ├── EViewRepoImpl.scala │ │ │ │ └── EViewRow.scala │ │ │ ├── edh │ │ │ │ ├── EdhViewFields.scala │ │ │ │ ├── EdhViewRepo.scala │ │ │ │ ├── EdhViewRepoImpl.scala │ │ │ │ └── EdhViewRow.scala │ │ │ ├── eph │ │ │ │ ├── EphViewFields.scala │ │ │ │ ├── EphViewRepo.scala │ │ │ │ ├── EphViewRepoImpl.scala │ │ │ │ └── EphViewRow.scala │ │ │ ├── jc │ │ │ │ ├── JcViewFields.scala │ │ │ │ ├── JcViewRepo.scala │ │ │ │ ├── JcViewRepoImpl.scala │ │ │ │ └── JcViewRow.scala │ │ │ └── s │ │ │ │ ├── SViewFields.scala │ │ │ │ ├── SViewRepo.scala │ │ │ │ ├── SViewRepoImpl.scala │ │ │ │ └── SViewRow.scala │ │ ├── humanresources │ │ │ ├── department │ │ │ │ ├── DepartmentFields.scala │ │ │ │ ├── DepartmentId.scala │ │ │ │ ├── DepartmentRepo.scala │ │ │ │ ├── DepartmentRepoImpl.scala │ │ │ │ ├── DepartmentRepoMock.scala │ │ │ │ ├── DepartmentRow.scala │ │ │ │ └── DepartmentRowUnsaved.scala │ │ │ ├── employee │ │ │ │ ├── EmployeeFields.scala │ │ │ │ ├── EmployeeRepo.scala │ │ │ │ ├── EmployeeRepoImpl.scala │ │ │ │ ├── EmployeeRepoMock.scala │ │ │ │ ├── EmployeeRow.scala │ │ │ │ └── EmployeeRowUnsaved.scala │ │ │ ├── employeedepartmenthistory │ │ │ │ ├── EmployeedepartmenthistoryFields.scala │ │ │ │ ├── EmployeedepartmenthistoryId.scala │ │ │ │ ├── EmployeedepartmenthistoryRepo.scala │ │ │ │ ├── EmployeedepartmenthistoryRepoImpl.scala │ │ │ │ ├── EmployeedepartmenthistoryRepoMock.scala │ │ │ │ ├── EmployeedepartmenthistoryRow.scala │ │ │ │ └── EmployeedepartmenthistoryRowUnsaved.scala │ │ │ ├── employeepayhistory │ │ │ │ ├── EmployeepayhistoryFields.scala │ │ │ │ ├── EmployeepayhistoryId.scala │ │ │ │ ├── EmployeepayhistoryRepo.scala │ │ │ │ ├── EmployeepayhistoryRepoImpl.scala │ │ │ │ ├── EmployeepayhistoryRepoMock.scala │ │ │ │ ├── EmployeepayhistoryRow.scala │ │ │ │ └── EmployeepayhistoryRowUnsaved.scala │ │ │ ├── jobcandidate │ │ │ │ ├── JobcandidateFields.scala │ │ │ │ ├── JobcandidateId.scala │ │ │ │ ├── JobcandidateRepo.scala │ │ │ │ ├── JobcandidateRepoImpl.scala │ │ │ │ ├── JobcandidateRepoMock.scala │ │ │ │ ├── JobcandidateRow.scala │ │ │ │ └── JobcandidateRowUnsaved.scala │ │ │ ├── shift │ │ │ │ ├── ShiftFields.scala │ │ │ │ ├── ShiftId.scala │ │ │ │ ├── ShiftRepo.scala │ │ │ │ ├── ShiftRepoImpl.scala │ │ │ │ ├── ShiftRepoMock.scala │ │ │ │ ├── ShiftRow.scala │ │ │ │ └── ShiftRowUnsaved.scala │ │ │ ├── vemployee │ │ │ │ ├── VemployeeViewFields.scala │ │ │ │ ├── VemployeeViewRepo.scala │ │ │ │ ├── VemployeeViewRepoImpl.scala │ │ │ │ └── VemployeeViewRow.scala │ │ │ ├── vemployeedepartment │ │ │ │ ├── VemployeedepartmentViewFields.scala │ │ │ │ ├── VemployeedepartmentViewRepo.scala │ │ │ │ ├── VemployeedepartmentViewRepoImpl.scala │ │ │ │ └── VemployeedepartmentViewRow.scala │ │ │ ├── vemployeedepartmenthistory │ │ │ │ ├── VemployeedepartmenthistoryViewFields.scala │ │ │ │ ├── VemployeedepartmenthistoryViewRepo.scala │ │ │ │ ├── VemployeedepartmenthistoryViewRepoImpl.scala │ │ │ │ └── VemployeedepartmenthistoryViewRow.scala │ │ │ ├── vjobcandidate │ │ │ │ ├── VjobcandidateViewFields.scala │ │ │ │ ├── VjobcandidateViewRepo.scala │ │ │ │ ├── VjobcandidateViewRepoImpl.scala │ │ │ │ └── VjobcandidateViewRow.scala │ │ │ ├── vjobcandidateeducation │ │ │ │ ├── VjobcandidateeducationViewFields.scala │ │ │ │ ├── VjobcandidateeducationViewRepo.scala │ │ │ │ ├── VjobcandidateeducationViewRepoImpl.scala │ │ │ │ └── VjobcandidateeducationViewRow.scala │ │ │ └── vjobcandidateemployment │ │ │ │ ├── VjobcandidateemploymentViewFields.scala │ │ │ │ ├── VjobcandidateemploymentViewRepo.scala │ │ │ │ ├── VjobcandidateemploymentViewRepoImpl.scala │ │ │ │ └── VjobcandidateemploymentViewRow.scala │ │ ├── information_schema │ │ │ ├── CardinalNumber.scala │ │ │ ├── CharacterData.scala │ │ │ ├── SqlIdentifier.scala │ │ │ ├── TimeStamp.scala │ │ │ └── YesOrNo.scala │ │ ├── package.scala │ │ ├── pe │ │ │ ├── a │ │ │ │ ├── AViewFields.scala │ │ │ │ ├── AViewRepo.scala │ │ │ │ ├── AViewRepoImpl.scala │ │ │ │ └── AViewRow.scala │ │ │ ├── at │ │ │ │ ├── AtViewFields.scala │ │ │ │ ├── AtViewRepo.scala │ │ │ │ ├── AtViewRepoImpl.scala │ │ │ │ └── AtViewRow.scala │ │ │ ├── be │ │ │ │ ├── BeViewFields.scala │ │ │ │ ├── BeViewRepo.scala │ │ │ │ ├── BeViewRepoImpl.scala │ │ │ │ └── BeViewRow.scala │ │ │ ├── bea │ │ │ │ ├── BeaViewFields.scala │ │ │ │ ├── BeaViewRepo.scala │ │ │ │ ├── BeaViewRepoImpl.scala │ │ │ │ └── BeaViewRow.scala │ │ │ ├── bec │ │ │ │ ├── BecViewFields.scala │ │ │ │ ├── BecViewRepo.scala │ │ │ │ ├── BecViewRepoImpl.scala │ │ │ │ └── BecViewRow.scala │ │ │ ├── cr │ │ │ │ ├── CrViewFields.scala │ │ │ │ ├── CrViewRepo.scala │ │ │ │ ├── CrViewRepoImpl.scala │ │ │ │ └── CrViewRow.scala │ │ │ ├── ct │ │ │ │ ├── CtViewFields.scala │ │ │ │ ├── CtViewRepo.scala │ │ │ │ ├── CtViewRepoImpl.scala │ │ │ │ └── CtViewRow.scala │ │ │ ├── e │ │ │ │ ├── EViewFields.scala │ │ │ │ ├── EViewRepo.scala │ │ │ │ ├── EViewRepoImpl.scala │ │ │ │ └── EViewRow.scala │ │ │ ├── p │ │ │ │ ├── PViewFields.scala │ │ │ │ ├── PViewRepo.scala │ │ │ │ ├── PViewRepoImpl.scala │ │ │ │ └── PViewRow.scala │ │ │ ├── pa │ │ │ │ ├── PaViewFields.scala │ │ │ │ ├── PaViewRepo.scala │ │ │ │ ├── PaViewRepoImpl.scala │ │ │ │ └── PaViewRow.scala │ │ │ ├── pnt │ │ │ │ ├── PntViewFields.scala │ │ │ │ ├── PntViewRepo.scala │ │ │ │ ├── PntViewRepoImpl.scala │ │ │ │ └── PntViewRow.scala │ │ │ ├── pp │ │ │ │ ├── PpViewFields.scala │ │ │ │ ├── PpViewRepo.scala │ │ │ │ ├── PpViewRepoImpl.scala │ │ │ │ └── PpViewRow.scala │ │ │ └── sp │ │ │ │ ├── SpViewFields.scala │ │ │ │ ├── SpViewRepo.scala │ │ │ │ ├── SpViewRepoImpl.scala │ │ │ │ └── SpViewRow.scala │ │ ├── person │ │ │ ├── address │ │ │ │ ├── AddressFields.scala │ │ │ │ ├── AddressId.scala │ │ │ │ ├── AddressRepo.scala │ │ │ │ ├── AddressRepoImpl.scala │ │ │ │ ├── AddressRepoMock.scala │ │ │ │ ├── AddressRow.scala │ │ │ │ └── AddressRowUnsaved.scala │ │ │ ├── addresstype │ │ │ │ ├── AddresstypeFields.scala │ │ │ │ ├── AddresstypeId.scala │ │ │ │ ├── AddresstypeRepo.scala │ │ │ │ ├── AddresstypeRepoImpl.scala │ │ │ │ ├── AddresstypeRepoMock.scala │ │ │ │ ├── AddresstypeRow.scala │ │ │ │ └── AddresstypeRowUnsaved.scala │ │ │ ├── businessentity │ │ │ │ ├── BusinessentityFields.scala │ │ │ │ ├── BusinessentityId.scala │ │ │ │ ├── BusinessentityRepo.scala │ │ │ │ ├── BusinessentityRepoImpl.scala │ │ │ │ ├── BusinessentityRepoMock.scala │ │ │ │ ├── BusinessentityRow.scala │ │ │ │ └── BusinessentityRowUnsaved.scala │ │ │ ├── businessentityaddress │ │ │ │ ├── BusinessentityaddressFields.scala │ │ │ │ ├── BusinessentityaddressId.scala │ │ │ │ ├── BusinessentityaddressRepo.scala │ │ │ │ ├── BusinessentityaddressRepoImpl.scala │ │ │ │ ├── BusinessentityaddressRepoMock.scala │ │ │ │ ├── BusinessentityaddressRow.scala │ │ │ │ └── BusinessentityaddressRowUnsaved.scala │ │ │ ├── businessentitycontact │ │ │ │ ├── BusinessentitycontactFields.scala │ │ │ │ ├── BusinessentitycontactId.scala │ │ │ │ ├── BusinessentitycontactRepo.scala │ │ │ │ ├── BusinessentitycontactRepoImpl.scala │ │ │ │ ├── BusinessentitycontactRepoMock.scala │ │ │ │ ├── BusinessentitycontactRow.scala │ │ │ │ └── BusinessentitycontactRowUnsaved.scala │ │ │ ├── contacttype │ │ │ │ ├── ContacttypeFields.scala │ │ │ │ ├── ContacttypeId.scala │ │ │ │ ├── ContacttypeRepo.scala │ │ │ │ ├── ContacttypeRepoImpl.scala │ │ │ │ ├── ContacttypeRepoMock.scala │ │ │ │ ├── ContacttypeRow.scala │ │ │ │ └── ContacttypeRowUnsaved.scala │ │ │ ├── countryregion │ │ │ │ ├── CountryregionFields.scala │ │ │ │ ├── CountryregionId.scala │ │ │ │ ├── CountryregionRepo.scala │ │ │ │ ├── CountryregionRepoImpl.scala │ │ │ │ ├── CountryregionRepoMock.scala │ │ │ │ ├── CountryregionRow.scala │ │ │ │ └── CountryregionRowUnsaved.scala │ │ │ ├── emailaddress │ │ │ │ ├── EmailaddressFields.scala │ │ │ │ ├── EmailaddressId.scala │ │ │ │ ├── EmailaddressRepo.scala │ │ │ │ ├── EmailaddressRepoImpl.scala │ │ │ │ ├── EmailaddressRepoMock.scala │ │ │ │ ├── EmailaddressRow.scala │ │ │ │ └── EmailaddressRowUnsaved.scala │ │ │ ├── password │ │ │ │ ├── PasswordFields.scala │ │ │ │ ├── PasswordRepo.scala │ │ │ │ ├── PasswordRepoImpl.scala │ │ │ │ ├── PasswordRepoMock.scala │ │ │ │ ├── PasswordRow.scala │ │ │ │ └── PasswordRowUnsaved.scala │ │ │ ├── person │ │ │ │ ├── PersonFields.scala │ │ │ │ ├── PersonRepo.scala │ │ │ │ ├── PersonRepoImpl.scala │ │ │ │ ├── PersonRepoMock.scala │ │ │ │ ├── PersonRow.scala │ │ │ │ └── PersonRowUnsaved.scala │ │ │ ├── personphone │ │ │ │ ├── PersonphoneFields.scala │ │ │ │ ├── PersonphoneId.scala │ │ │ │ ├── PersonphoneRepo.scala │ │ │ │ ├── PersonphoneRepoImpl.scala │ │ │ │ ├── PersonphoneRepoMock.scala │ │ │ │ ├── PersonphoneRow.scala │ │ │ │ └── PersonphoneRowUnsaved.scala │ │ │ ├── phonenumbertype │ │ │ │ ├── PhonenumbertypeFields.scala │ │ │ │ ├── PhonenumbertypeId.scala │ │ │ │ ├── PhonenumbertypeRepo.scala │ │ │ │ ├── PhonenumbertypeRepoImpl.scala │ │ │ │ ├── PhonenumbertypeRepoMock.scala │ │ │ │ ├── PhonenumbertypeRow.scala │ │ │ │ └── PhonenumbertypeRowUnsaved.scala │ │ │ ├── stateprovince │ │ │ │ ├── StateprovinceFields.scala │ │ │ │ ├── StateprovinceId.scala │ │ │ │ ├── StateprovinceRepo.scala │ │ │ │ ├── StateprovinceRepoImpl.scala │ │ │ │ ├── StateprovinceRepoMock.scala │ │ │ │ ├── StateprovinceRow.scala │ │ │ │ └── StateprovinceRowUnsaved.scala │ │ │ ├── vadditionalcontactinfo │ │ │ │ ├── VadditionalcontactinfoViewFields.scala │ │ │ │ ├── VadditionalcontactinfoViewRepo.scala │ │ │ │ ├── VadditionalcontactinfoViewRepoImpl.scala │ │ │ │ └── VadditionalcontactinfoViewRow.scala │ │ │ └── vstateprovincecountryregion │ │ │ │ ├── VstateprovincecountryregionMVFields.scala │ │ │ │ ├── VstateprovincecountryregionMVRepo.scala │ │ │ │ ├── VstateprovincecountryregionMVRepoImpl.scala │ │ │ │ └── VstateprovincecountryregionMVRow.scala │ │ ├── person_detail │ │ │ ├── PersonDetailSqlRepo.scala │ │ │ ├── PersonDetailSqlRepoImpl.scala │ │ │ └── PersonDetailSqlRow.scala │ │ ├── person_dynamic │ │ │ ├── PersonDynamicSqlRepo.scala │ │ │ ├── PersonDynamicSqlRepoImpl.scala │ │ │ └── PersonDynamicSqlRow.scala │ │ ├── person_row_join │ │ │ ├── PersonRowJoinSqlRepo.scala │ │ │ ├── PersonRowJoinSqlRepoImpl.scala │ │ │ └── PersonRowJoinSqlRow.scala │ │ ├── pr │ │ │ ├── bom │ │ │ │ ├── BomViewFields.scala │ │ │ │ ├── BomViewRepo.scala │ │ │ │ ├── BomViewRepoImpl.scala │ │ │ │ └── BomViewRow.scala │ │ │ ├── c │ │ │ │ ├── CViewFields.scala │ │ │ │ ├── CViewRepo.scala │ │ │ │ ├── CViewRepoImpl.scala │ │ │ │ └── CViewRow.scala │ │ │ ├── d │ │ │ │ ├── DViewFields.scala │ │ │ │ ├── DViewRepo.scala │ │ │ │ ├── DViewRepoImpl.scala │ │ │ │ └── DViewRow.scala │ │ │ ├── i │ │ │ │ ├── IViewFields.scala │ │ │ │ ├── IViewRepo.scala │ │ │ │ ├── IViewRepoImpl.scala │ │ │ │ └── IViewRow.scala │ │ │ ├── l │ │ │ │ ├── LViewFields.scala │ │ │ │ ├── LViewRepo.scala │ │ │ │ ├── LViewRepoImpl.scala │ │ │ │ └── LViewRow.scala │ │ │ ├── p │ │ │ │ ├── PViewFields.scala │ │ │ │ ├── PViewRepo.scala │ │ │ │ ├── PViewRepoImpl.scala │ │ │ │ └── PViewRow.scala │ │ │ ├── pc │ │ │ │ ├── PcViewFields.scala │ │ │ │ ├── PcViewRepo.scala │ │ │ │ ├── PcViewRepoImpl.scala │ │ │ │ └── PcViewRow.scala │ │ │ ├── pch │ │ │ │ ├── PchViewFields.scala │ │ │ │ ├── PchViewRepo.scala │ │ │ │ ├── PchViewRepoImpl.scala │ │ │ │ └── PchViewRow.scala │ │ │ ├── pd │ │ │ │ ├── PdViewFields.scala │ │ │ │ ├── PdViewRepo.scala │ │ │ │ ├── PdViewRepoImpl.scala │ │ │ │ └── PdViewRow.scala │ │ │ ├── pdoc │ │ │ │ ├── PdocViewFields.scala │ │ │ │ ├── PdocViewRepo.scala │ │ │ │ ├── PdocViewRepoImpl.scala │ │ │ │ └── PdocViewRow.scala │ │ │ ├── pi │ │ │ │ ├── PiViewFields.scala │ │ │ │ ├── PiViewRepo.scala │ │ │ │ ├── PiViewRepoImpl.scala │ │ │ │ └── PiViewRow.scala │ │ │ ├── plph │ │ │ │ ├── PlphViewFields.scala │ │ │ │ ├── PlphViewRepo.scala │ │ │ │ ├── PlphViewRepoImpl.scala │ │ │ │ └── PlphViewRow.scala │ │ │ ├── pm │ │ │ │ ├── PmViewFields.scala │ │ │ │ ├── PmViewRepo.scala │ │ │ │ ├── PmViewRepoImpl.scala │ │ │ │ └── PmViewRow.scala │ │ │ ├── pmi │ │ │ │ ├── PmiViewFields.scala │ │ │ │ ├── PmiViewRepo.scala │ │ │ │ ├── PmiViewRepoImpl.scala │ │ │ │ └── PmiViewRow.scala │ │ │ ├── pmpdc │ │ │ │ ├── PmpdcViewFields.scala │ │ │ │ ├── PmpdcViewRepo.scala │ │ │ │ ├── PmpdcViewRepoImpl.scala │ │ │ │ └── PmpdcViewRow.scala │ │ │ ├── pp │ │ │ │ ├── PpViewFields.scala │ │ │ │ ├── PpViewRepo.scala │ │ │ │ ├── PpViewRepoImpl.scala │ │ │ │ └── PpViewRow.scala │ │ │ ├── ppp │ │ │ │ ├── PppViewFields.scala │ │ │ │ ├── PppViewRepo.scala │ │ │ │ ├── PppViewRepoImpl.scala │ │ │ │ └── PppViewRow.scala │ │ │ ├── pr │ │ │ │ ├── PrViewFields.scala │ │ │ │ ├── PrViewRepo.scala │ │ │ │ ├── PrViewRepoImpl.scala │ │ │ │ └── PrViewRow.scala │ │ │ ├── psc │ │ │ │ ├── PscViewFields.scala │ │ │ │ ├── PscViewRepo.scala │ │ │ │ ├── PscViewRepoImpl.scala │ │ │ │ └── PscViewRow.scala │ │ │ ├── sr │ │ │ │ ├── SrViewFields.scala │ │ │ │ ├── SrViewRepo.scala │ │ │ │ ├── SrViewRepoImpl.scala │ │ │ │ └── SrViewRow.scala │ │ │ ├── th │ │ │ │ ├── ThViewFields.scala │ │ │ │ ├── ThViewRepo.scala │ │ │ │ ├── ThViewRepoImpl.scala │ │ │ │ └── ThViewRow.scala │ │ │ ├── tha │ │ │ │ ├── ThaViewFields.scala │ │ │ │ ├── ThaViewRepo.scala │ │ │ │ ├── ThaViewRepoImpl.scala │ │ │ │ └── ThaViewRow.scala │ │ │ ├── um │ │ │ │ ├── UmViewFields.scala │ │ │ │ ├── UmViewRepo.scala │ │ │ │ ├── UmViewRepoImpl.scala │ │ │ │ └── UmViewRow.scala │ │ │ ├── w │ │ │ │ ├── WViewFields.scala │ │ │ │ ├── WViewRepo.scala │ │ │ │ ├── WViewRepoImpl.scala │ │ │ │ └── WViewRow.scala │ │ │ └── wr │ │ │ │ ├── WrViewFields.scala │ │ │ │ ├── WrViewRepo.scala │ │ │ │ ├── WrViewRepoImpl.scala │ │ │ │ └── WrViewRow.scala │ │ ├── production │ │ │ ├── billofmaterials │ │ │ │ ├── BillofmaterialsFields.scala │ │ │ │ ├── BillofmaterialsRepo.scala │ │ │ │ ├── BillofmaterialsRepoImpl.scala │ │ │ │ ├── BillofmaterialsRepoMock.scala │ │ │ │ ├── BillofmaterialsRow.scala │ │ │ │ └── BillofmaterialsRowUnsaved.scala │ │ │ ├── culture │ │ │ │ ├── CultureFields.scala │ │ │ │ ├── CultureId.scala │ │ │ │ ├── CultureRepo.scala │ │ │ │ ├── CultureRepoImpl.scala │ │ │ │ ├── CultureRepoMock.scala │ │ │ │ ├── CultureRow.scala │ │ │ │ └── CultureRowUnsaved.scala │ │ │ ├── document │ │ │ │ ├── DocumentFields.scala │ │ │ │ ├── DocumentId.scala │ │ │ │ ├── DocumentRepo.scala │ │ │ │ ├── DocumentRepoImpl.scala │ │ │ │ ├── DocumentRepoMock.scala │ │ │ │ ├── DocumentRow.scala │ │ │ │ └── DocumentRowUnsaved.scala │ │ │ ├── illustration │ │ │ │ ├── IllustrationFields.scala │ │ │ │ ├── IllustrationId.scala │ │ │ │ ├── IllustrationRepo.scala │ │ │ │ ├── IllustrationRepoImpl.scala │ │ │ │ ├── IllustrationRepoMock.scala │ │ │ │ ├── IllustrationRow.scala │ │ │ │ └── IllustrationRowUnsaved.scala │ │ │ ├── location │ │ │ │ ├── LocationFields.scala │ │ │ │ ├── LocationId.scala │ │ │ │ ├── LocationRepo.scala │ │ │ │ ├── LocationRepoImpl.scala │ │ │ │ ├── LocationRepoMock.scala │ │ │ │ ├── LocationRow.scala │ │ │ │ └── LocationRowUnsaved.scala │ │ │ ├── product │ │ │ │ ├── ProductFields.scala │ │ │ │ ├── ProductId.scala │ │ │ │ ├── ProductRepo.scala │ │ │ │ ├── ProductRepoImpl.scala │ │ │ │ ├── ProductRepoMock.scala │ │ │ │ ├── ProductRow.scala │ │ │ │ └── ProductRowUnsaved.scala │ │ │ ├── productcategory │ │ │ │ ├── ProductcategoryFields.scala │ │ │ │ ├── ProductcategoryId.scala │ │ │ │ ├── ProductcategoryRepo.scala │ │ │ │ ├── ProductcategoryRepoImpl.scala │ │ │ │ ├── ProductcategoryRepoMock.scala │ │ │ │ ├── ProductcategoryRow.scala │ │ │ │ └── ProductcategoryRowUnsaved.scala │ │ │ ├── productcosthistory │ │ │ │ ├── ProductcosthistoryFields.scala │ │ │ │ ├── ProductcosthistoryId.scala │ │ │ │ ├── ProductcosthistoryRepo.scala │ │ │ │ ├── ProductcosthistoryRepoImpl.scala │ │ │ │ ├── ProductcosthistoryRepoMock.scala │ │ │ │ ├── ProductcosthistoryRow.scala │ │ │ │ └── ProductcosthistoryRowUnsaved.scala │ │ │ ├── productdescription │ │ │ │ ├── ProductdescriptionFields.scala │ │ │ │ ├── ProductdescriptionId.scala │ │ │ │ ├── ProductdescriptionRepo.scala │ │ │ │ ├── ProductdescriptionRepoImpl.scala │ │ │ │ ├── ProductdescriptionRepoMock.scala │ │ │ │ ├── ProductdescriptionRow.scala │ │ │ │ └── ProductdescriptionRowUnsaved.scala │ │ │ ├── productdocument │ │ │ │ ├── ProductdocumentFields.scala │ │ │ │ ├── ProductdocumentId.scala │ │ │ │ ├── ProductdocumentRepo.scala │ │ │ │ ├── ProductdocumentRepoImpl.scala │ │ │ │ ├── ProductdocumentRepoMock.scala │ │ │ │ ├── ProductdocumentRow.scala │ │ │ │ └── ProductdocumentRowUnsaved.scala │ │ │ ├── productinventory │ │ │ │ ├── ProductinventoryFields.scala │ │ │ │ ├── ProductinventoryId.scala │ │ │ │ ├── ProductinventoryRepo.scala │ │ │ │ ├── ProductinventoryRepoImpl.scala │ │ │ │ ├── ProductinventoryRepoMock.scala │ │ │ │ ├── ProductinventoryRow.scala │ │ │ │ └── ProductinventoryRowUnsaved.scala │ │ │ ├── productlistpricehistory │ │ │ │ ├── ProductlistpricehistoryFields.scala │ │ │ │ ├── ProductlistpricehistoryId.scala │ │ │ │ ├── ProductlistpricehistoryRepo.scala │ │ │ │ ├── ProductlistpricehistoryRepoImpl.scala │ │ │ │ ├── ProductlistpricehistoryRepoMock.scala │ │ │ │ ├── ProductlistpricehistoryRow.scala │ │ │ │ └── ProductlistpricehistoryRowUnsaved.scala │ │ │ ├── productmodel │ │ │ │ ├── ProductmodelFields.scala │ │ │ │ ├── ProductmodelId.scala │ │ │ │ ├── ProductmodelRepo.scala │ │ │ │ ├── ProductmodelRepoImpl.scala │ │ │ │ ├── ProductmodelRepoMock.scala │ │ │ │ ├── ProductmodelRow.scala │ │ │ │ └── ProductmodelRowUnsaved.scala │ │ │ ├── productmodelillustration │ │ │ │ ├── ProductmodelillustrationFields.scala │ │ │ │ ├── ProductmodelillustrationId.scala │ │ │ │ ├── ProductmodelillustrationRepo.scala │ │ │ │ ├── ProductmodelillustrationRepoImpl.scala │ │ │ │ ├── ProductmodelillustrationRepoMock.scala │ │ │ │ ├── ProductmodelillustrationRow.scala │ │ │ │ └── ProductmodelillustrationRowUnsaved.scala │ │ │ ├── productmodelproductdescriptionculture │ │ │ │ ├── ProductmodelproductdescriptioncultureFields.scala │ │ │ │ ├── ProductmodelproductdescriptioncultureId.scala │ │ │ │ ├── ProductmodelproductdescriptioncultureRepo.scala │ │ │ │ ├── ProductmodelproductdescriptioncultureRepoImpl.scala │ │ │ │ ├── ProductmodelproductdescriptioncultureRepoMock.scala │ │ │ │ ├── ProductmodelproductdescriptioncultureRow.scala │ │ │ │ └── ProductmodelproductdescriptioncultureRowUnsaved.scala │ │ │ ├── productphoto │ │ │ │ ├── ProductphotoFields.scala │ │ │ │ ├── ProductphotoId.scala │ │ │ │ ├── ProductphotoRepo.scala │ │ │ │ ├── ProductphotoRepoImpl.scala │ │ │ │ ├── ProductphotoRepoMock.scala │ │ │ │ ├── ProductphotoRow.scala │ │ │ │ └── ProductphotoRowUnsaved.scala │ │ │ ├── productproductphoto │ │ │ │ ├── ProductproductphotoFields.scala │ │ │ │ ├── ProductproductphotoId.scala │ │ │ │ ├── ProductproductphotoRepo.scala │ │ │ │ ├── ProductproductphotoRepoImpl.scala │ │ │ │ ├── ProductproductphotoRepoMock.scala │ │ │ │ ├── ProductproductphotoRow.scala │ │ │ │ └── ProductproductphotoRowUnsaved.scala │ │ │ ├── productreview │ │ │ │ ├── ProductreviewFields.scala │ │ │ │ ├── ProductreviewId.scala │ │ │ │ ├── ProductreviewRepo.scala │ │ │ │ ├── ProductreviewRepoImpl.scala │ │ │ │ ├── ProductreviewRepoMock.scala │ │ │ │ ├── ProductreviewRow.scala │ │ │ │ └── ProductreviewRowUnsaved.scala │ │ │ ├── productsubcategory │ │ │ │ ├── ProductsubcategoryFields.scala │ │ │ │ ├── ProductsubcategoryId.scala │ │ │ │ ├── ProductsubcategoryRepo.scala │ │ │ │ ├── ProductsubcategoryRepoImpl.scala │ │ │ │ ├── ProductsubcategoryRepoMock.scala │ │ │ │ ├── ProductsubcategoryRow.scala │ │ │ │ └── ProductsubcategoryRowUnsaved.scala │ │ │ ├── scrapreason │ │ │ │ ├── ScrapreasonFields.scala │ │ │ │ ├── ScrapreasonId.scala │ │ │ │ ├── ScrapreasonRepo.scala │ │ │ │ ├── ScrapreasonRepoImpl.scala │ │ │ │ ├── ScrapreasonRepoMock.scala │ │ │ │ ├── ScrapreasonRow.scala │ │ │ │ └── ScrapreasonRowUnsaved.scala │ │ │ ├── transactionhistory │ │ │ │ ├── TransactionhistoryFields.scala │ │ │ │ ├── TransactionhistoryId.scala │ │ │ │ ├── TransactionhistoryRepo.scala │ │ │ │ ├── TransactionhistoryRepoImpl.scala │ │ │ │ ├── TransactionhistoryRepoMock.scala │ │ │ │ ├── TransactionhistoryRow.scala │ │ │ │ └── TransactionhistoryRowUnsaved.scala │ │ │ ├── transactionhistoryarchive │ │ │ │ ├── TransactionhistoryarchiveFields.scala │ │ │ │ ├── TransactionhistoryarchiveId.scala │ │ │ │ ├── TransactionhistoryarchiveRepo.scala │ │ │ │ ├── TransactionhistoryarchiveRepoImpl.scala │ │ │ │ ├── TransactionhistoryarchiveRepoMock.scala │ │ │ │ ├── TransactionhistoryarchiveRow.scala │ │ │ │ └── TransactionhistoryarchiveRowUnsaved.scala │ │ │ ├── unitmeasure │ │ │ │ ├── UnitmeasureFields.scala │ │ │ │ ├── UnitmeasureId.scala │ │ │ │ ├── UnitmeasureRepo.scala │ │ │ │ ├── UnitmeasureRepoImpl.scala │ │ │ │ ├── UnitmeasureRepoMock.scala │ │ │ │ ├── UnitmeasureRow.scala │ │ │ │ └── UnitmeasureRowUnsaved.scala │ │ │ ├── vproductanddescription │ │ │ │ ├── VproductanddescriptionMVFields.scala │ │ │ │ ├── VproductanddescriptionMVRepo.scala │ │ │ │ ├── VproductanddescriptionMVRepoImpl.scala │ │ │ │ └── VproductanddescriptionMVRow.scala │ │ │ ├── vproductmodelcatalogdescription │ │ │ │ ├── VproductmodelcatalogdescriptionViewFields.scala │ │ │ │ ├── VproductmodelcatalogdescriptionViewRepo.scala │ │ │ │ ├── VproductmodelcatalogdescriptionViewRepoImpl.scala │ │ │ │ └── VproductmodelcatalogdescriptionViewRow.scala │ │ │ ├── vproductmodelinstructions │ │ │ │ ├── VproductmodelinstructionsViewFields.scala │ │ │ │ ├── VproductmodelinstructionsViewRepo.scala │ │ │ │ ├── VproductmodelinstructionsViewRepoImpl.scala │ │ │ │ └── VproductmodelinstructionsViewRow.scala │ │ │ ├── workorder │ │ │ │ ├── WorkorderFields.scala │ │ │ │ ├── WorkorderId.scala │ │ │ │ ├── WorkorderRepo.scala │ │ │ │ ├── WorkorderRepoImpl.scala │ │ │ │ ├── WorkorderRepoMock.scala │ │ │ │ ├── WorkorderRow.scala │ │ │ │ └── WorkorderRowUnsaved.scala │ │ │ └── workorderrouting │ │ │ │ ├── WorkorderroutingFields.scala │ │ │ │ ├── WorkorderroutingId.scala │ │ │ │ ├── WorkorderroutingRepo.scala │ │ │ │ ├── WorkorderroutingRepoImpl.scala │ │ │ │ ├── WorkorderroutingRepoMock.scala │ │ │ │ ├── WorkorderroutingRow.scala │ │ │ │ └── WorkorderroutingRowUnsaved.scala │ │ ├── pu │ │ │ ├── pod │ │ │ │ ├── PodViewFields.scala │ │ │ │ ├── PodViewRepo.scala │ │ │ │ ├── PodViewRepoImpl.scala │ │ │ │ └── PodViewRow.scala │ │ │ ├── poh │ │ │ │ ├── PohViewFields.scala │ │ │ │ ├── PohViewRepo.scala │ │ │ │ ├── PohViewRepoImpl.scala │ │ │ │ └── PohViewRow.scala │ │ │ ├── pv │ │ │ │ ├── PvViewFields.scala │ │ │ │ ├── PvViewRepo.scala │ │ │ │ ├── PvViewRepoImpl.scala │ │ │ │ └── PvViewRow.scala │ │ │ ├── sm │ │ │ │ ├── SmViewFields.scala │ │ │ │ ├── SmViewRepo.scala │ │ │ │ ├── SmViewRepoImpl.scala │ │ │ │ └── SmViewRow.scala │ │ │ └── v │ │ │ │ ├── VViewFields.scala │ │ │ │ ├── VViewRepo.scala │ │ │ │ ├── VViewRepoImpl.scala │ │ │ │ └── VViewRow.scala │ │ ├── public │ │ │ ├── AccountNumber.scala │ │ │ ├── Flag.scala │ │ │ ├── Mydomain.scala │ │ │ ├── Myenum.scala │ │ │ ├── Name.scala │ │ │ ├── NameStyle.scala │ │ │ ├── OrderNumber.scala │ │ │ ├── Phone.scala │ │ │ ├── ShortText.scala │ │ │ ├── flaff │ │ │ │ ├── FlaffFields.scala │ │ │ │ ├── FlaffId.scala │ │ │ │ ├── FlaffRepo.scala │ │ │ │ ├── FlaffRepoImpl.scala │ │ │ │ ├── FlaffRepoMock.scala │ │ │ │ └── FlaffRow.scala │ │ │ ├── identity_test │ │ │ │ ├── IdentityTestFields.scala │ │ │ │ ├── IdentityTestId.scala │ │ │ │ ├── IdentityTestRepo.scala │ │ │ │ ├── IdentityTestRepoImpl.scala │ │ │ │ ├── IdentityTestRepoMock.scala │ │ │ │ ├── IdentityTestRow.scala │ │ │ │ └── IdentityTestRowUnsaved.scala │ │ │ ├── issue142 │ │ │ │ ├── Issue142Fields.scala │ │ │ │ ├── Issue142Id.scala │ │ │ │ ├── Issue142Repo.scala │ │ │ │ ├── Issue142RepoImpl.scala │ │ │ │ ├── Issue142RepoMock.scala │ │ │ │ └── Issue142Row.scala │ │ │ ├── issue142_2 │ │ │ │ ├── Issue1422Fields.scala │ │ │ │ ├── Issue1422Repo.scala │ │ │ │ ├── Issue1422RepoImpl.scala │ │ │ │ ├── Issue1422RepoMock.scala │ │ │ │ └── Issue1422Row.scala │ │ │ ├── only_pk_columns │ │ │ │ ├── OnlyPkColumnsFields.scala │ │ │ │ ├── OnlyPkColumnsId.scala │ │ │ │ ├── OnlyPkColumnsRepo.scala │ │ │ │ ├── OnlyPkColumnsRepoImpl.scala │ │ │ │ ├── OnlyPkColumnsRepoMock.scala │ │ │ │ └── OnlyPkColumnsRow.scala │ │ │ ├── pgtest │ │ │ │ ├── PgtestFields.scala │ │ │ │ ├── PgtestRepo.scala │ │ │ │ ├── PgtestRepoImpl.scala │ │ │ │ └── PgtestRow.scala │ │ │ ├── pgtestnull │ │ │ │ ├── PgtestnullFields.scala │ │ │ │ ├── PgtestnullRepo.scala │ │ │ │ ├── PgtestnullRepoImpl.scala │ │ │ │ └── PgtestnullRow.scala │ │ │ ├── table_with_generated_columns │ │ │ │ ├── TableWithGeneratedColumnsFields.scala │ │ │ │ ├── TableWithGeneratedColumnsId.scala │ │ │ │ ├── TableWithGeneratedColumnsRepo.scala │ │ │ │ ├── TableWithGeneratedColumnsRepoImpl.scala │ │ │ │ ├── TableWithGeneratedColumnsRepoMock.scala │ │ │ │ ├── TableWithGeneratedColumnsRow.scala │ │ │ │ └── TableWithGeneratedColumnsRowUnsaved.scala │ │ │ ├── test_organisasjon │ │ │ │ ├── TestOrganisasjonFields.scala │ │ │ │ ├── TestOrganisasjonId.scala │ │ │ │ ├── TestOrganisasjonRepo.scala │ │ │ │ ├── TestOrganisasjonRepoImpl.scala │ │ │ │ ├── TestOrganisasjonRepoMock.scala │ │ │ │ └── TestOrganisasjonRow.scala │ │ │ ├── test_sak_soknadsalternativ │ │ │ │ ├── TestSakSoknadsalternativFields.scala │ │ │ │ ├── TestSakSoknadsalternativId.scala │ │ │ │ ├── TestSakSoknadsalternativRepo.scala │ │ │ │ ├── TestSakSoknadsalternativRepoImpl.scala │ │ │ │ ├── TestSakSoknadsalternativRepoMock.scala │ │ │ │ └── TestSakSoknadsalternativRow.scala │ │ │ ├── test_utdanningstilbud │ │ │ │ ├── TestUtdanningstilbudFields.scala │ │ │ │ ├── TestUtdanningstilbudId.scala │ │ │ │ ├── TestUtdanningstilbudRepo.scala │ │ │ │ ├── TestUtdanningstilbudRepoImpl.scala │ │ │ │ ├── TestUtdanningstilbudRepoMock.scala │ │ │ │ └── TestUtdanningstilbudRow.scala │ │ │ ├── title │ │ │ │ ├── TitleFields.scala │ │ │ │ ├── TitleId.scala │ │ │ │ ├── TitleRepo.scala │ │ │ │ ├── TitleRepoImpl.scala │ │ │ │ ├── TitleRepoMock.scala │ │ │ │ └── TitleRow.scala │ │ │ ├── title_domain │ │ │ │ ├── TitleDomainFields.scala │ │ │ │ ├── TitleDomainId.scala │ │ │ │ ├── TitleDomainRepo.scala │ │ │ │ ├── TitleDomainRepoImpl.scala │ │ │ │ ├── TitleDomainRepoMock.scala │ │ │ │ └── TitleDomainRow.scala │ │ │ ├── titledperson │ │ │ │ ├── TitledpersonFields.scala │ │ │ │ ├── TitledpersonRepo.scala │ │ │ │ ├── TitledpersonRepoImpl.scala │ │ │ │ └── TitledpersonRow.scala │ │ │ └── users │ │ │ │ ├── UsersFields.scala │ │ │ │ ├── UsersId.scala │ │ │ │ ├── UsersRepo.scala │ │ │ │ ├── UsersRepoImpl.scala │ │ │ │ ├── UsersRepoMock.scala │ │ │ │ ├── UsersRow.scala │ │ │ │ └── UsersRowUnsaved.scala │ │ ├── purchasing │ │ │ ├── productvendor │ │ │ │ ├── ProductvendorFields.scala │ │ │ │ ├── ProductvendorId.scala │ │ │ │ ├── ProductvendorRepo.scala │ │ │ │ ├── ProductvendorRepoImpl.scala │ │ │ │ ├── ProductvendorRepoMock.scala │ │ │ │ ├── ProductvendorRow.scala │ │ │ │ └── ProductvendorRowUnsaved.scala │ │ │ ├── purchaseorderdetail │ │ │ │ ├── PurchaseorderdetailFields.scala │ │ │ │ ├── PurchaseorderdetailId.scala │ │ │ │ ├── PurchaseorderdetailRepo.scala │ │ │ │ ├── PurchaseorderdetailRepoImpl.scala │ │ │ │ ├── PurchaseorderdetailRow.scala │ │ │ │ └── PurchaseorderdetailRowUnsaved.scala │ │ │ ├── purchaseorderheader │ │ │ │ ├── PurchaseorderheaderFields.scala │ │ │ │ ├── PurchaseorderheaderId.scala │ │ │ │ ├── PurchaseorderheaderRepo.scala │ │ │ │ ├── PurchaseorderheaderRepoImpl.scala │ │ │ │ ├── PurchaseorderheaderRepoMock.scala │ │ │ │ ├── PurchaseorderheaderRow.scala │ │ │ │ └── PurchaseorderheaderRowUnsaved.scala │ │ │ ├── shipmethod │ │ │ │ ├── ShipmethodFields.scala │ │ │ │ ├── ShipmethodId.scala │ │ │ │ ├── ShipmethodRepo.scala │ │ │ │ ├── ShipmethodRepoImpl.scala │ │ │ │ ├── ShipmethodRepoMock.scala │ │ │ │ ├── ShipmethodRow.scala │ │ │ │ └── ShipmethodRowUnsaved.scala │ │ │ ├── vendor │ │ │ │ ├── VendorFields.scala │ │ │ │ ├── VendorRepo.scala │ │ │ │ ├── VendorRepoImpl.scala │ │ │ │ ├── VendorRepoMock.scala │ │ │ │ ├── VendorRow.scala │ │ │ │ └── VendorRowUnsaved.scala │ │ │ ├── vvendorwithaddresses │ │ │ │ ├── VvendorwithaddressesViewFields.scala │ │ │ │ ├── VvendorwithaddressesViewRepo.scala │ │ │ │ ├── VvendorwithaddressesViewRepoImpl.scala │ │ │ │ └── VvendorwithaddressesViewRow.scala │ │ │ └── vvendorwithcontacts │ │ │ │ ├── VvendorwithcontactsViewFields.scala │ │ │ │ ├── VvendorwithcontactsViewRepo.scala │ │ │ │ ├── VvendorwithcontactsViewRepoImpl.scala │ │ │ │ └── VvendorwithcontactsViewRow.scala │ │ ├── sa │ │ │ ├── c │ │ │ │ ├── CViewFields.scala │ │ │ │ ├── CViewRepo.scala │ │ │ │ ├── CViewRepoImpl.scala │ │ │ │ └── CViewRow.scala │ │ │ ├── cc │ │ │ │ ├── CcViewFields.scala │ │ │ │ ├── CcViewRepo.scala │ │ │ │ ├── CcViewRepoImpl.scala │ │ │ │ └── CcViewRow.scala │ │ │ ├── cr │ │ │ │ ├── CrViewFields.scala │ │ │ │ ├── CrViewRepo.scala │ │ │ │ ├── CrViewRepoImpl.scala │ │ │ │ └── CrViewRow.scala │ │ │ ├── crc │ │ │ │ ├── CrcViewFields.scala │ │ │ │ ├── CrcViewRepo.scala │ │ │ │ ├── CrcViewRepoImpl.scala │ │ │ │ └── CrcViewRow.scala │ │ │ ├── cu │ │ │ │ ├── CuViewFields.scala │ │ │ │ ├── CuViewRepo.scala │ │ │ │ ├── CuViewRepoImpl.scala │ │ │ │ └── CuViewRow.scala │ │ │ ├── pcc │ │ │ │ ├── PccViewFields.scala │ │ │ │ ├── PccViewRepo.scala │ │ │ │ ├── PccViewRepoImpl.scala │ │ │ │ └── PccViewRow.scala │ │ │ ├── s │ │ │ │ ├── SViewFields.scala │ │ │ │ ├── SViewRepo.scala │ │ │ │ ├── SViewRepoImpl.scala │ │ │ │ └── SViewRow.scala │ │ │ ├── sci │ │ │ │ ├── SciViewFields.scala │ │ │ │ ├── SciViewRepo.scala │ │ │ │ ├── SciViewRepoImpl.scala │ │ │ │ └── SciViewRow.scala │ │ │ ├── so │ │ │ │ ├── SoViewFields.scala │ │ │ │ ├── SoViewRepo.scala │ │ │ │ ├── SoViewRepoImpl.scala │ │ │ │ └── SoViewRow.scala │ │ │ ├── sod │ │ │ │ ├── SodViewFields.scala │ │ │ │ ├── SodViewRepo.scala │ │ │ │ ├── SodViewRepoImpl.scala │ │ │ │ └── SodViewRow.scala │ │ │ ├── soh │ │ │ │ ├── SohViewFields.scala │ │ │ │ ├── SohViewRepo.scala │ │ │ │ ├── SohViewRepoImpl.scala │ │ │ │ └── SohViewRow.scala │ │ │ ├── sohsr │ │ │ │ ├── SohsrViewFields.scala │ │ │ │ ├── SohsrViewRepo.scala │ │ │ │ ├── SohsrViewRepoImpl.scala │ │ │ │ └── SohsrViewRow.scala │ │ │ ├── sop │ │ │ │ ├── SopViewFields.scala │ │ │ │ ├── SopViewRepo.scala │ │ │ │ ├── SopViewRepoImpl.scala │ │ │ │ └── SopViewRow.scala │ │ │ ├── sp │ │ │ │ ├── SpViewFields.scala │ │ │ │ ├── SpViewRepo.scala │ │ │ │ ├── SpViewRepoImpl.scala │ │ │ │ └── SpViewRow.scala │ │ │ ├── spqh │ │ │ │ ├── SpqhViewFields.scala │ │ │ │ ├── SpqhViewRepo.scala │ │ │ │ ├── SpqhViewRepoImpl.scala │ │ │ │ └── SpqhViewRow.scala │ │ │ ├── sr │ │ │ │ ├── SrViewFields.scala │ │ │ │ ├── SrViewRepo.scala │ │ │ │ ├── SrViewRepoImpl.scala │ │ │ │ └── SrViewRow.scala │ │ │ ├── st │ │ │ │ ├── StViewFields.scala │ │ │ │ ├── StViewRepo.scala │ │ │ │ ├── StViewRepoImpl.scala │ │ │ │ └── StViewRow.scala │ │ │ ├── sth │ │ │ │ ├── SthViewFields.scala │ │ │ │ ├── SthViewRepo.scala │ │ │ │ ├── SthViewRepoImpl.scala │ │ │ │ └── SthViewRow.scala │ │ │ └── tr │ │ │ │ ├── TrViewFields.scala │ │ │ │ ├── TrViewRepo.scala │ │ │ │ ├── TrViewRepoImpl.scala │ │ │ │ └── TrViewRow.scala │ │ ├── sales │ │ │ ├── countryregioncurrency │ │ │ │ ├── CountryregioncurrencyFields.scala │ │ │ │ ├── CountryregioncurrencyId.scala │ │ │ │ ├── CountryregioncurrencyRepo.scala │ │ │ │ ├── CountryregioncurrencyRepoImpl.scala │ │ │ │ ├── CountryregioncurrencyRepoMock.scala │ │ │ │ ├── CountryregioncurrencyRow.scala │ │ │ │ └── CountryregioncurrencyRowUnsaved.scala │ │ │ ├── creditcard │ │ │ │ ├── CreditcardFields.scala │ │ │ │ ├── CreditcardRepo.scala │ │ │ │ ├── CreditcardRepoImpl.scala │ │ │ │ ├── CreditcardRepoMock.scala │ │ │ │ ├── CreditcardRow.scala │ │ │ │ └── CreditcardRowUnsaved.scala │ │ │ ├── currency │ │ │ │ ├── CurrencyFields.scala │ │ │ │ ├── CurrencyId.scala │ │ │ │ ├── CurrencyRepo.scala │ │ │ │ ├── CurrencyRepoImpl.scala │ │ │ │ ├── CurrencyRepoMock.scala │ │ │ │ ├── CurrencyRow.scala │ │ │ │ └── CurrencyRowUnsaved.scala │ │ │ ├── currencyrate │ │ │ │ ├── CurrencyrateFields.scala │ │ │ │ ├── CurrencyrateId.scala │ │ │ │ ├── CurrencyrateRepo.scala │ │ │ │ ├── CurrencyrateRepoImpl.scala │ │ │ │ ├── CurrencyrateRepoMock.scala │ │ │ │ ├── CurrencyrateRow.scala │ │ │ │ └── CurrencyrateRowUnsaved.scala │ │ │ ├── customer │ │ │ │ ├── CustomerFields.scala │ │ │ │ ├── CustomerId.scala │ │ │ │ ├── CustomerRepo.scala │ │ │ │ ├── CustomerRepoImpl.scala │ │ │ │ ├── CustomerRepoMock.scala │ │ │ │ ├── CustomerRow.scala │ │ │ │ └── CustomerRowUnsaved.scala │ │ │ ├── personcreditcard │ │ │ │ ├── PersoncreditcardFields.scala │ │ │ │ ├── PersoncreditcardId.scala │ │ │ │ ├── PersoncreditcardRepo.scala │ │ │ │ ├── PersoncreditcardRepoImpl.scala │ │ │ │ ├── PersoncreditcardRepoMock.scala │ │ │ │ ├── PersoncreditcardRow.scala │ │ │ │ └── PersoncreditcardRowUnsaved.scala │ │ │ ├── salesorderdetail │ │ │ │ ├── SalesorderdetailFields.scala │ │ │ │ ├── SalesorderdetailId.scala │ │ │ │ ├── SalesorderdetailRepo.scala │ │ │ │ ├── SalesorderdetailRepoImpl.scala │ │ │ │ ├── SalesorderdetailRepoMock.scala │ │ │ │ ├── SalesorderdetailRow.scala │ │ │ │ └── SalesorderdetailRowUnsaved.scala │ │ │ ├── salesorderheader │ │ │ │ ├── SalesorderheaderFields.scala │ │ │ │ ├── SalesorderheaderId.scala │ │ │ │ ├── SalesorderheaderRepo.scala │ │ │ │ ├── SalesorderheaderRepoImpl.scala │ │ │ │ ├── SalesorderheaderRepoMock.scala │ │ │ │ ├── SalesorderheaderRow.scala │ │ │ │ └── SalesorderheaderRowUnsaved.scala │ │ │ ├── salesorderheadersalesreason │ │ │ │ ├── SalesorderheadersalesreasonFields.scala │ │ │ │ ├── SalesorderheadersalesreasonId.scala │ │ │ │ ├── SalesorderheadersalesreasonRepo.scala │ │ │ │ ├── SalesorderheadersalesreasonRepoImpl.scala │ │ │ │ ├── SalesorderheadersalesreasonRepoMock.scala │ │ │ │ ├── SalesorderheadersalesreasonRow.scala │ │ │ │ └── SalesorderheadersalesreasonRowUnsaved.scala │ │ │ ├── salesperson │ │ │ │ ├── SalespersonFields.scala │ │ │ │ ├── SalespersonRepo.scala │ │ │ │ ├── SalespersonRepoImpl.scala │ │ │ │ ├── SalespersonRepoMock.scala │ │ │ │ ├── SalespersonRow.scala │ │ │ │ └── SalespersonRowUnsaved.scala │ │ │ ├── salespersonquotahistory │ │ │ │ ├── SalespersonquotahistoryFields.scala │ │ │ │ ├── SalespersonquotahistoryId.scala │ │ │ │ ├── SalespersonquotahistoryRepo.scala │ │ │ │ ├── SalespersonquotahistoryRepoImpl.scala │ │ │ │ ├── SalespersonquotahistoryRepoMock.scala │ │ │ │ ├── SalespersonquotahistoryRow.scala │ │ │ │ └── SalespersonquotahistoryRowUnsaved.scala │ │ │ ├── salesreason │ │ │ │ ├── SalesreasonFields.scala │ │ │ │ ├── SalesreasonId.scala │ │ │ │ ├── SalesreasonRepo.scala │ │ │ │ ├── SalesreasonRepoImpl.scala │ │ │ │ ├── SalesreasonRepoMock.scala │ │ │ │ ├── SalesreasonRow.scala │ │ │ │ └── SalesreasonRowUnsaved.scala │ │ │ ├── salestaxrate │ │ │ │ ├── SalestaxrateFields.scala │ │ │ │ ├── SalestaxrateId.scala │ │ │ │ ├── SalestaxrateRepo.scala │ │ │ │ ├── SalestaxrateRepoImpl.scala │ │ │ │ ├── SalestaxrateRepoMock.scala │ │ │ │ ├── SalestaxrateRow.scala │ │ │ │ └── SalestaxrateRowUnsaved.scala │ │ │ ├── salesterritory │ │ │ │ ├── SalesterritoryFields.scala │ │ │ │ ├── SalesterritoryId.scala │ │ │ │ ├── SalesterritoryRepo.scala │ │ │ │ ├── SalesterritoryRepoImpl.scala │ │ │ │ ├── SalesterritoryRepoMock.scala │ │ │ │ ├── SalesterritoryRow.scala │ │ │ │ └── SalesterritoryRowUnsaved.scala │ │ │ ├── salesterritoryhistory │ │ │ │ ├── SalesterritoryhistoryFields.scala │ │ │ │ ├── SalesterritoryhistoryId.scala │ │ │ │ ├── SalesterritoryhistoryRepo.scala │ │ │ │ ├── SalesterritoryhistoryRepoImpl.scala │ │ │ │ ├── SalesterritoryhistoryRepoMock.scala │ │ │ │ ├── SalesterritoryhistoryRow.scala │ │ │ │ └── SalesterritoryhistoryRowUnsaved.scala │ │ │ ├── shoppingcartitem │ │ │ │ ├── ShoppingcartitemFields.scala │ │ │ │ ├── ShoppingcartitemId.scala │ │ │ │ ├── ShoppingcartitemRepo.scala │ │ │ │ ├── ShoppingcartitemRepoImpl.scala │ │ │ │ ├── ShoppingcartitemRepoMock.scala │ │ │ │ ├── ShoppingcartitemRow.scala │ │ │ │ └── ShoppingcartitemRowUnsaved.scala │ │ │ ├── specialoffer │ │ │ │ ├── SpecialofferFields.scala │ │ │ │ ├── SpecialofferId.scala │ │ │ │ ├── SpecialofferRepo.scala │ │ │ │ ├── SpecialofferRepoImpl.scala │ │ │ │ ├── SpecialofferRepoMock.scala │ │ │ │ ├── SpecialofferRow.scala │ │ │ │ └── SpecialofferRowUnsaved.scala │ │ │ ├── specialofferproduct │ │ │ │ ├── SpecialofferproductFields.scala │ │ │ │ ├── SpecialofferproductId.scala │ │ │ │ ├── SpecialofferproductRepo.scala │ │ │ │ ├── SpecialofferproductRepoImpl.scala │ │ │ │ ├── SpecialofferproductRepoMock.scala │ │ │ │ ├── SpecialofferproductRow.scala │ │ │ │ └── SpecialofferproductRowUnsaved.scala │ │ │ ├── store │ │ │ │ ├── StoreFields.scala │ │ │ │ ├── StoreRepo.scala │ │ │ │ ├── StoreRepoImpl.scala │ │ │ │ ├── StoreRepoMock.scala │ │ │ │ ├── StoreRow.scala │ │ │ │ └── StoreRowUnsaved.scala │ │ │ ├── vindividualcustomer │ │ │ │ ├── VindividualcustomerViewFields.scala │ │ │ │ ├── VindividualcustomerViewRepo.scala │ │ │ │ ├── VindividualcustomerViewRepoImpl.scala │ │ │ │ └── VindividualcustomerViewRow.scala │ │ │ ├── vpersondemographics │ │ │ │ ├── VpersondemographicsViewFields.scala │ │ │ │ ├── VpersondemographicsViewRepo.scala │ │ │ │ ├── VpersondemographicsViewRepoImpl.scala │ │ │ │ └── VpersondemographicsViewRow.scala │ │ │ ├── vsalesperson │ │ │ │ ├── VsalespersonViewFields.scala │ │ │ │ ├── VsalespersonViewRepo.scala │ │ │ │ ├── VsalespersonViewRepoImpl.scala │ │ │ │ └── VsalespersonViewRow.scala │ │ │ ├── vsalespersonsalesbyfiscalyears │ │ │ │ ├── VsalespersonsalesbyfiscalyearsViewFields.scala │ │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepo.scala │ │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepoImpl.scala │ │ │ │ └── VsalespersonsalesbyfiscalyearsViewRow.scala │ │ │ ├── vsalespersonsalesbyfiscalyearsdata │ │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewFields.scala │ │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepo.scala │ │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepoImpl.scala │ │ │ │ └── VsalespersonsalesbyfiscalyearsdataViewRow.scala │ │ │ ├── vstorewithaddresses │ │ │ │ ├── VstorewithaddressesViewFields.scala │ │ │ │ ├── VstorewithaddressesViewRepo.scala │ │ │ │ ├── VstorewithaddressesViewRepoImpl.scala │ │ │ │ └── VstorewithaddressesViewRow.scala │ │ │ ├── vstorewithcontacts │ │ │ │ ├── VstorewithcontactsViewFields.scala │ │ │ │ ├── VstorewithcontactsViewRepo.scala │ │ │ │ ├── VstorewithcontactsViewRepoImpl.scala │ │ │ │ └── VstorewithcontactsViewRow.scala │ │ │ └── vstorewithdemographics │ │ │ │ ├── VstorewithdemographicsViewFields.scala │ │ │ │ ├── VstorewithdemographicsViewRepo.scala │ │ │ │ ├── VstorewithdemographicsViewRepoImpl.scala │ │ │ │ └── VstorewithdemographicsViewRow.scala │ │ ├── streamingInsert.scala │ │ ├── update_person │ │ │ ├── UpdatePersonSqlRepo.scala │ │ │ └── UpdatePersonSqlRepoImpl.scala │ │ └── update_person_returning │ │ │ ├── UpdatePersonReturningSqlRepo.scala │ │ │ ├── UpdatePersonReturningSqlRepoImpl.scala │ │ │ └── UpdatePersonReturningSqlRow.scala │ └── anorm │ │ └── adventureworks │ │ └── ExecuteReturningSyntax.scala ├── generated-and-checked-in-3 │ ├── adventureworks │ │ ├── TestDomainInsert.scala │ │ ├── TestInsert.scala │ │ ├── Text.scala │ │ ├── customtypes │ │ │ ├── Defaulted.scala │ │ │ ├── TypoBox.scala │ │ │ ├── TypoBytea.scala │ │ │ ├── TypoCircle.scala │ │ │ ├── TypoHStore.scala │ │ │ ├── TypoInet.scala │ │ │ ├── TypoInstant.scala │ │ │ ├── TypoInt2Vector.scala │ │ │ ├── TypoInterval.scala │ │ │ ├── TypoJson.scala │ │ │ ├── TypoJsonb.scala │ │ │ ├── TypoLine.scala │ │ │ ├── TypoLineSegment.scala │ │ │ ├── TypoLocalDate.scala │ │ │ ├── TypoLocalDateTime.scala │ │ │ ├── TypoLocalTime.scala │ │ │ ├── TypoMoney.scala │ │ │ ├── TypoOffsetTime.scala │ │ │ ├── TypoPath.scala │ │ │ ├── TypoPoint.scala │ │ │ ├── TypoPolygon.scala │ │ │ ├── TypoRecord.scala │ │ │ ├── TypoShort.scala │ │ │ ├── TypoUUID.scala │ │ │ ├── TypoUnknownCitext.scala │ │ │ ├── TypoVector.scala │ │ │ └── TypoXml.scala │ │ ├── frontpage │ │ │ └── Email.scala │ │ ├── hr │ │ │ ├── d │ │ │ │ ├── DViewFields.scala │ │ │ │ ├── DViewRepo.scala │ │ │ │ ├── DViewRepoImpl.scala │ │ │ │ └── DViewRow.scala │ │ │ ├── e │ │ │ │ ├── EViewFields.scala │ │ │ │ ├── EViewRepo.scala │ │ │ │ ├── EViewRepoImpl.scala │ │ │ │ └── EViewRow.scala │ │ │ ├── edh │ │ │ │ ├── EdhViewFields.scala │ │ │ │ ├── EdhViewRepo.scala │ │ │ │ ├── EdhViewRepoImpl.scala │ │ │ │ └── EdhViewRow.scala │ │ │ ├── eph │ │ │ │ ├── EphViewFields.scala │ │ │ │ ├── EphViewRepo.scala │ │ │ │ ├── EphViewRepoImpl.scala │ │ │ │ └── EphViewRow.scala │ │ │ ├── jc │ │ │ │ ├── JcViewFields.scala │ │ │ │ ├── JcViewRepo.scala │ │ │ │ ├── JcViewRepoImpl.scala │ │ │ │ └── JcViewRow.scala │ │ │ └── s │ │ │ │ ├── SViewFields.scala │ │ │ │ ├── SViewRepo.scala │ │ │ │ ├── SViewRepoImpl.scala │ │ │ │ └── SViewRow.scala │ │ ├── humanresources │ │ │ ├── department │ │ │ │ ├── DepartmentFields.scala │ │ │ │ ├── DepartmentId.scala │ │ │ │ ├── DepartmentRepo.scala │ │ │ │ ├── DepartmentRepoImpl.scala │ │ │ │ ├── DepartmentRepoMock.scala │ │ │ │ ├── DepartmentRow.scala │ │ │ │ └── DepartmentRowUnsaved.scala │ │ │ ├── employee │ │ │ │ ├── EmployeeFields.scala │ │ │ │ ├── EmployeeRepo.scala │ │ │ │ ├── EmployeeRepoImpl.scala │ │ │ │ ├── EmployeeRepoMock.scala │ │ │ │ ├── EmployeeRow.scala │ │ │ │ └── EmployeeRowUnsaved.scala │ │ │ ├── employeedepartmenthistory │ │ │ │ ├── EmployeedepartmenthistoryFields.scala │ │ │ │ ├── EmployeedepartmenthistoryId.scala │ │ │ │ ├── EmployeedepartmenthistoryRepo.scala │ │ │ │ ├── EmployeedepartmenthistoryRepoImpl.scala │ │ │ │ ├── EmployeedepartmenthistoryRepoMock.scala │ │ │ │ ├── EmployeedepartmenthistoryRow.scala │ │ │ │ └── EmployeedepartmenthistoryRowUnsaved.scala │ │ │ ├── employeepayhistory │ │ │ │ ├── EmployeepayhistoryFields.scala │ │ │ │ ├── EmployeepayhistoryId.scala │ │ │ │ ├── EmployeepayhistoryRepo.scala │ │ │ │ ├── EmployeepayhistoryRepoImpl.scala │ │ │ │ ├── EmployeepayhistoryRepoMock.scala │ │ │ │ ├── EmployeepayhistoryRow.scala │ │ │ │ └── EmployeepayhistoryRowUnsaved.scala │ │ │ ├── jobcandidate │ │ │ │ ├── JobcandidateFields.scala │ │ │ │ ├── JobcandidateId.scala │ │ │ │ ├── JobcandidateRepo.scala │ │ │ │ ├── JobcandidateRepoImpl.scala │ │ │ │ ├── JobcandidateRepoMock.scala │ │ │ │ ├── JobcandidateRow.scala │ │ │ │ └── JobcandidateRowUnsaved.scala │ │ │ ├── shift │ │ │ │ ├── ShiftFields.scala │ │ │ │ ├── ShiftId.scala │ │ │ │ ├── ShiftRepo.scala │ │ │ │ ├── ShiftRepoImpl.scala │ │ │ │ ├── ShiftRepoMock.scala │ │ │ │ ├── ShiftRow.scala │ │ │ │ └── ShiftRowUnsaved.scala │ │ │ ├── vemployee │ │ │ │ ├── VemployeeViewFields.scala │ │ │ │ ├── VemployeeViewRepo.scala │ │ │ │ ├── VemployeeViewRepoImpl.scala │ │ │ │ └── VemployeeViewRow.scala │ │ │ ├── vemployeedepartment │ │ │ │ ├── VemployeedepartmentViewFields.scala │ │ │ │ ├── VemployeedepartmentViewRepo.scala │ │ │ │ ├── VemployeedepartmentViewRepoImpl.scala │ │ │ │ └── VemployeedepartmentViewRow.scala │ │ │ ├── vemployeedepartmenthistory │ │ │ │ ├── VemployeedepartmenthistoryViewFields.scala │ │ │ │ ├── VemployeedepartmenthistoryViewRepo.scala │ │ │ │ ├── VemployeedepartmenthistoryViewRepoImpl.scala │ │ │ │ └── VemployeedepartmenthistoryViewRow.scala │ │ │ ├── vjobcandidate │ │ │ │ ├── VjobcandidateViewFields.scala │ │ │ │ ├── VjobcandidateViewRepo.scala │ │ │ │ ├── VjobcandidateViewRepoImpl.scala │ │ │ │ └── VjobcandidateViewRow.scala │ │ │ ├── vjobcandidateeducation │ │ │ │ ├── VjobcandidateeducationViewFields.scala │ │ │ │ ├── VjobcandidateeducationViewRepo.scala │ │ │ │ ├── VjobcandidateeducationViewRepoImpl.scala │ │ │ │ └── VjobcandidateeducationViewRow.scala │ │ │ └── vjobcandidateemployment │ │ │ │ ├── VjobcandidateemploymentViewFields.scala │ │ │ │ ├── VjobcandidateemploymentViewRepo.scala │ │ │ │ ├── VjobcandidateemploymentViewRepoImpl.scala │ │ │ │ └── VjobcandidateemploymentViewRow.scala │ │ ├── information_schema │ │ │ ├── CardinalNumber.scala │ │ │ ├── CharacterData.scala │ │ │ ├── SqlIdentifier.scala │ │ │ ├── TimeStamp.scala │ │ │ └── YesOrNo.scala │ │ ├── package.scala │ │ ├── pe │ │ │ ├── a │ │ │ │ ├── AViewFields.scala │ │ │ │ ├── AViewRepo.scala │ │ │ │ ├── AViewRepoImpl.scala │ │ │ │ └── AViewRow.scala │ │ │ ├── at │ │ │ │ ├── AtViewFields.scala │ │ │ │ ├── AtViewRepo.scala │ │ │ │ ├── AtViewRepoImpl.scala │ │ │ │ └── AtViewRow.scala │ │ │ ├── be │ │ │ │ ├── BeViewFields.scala │ │ │ │ ├── BeViewRepo.scala │ │ │ │ ├── BeViewRepoImpl.scala │ │ │ │ └── BeViewRow.scala │ │ │ ├── bea │ │ │ │ ├── BeaViewFields.scala │ │ │ │ ├── BeaViewRepo.scala │ │ │ │ ├── BeaViewRepoImpl.scala │ │ │ │ └── BeaViewRow.scala │ │ │ ├── bec │ │ │ │ ├── BecViewFields.scala │ │ │ │ ├── BecViewRepo.scala │ │ │ │ ├── BecViewRepoImpl.scala │ │ │ │ └── BecViewRow.scala │ │ │ ├── cr │ │ │ │ ├── CrViewFields.scala │ │ │ │ ├── CrViewRepo.scala │ │ │ │ ├── CrViewRepoImpl.scala │ │ │ │ └── CrViewRow.scala │ │ │ ├── ct │ │ │ │ ├── CtViewFields.scala │ │ │ │ ├── CtViewRepo.scala │ │ │ │ ├── CtViewRepoImpl.scala │ │ │ │ └── CtViewRow.scala │ │ │ ├── e │ │ │ │ ├── EViewFields.scala │ │ │ │ ├── EViewRepo.scala │ │ │ │ ├── EViewRepoImpl.scala │ │ │ │ └── EViewRow.scala │ │ │ ├── p │ │ │ │ ├── PViewFields.scala │ │ │ │ ├── PViewRepo.scala │ │ │ │ ├── PViewRepoImpl.scala │ │ │ │ └── PViewRow.scala │ │ │ ├── pa │ │ │ │ ├── PaViewFields.scala │ │ │ │ ├── PaViewRepo.scala │ │ │ │ ├── PaViewRepoImpl.scala │ │ │ │ └── PaViewRow.scala │ │ │ ├── pnt │ │ │ │ ├── PntViewFields.scala │ │ │ │ ├── PntViewRepo.scala │ │ │ │ ├── PntViewRepoImpl.scala │ │ │ │ └── PntViewRow.scala │ │ │ ├── pp │ │ │ │ ├── PpViewFields.scala │ │ │ │ ├── PpViewRepo.scala │ │ │ │ ├── PpViewRepoImpl.scala │ │ │ │ └── PpViewRow.scala │ │ │ └── sp │ │ │ │ ├── SpViewFields.scala │ │ │ │ ├── SpViewRepo.scala │ │ │ │ ├── SpViewRepoImpl.scala │ │ │ │ └── SpViewRow.scala │ │ ├── person │ │ │ ├── address │ │ │ │ ├── AddressFields.scala │ │ │ │ ├── AddressId.scala │ │ │ │ ├── AddressRepo.scala │ │ │ │ ├── AddressRepoImpl.scala │ │ │ │ ├── AddressRepoMock.scala │ │ │ │ ├── AddressRow.scala │ │ │ │ └── AddressRowUnsaved.scala │ │ │ ├── addresstype │ │ │ │ ├── AddresstypeFields.scala │ │ │ │ ├── AddresstypeId.scala │ │ │ │ ├── AddresstypeRepo.scala │ │ │ │ ├── AddresstypeRepoImpl.scala │ │ │ │ ├── AddresstypeRepoMock.scala │ │ │ │ ├── AddresstypeRow.scala │ │ │ │ └── AddresstypeRowUnsaved.scala │ │ │ ├── businessentity │ │ │ │ ├── BusinessentityFields.scala │ │ │ │ ├── BusinessentityId.scala │ │ │ │ ├── BusinessentityRepo.scala │ │ │ │ ├── BusinessentityRepoImpl.scala │ │ │ │ ├── BusinessentityRepoMock.scala │ │ │ │ ├── BusinessentityRow.scala │ │ │ │ └── BusinessentityRowUnsaved.scala │ │ │ ├── businessentityaddress │ │ │ │ ├── BusinessentityaddressFields.scala │ │ │ │ ├── BusinessentityaddressId.scala │ │ │ │ ├── BusinessentityaddressRepo.scala │ │ │ │ ├── BusinessentityaddressRepoImpl.scala │ │ │ │ ├── BusinessentityaddressRepoMock.scala │ │ │ │ ├── BusinessentityaddressRow.scala │ │ │ │ └── BusinessentityaddressRowUnsaved.scala │ │ │ ├── businessentitycontact │ │ │ │ ├── BusinessentitycontactFields.scala │ │ │ │ ├── BusinessentitycontactId.scala │ │ │ │ ├── BusinessentitycontactRepo.scala │ │ │ │ ├── BusinessentitycontactRepoImpl.scala │ │ │ │ ├── BusinessentitycontactRepoMock.scala │ │ │ │ ├── BusinessentitycontactRow.scala │ │ │ │ └── BusinessentitycontactRowUnsaved.scala │ │ │ ├── contacttype │ │ │ │ ├── ContacttypeFields.scala │ │ │ │ ├── ContacttypeId.scala │ │ │ │ ├── ContacttypeRepo.scala │ │ │ │ ├── ContacttypeRepoImpl.scala │ │ │ │ ├── ContacttypeRepoMock.scala │ │ │ │ ├── ContacttypeRow.scala │ │ │ │ └── ContacttypeRowUnsaved.scala │ │ │ ├── countryregion │ │ │ │ ├── CountryregionFields.scala │ │ │ │ ├── CountryregionId.scala │ │ │ │ ├── CountryregionRepo.scala │ │ │ │ ├── CountryregionRepoImpl.scala │ │ │ │ ├── CountryregionRepoMock.scala │ │ │ │ ├── CountryregionRow.scala │ │ │ │ └── CountryregionRowUnsaved.scala │ │ │ ├── emailaddress │ │ │ │ ├── EmailaddressFields.scala │ │ │ │ ├── EmailaddressId.scala │ │ │ │ ├── EmailaddressRepo.scala │ │ │ │ ├── EmailaddressRepoImpl.scala │ │ │ │ ├── EmailaddressRepoMock.scala │ │ │ │ ├── EmailaddressRow.scala │ │ │ │ └── EmailaddressRowUnsaved.scala │ │ │ ├── password │ │ │ │ ├── PasswordFields.scala │ │ │ │ ├── PasswordRepo.scala │ │ │ │ ├── PasswordRepoImpl.scala │ │ │ │ ├── PasswordRepoMock.scala │ │ │ │ ├── PasswordRow.scala │ │ │ │ └── PasswordRowUnsaved.scala │ │ │ ├── person │ │ │ │ ├── PersonFields.scala │ │ │ │ ├── PersonRepo.scala │ │ │ │ ├── PersonRepoImpl.scala │ │ │ │ ├── PersonRepoMock.scala │ │ │ │ ├── PersonRow.scala │ │ │ │ └── PersonRowUnsaved.scala │ │ │ ├── personphone │ │ │ │ ├── PersonphoneFields.scala │ │ │ │ ├── PersonphoneId.scala │ │ │ │ ├── PersonphoneRepo.scala │ │ │ │ ├── PersonphoneRepoImpl.scala │ │ │ │ ├── PersonphoneRepoMock.scala │ │ │ │ ├── PersonphoneRow.scala │ │ │ │ └── PersonphoneRowUnsaved.scala │ │ │ ├── phonenumbertype │ │ │ │ ├── PhonenumbertypeFields.scala │ │ │ │ ├── PhonenumbertypeId.scala │ │ │ │ ├── PhonenumbertypeRepo.scala │ │ │ │ ├── PhonenumbertypeRepoImpl.scala │ │ │ │ ├── PhonenumbertypeRepoMock.scala │ │ │ │ ├── PhonenumbertypeRow.scala │ │ │ │ └── PhonenumbertypeRowUnsaved.scala │ │ │ ├── stateprovince │ │ │ │ ├── StateprovinceFields.scala │ │ │ │ ├── StateprovinceId.scala │ │ │ │ ├── StateprovinceRepo.scala │ │ │ │ ├── StateprovinceRepoImpl.scala │ │ │ │ ├── StateprovinceRepoMock.scala │ │ │ │ ├── StateprovinceRow.scala │ │ │ │ └── StateprovinceRowUnsaved.scala │ │ │ ├── vadditionalcontactinfo │ │ │ │ ├── VadditionalcontactinfoViewFields.scala │ │ │ │ ├── VadditionalcontactinfoViewRepo.scala │ │ │ │ ├── VadditionalcontactinfoViewRepoImpl.scala │ │ │ │ └── VadditionalcontactinfoViewRow.scala │ │ │ └── vstateprovincecountryregion │ │ │ │ ├── VstateprovincecountryregionMVFields.scala │ │ │ │ ├── VstateprovincecountryregionMVRepo.scala │ │ │ │ ├── VstateprovincecountryregionMVRepoImpl.scala │ │ │ │ └── VstateprovincecountryregionMVRow.scala │ │ ├── person_detail │ │ │ ├── PersonDetailSqlRepo.scala │ │ │ ├── PersonDetailSqlRepoImpl.scala │ │ │ └── PersonDetailSqlRow.scala │ │ ├── person_dynamic │ │ │ ├── PersonDynamicSqlRepo.scala │ │ │ ├── PersonDynamicSqlRepoImpl.scala │ │ │ └── PersonDynamicSqlRow.scala │ │ ├── person_row_join │ │ │ ├── PersonRowJoinSqlRepo.scala │ │ │ ├── PersonRowJoinSqlRepoImpl.scala │ │ │ └── PersonRowJoinSqlRow.scala │ │ ├── pr │ │ │ ├── bom │ │ │ │ ├── BomViewFields.scala │ │ │ │ ├── BomViewRepo.scala │ │ │ │ ├── BomViewRepoImpl.scala │ │ │ │ └── BomViewRow.scala │ │ │ ├── c │ │ │ │ ├── CViewFields.scala │ │ │ │ ├── CViewRepo.scala │ │ │ │ ├── CViewRepoImpl.scala │ │ │ │ └── CViewRow.scala │ │ │ ├── d │ │ │ │ ├── DViewFields.scala │ │ │ │ ├── DViewRepo.scala │ │ │ │ ├── DViewRepoImpl.scala │ │ │ │ └── DViewRow.scala │ │ │ ├── i │ │ │ │ ├── IViewFields.scala │ │ │ │ ├── IViewRepo.scala │ │ │ │ ├── IViewRepoImpl.scala │ │ │ │ └── IViewRow.scala │ │ │ ├── l │ │ │ │ ├── LViewFields.scala │ │ │ │ ├── LViewRepo.scala │ │ │ │ ├── LViewRepoImpl.scala │ │ │ │ └── LViewRow.scala │ │ │ ├── p │ │ │ │ ├── PViewFields.scala │ │ │ │ ├── PViewRepo.scala │ │ │ │ ├── PViewRepoImpl.scala │ │ │ │ └── PViewRow.scala │ │ │ ├── pc │ │ │ │ ├── PcViewFields.scala │ │ │ │ ├── PcViewRepo.scala │ │ │ │ ├── PcViewRepoImpl.scala │ │ │ │ └── PcViewRow.scala │ │ │ ├── pch │ │ │ │ ├── PchViewFields.scala │ │ │ │ ├── PchViewRepo.scala │ │ │ │ ├── PchViewRepoImpl.scala │ │ │ │ └── PchViewRow.scala │ │ │ ├── pd │ │ │ │ ├── PdViewFields.scala │ │ │ │ ├── PdViewRepo.scala │ │ │ │ ├── PdViewRepoImpl.scala │ │ │ │ └── PdViewRow.scala │ │ │ ├── pdoc │ │ │ │ ├── PdocViewFields.scala │ │ │ │ ├── PdocViewRepo.scala │ │ │ │ ├── PdocViewRepoImpl.scala │ │ │ │ └── PdocViewRow.scala │ │ │ ├── pi │ │ │ │ ├── PiViewFields.scala │ │ │ │ ├── PiViewRepo.scala │ │ │ │ ├── PiViewRepoImpl.scala │ │ │ │ └── PiViewRow.scala │ │ │ ├── plph │ │ │ │ ├── PlphViewFields.scala │ │ │ │ ├── PlphViewRepo.scala │ │ │ │ ├── PlphViewRepoImpl.scala │ │ │ │ └── PlphViewRow.scala │ │ │ ├── pm │ │ │ │ ├── PmViewFields.scala │ │ │ │ ├── PmViewRepo.scala │ │ │ │ ├── PmViewRepoImpl.scala │ │ │ │ └── PmViewRow.scala │ │ │ ├── pmi │ │ │ │ ├── PmiViewFields.scala │ │ │ │ ├── PmiViewRepo.scala │ │ │ │ ├── PmiViewRepoImpl.scala │ │ │ │ └── PmiViewRow.scala │ │ │ ├── pmpdc │ │ │ │ ├── PmpdcViewFields.scala │ │ │ │ ├── PmpdcViewRepo.scala │ │ │ │ ├── PmpdcViewRepoImpl.scala │ │ │ │ └── PmpdcViewRow.scala │ │ │ ├── pp │ │ │ │ ├── PpViewFields.scala │ │ │ │ ├── PpViewRepo.scala │ │ │ │ ├── PpViewRepoImpl.scala │ │ │ │ └── PpViewRow.scala │ │ │ ├── ppp │ │ │ │ ├── PppViewFields.scala │ │ │ │ ├── PppViewRepo.scala │ │ │ │ ├── PppViewRepoImpl.scala │ │ │ │ └── PppViewRow.scala │ │ │ ├── pr │ │ │ │ ├── PrViewFields.scala │ │ │ │ ├── PrViewRepo.scala │ │ │ │ ├── PrViewRepoImpl.scala │ │ │ │ └── PrViewRow.scala │ │ │ ├── psc │ │ │ │ ├── PscViewFields.scala │ │ │ │ ├── PscViewRepo.scala │ │ │ │ ├── PscViewRepoImpl.scala │ │ │ │ └── PscViewRow.scala │ │ │ ├── sr │ │ │ │ ├── SrViewFields.scala │ │ │ │ ├── SrViewRepo.scala │ │ │ │ ├── SrViewRepoImpl.scala │ │ │ │ └── SrViewRow.scala │ │ │ ├── th │ │ │ │ ├── ThViewFields.scala │ │ │ │ ├── ThViewRepo.scala │ │ │ │ ├── ThViewRepoImpl.scala │ │ │ │ └── ThViewRow.scala │ │ │ ├── tha │ │ │ │ ├── ThaViewFields.scala │ │ │ │ ├── ThaViewRepo.scala │ │ │ │ ├── ThaViewRepoImpl.scala │ │ │ │ └── ThaViewRow.scala │ │ │ ├── um │ │ │ │ ├── UmViewFields.scala │ │ │ │ ├── UmViewRepo.scala │ │ │ │ ├── UmViewRepoImpl.scala │ │ │ │ └── UmViewRow.scala │ │ │ ├── w │ │ │ │ ├── WViewFields.scala │ │ │ │ ├── WViewRepo.scala │ │ │ │ ├── WViewRepoImpl.scala │ │ │ │ └── WViewRow.scala │ │ │ └── wr │ │ │ │ ├── WrViewFields.scala │ │ │ │ ├── WrViewRepo.scala │ │ │ │ ├── WrViewRepoImpl.scala │ │ │ │ └── WrViewRow.scala │ │ ├── production │ │ │ ├── billofmaterials │ │ │ │ ├── BillofmaterialsFields.scala │ │ │ │ ├── BillofmaterialsRepo.scala │ │ │ │ ├── BillofmaterialsRepoImpl.scala │ │ │ │ ├── BillofmaterialsRepoMock.scala │ │ │ │ ├── BillofmaterialsRow.scala │ │ │ │ └── BillofmaterialsRowUnsaved.scala │ │ │ ├── culture │ │ │ │ ├── CultureFields.scala │ │ │ │ ├── CultureId.scala │ │ │ │ ├── CultureRepo.scala │ │ │ │ ├── CultureRepoImpl.scala │ │ │ │ ├── CultureRepoMock.scala │ │ │ │ ├── CultureRow.scala │ │ │ │ └── CultureRowUnsaved.scala │ │ │ ├── document │ │ │ │ ├── DocumentFields.scala │ │ │ │ ├── DocumentId.scala │ │ │ │ ├── DocumentRepo.scala │ │ │ │ ├── DocumentRepoImpl.scala │ │ │ │ ├── DocumentRepoMock.scala │ │ │ │ ├── DocumentRow.scala │ │ │ │ └── DocumentRowUnsaved.scala │ │ │ ├── illustration │ │ │ │ ├── IllustrationFields.scala │ │ │ │ ├── IllustrationId.scala │ │ │ │ ├── IllustrationRepo.scala │ │ │ │ ├── IllustrationRepoImpl.scala │ │ │ │ ├── IllustrationRepoMock.scala │ │ │ │ ├── IllustrationRow.scala │ │ │ │ └── IllustrationRowUnsaved.scala │ │ │ ├── location │ │ │ │ ├── LocationFields.scala │ │ │ │ ├── LocationId.scala │ │ │ │ ├── LocationRepo.scala │ │ │ │ ├── LocationRepoImpl.scala │ │ │ │ ├── LocationRepoMock.scala │ │ │ │ ├── LocationRow.scala │ │ │ │ └── LocationRowUnsaved.scala │ │ │ ├── product │ │ │ │ ├── ProductFields.scala │ │ │ │ ├── ProductId.scala │ │ │ │ ├── ProductRepo.scala │ │ │ │ ├── ProductRepoImpl.scala │ │ │ │ ├── ProductRepoMock.scala │ │ │ │ ├── ProductRow.scala │ │ │ │ └── ProductRowUnsaved.scala │ │ │ ├── productcategory │ │ │ │ ├── ProductcategoryFields.scala │ │ │ │ ├── ProductcategoryId.scala │ │ │ │ ├── ProductcategoryRepo.scala │ │ │ │ ├── ProductcategoryRepoImpl.scala │ │ │ │ ├── ProductcategoryRepoMock.scala │ │ │ │ ├── ProductcategoryRow.scala │ │ │ │ └── ProductcategoryRowUnsaved.scala │ │ │ ├── productcosthistory │ │ │ │ ├── ProductcosthistoryFields.scala │ │ │ │ ├── ProductcosthistoryId.scala │ │ │ │ ├── ProductcosthistoryRepo.scala │ │ │ │ ├── ProductcosthistoryRepoImpl.scala │ │ │ │ ├── ProductcosthistoryRepoMock.scala │ │ │ │ ├── ProductcosthistoryRow.scala │ │ │ │ └── ProductcosthistoryRowUnsaved.scala │ │ │ ├── productdescription │ │ │ │ ├── ProductdescriptionFields.scala │ │ │ │ ├── ProductdescriptionId.scala │ │ │ │ ├── ProductdescriptionRepo.scala │ │ │ │ ├── ProductdescriptionRepoImpl.scala │ │ │ │ ├── ProductdescriptionRepoMock.scala │ │ │ │ ├── ProductdescriptionRow.scala │ │ │ │ └── ProductdescriptionRowUnsaved.scala │ │ │ ├── productdocument │ │ │ │ ├── ProductdocumentFields.scala │ │ │ │ ├── ProductdocumentId.scala │ │ │ │ ├── ProductdocumentRepo.scala │ │ │ │ ├── ProductdocumentRepoImpl.scala │ │ │ │ ├── ProductdocumentRepoMock.scala │ │ │ │ ├── ProductdocumentRow.scala │ │ │ │ └── ProductdocumentRowUnsaved.scala │ │ │ ├── productinventory │ │ │ │ ├── ProductinventoryFields.scala │ │ │ │ ├── ProductinventoryId.scala │ │ │ │ ├── ProductinventoryRepo.scala │ │ │ │ ├── ProductinventoryRepoImpl.scala │ │ │ │ ├── ProductinventoryRepoMock.scala │ │ │ │ ├── ProductinventoryRow.scala │ │ │ │ └── ProductinventoryRowUnsaved.scala │ │ │ ├── productlistpricehistory │ │ │ │ ├── ProductlistpricehistoryFields.scala │ │ │ │ ├── ProductlistpricehistoryId.scala │ │ │ │ ├── ProductlistpricehistoryRepo.scala │ │ │ │ ├── ProductlistpricehistoryRepoImpl.scala │ │ │ │ ├── ProductlistpricehistoryRepoMock.scala │ │ │ │ ├── ProductlistpricehistoryRow.scala │ │ │ │ └── ProductlistpricehistoryRowUnsaved.scala │ │ │ ├── productmodel │ │ │ │ ├── ProductmodelFields.scala │ │ │ │ ├── ProductmodelId.scala │ │ │ │ ├── ProductmodelRepo.scala │ │ │ │ ├── ProductmodelRepoImpl.scala │ │ │ │ ├── ProductmodelRepoMock.scala │ │ │ │ ├── ProductmodelRow.scala │ │ │ │ └── ProductmodelRowUnsaved.scala │ │ │ ├── productmodelillustration │ │ │ │ ├── ProductmodelillustrationFields.scala │ │ │ │ ├── ProductmodelillustrationId.scala │ │ │ │ ├── ProductmodelillustrationRepo.scala │ │ │ │ ├── ProductmodelillustrationRepoImpl.scala │ │ │ │ ├── ProductmodelillustrationRepoMock.scala │ │ │ │ ├── ProductmodelillustrationRow.scala │ │ │ │ └── ProductmodelillustrationRowUnsaved.scala │ │ │ ├── productmodelproductdescriptionculture │ │ │ │ ├── ProductmodelproductdescriptioncultureFields.scala │ │ │ │ ├── ProductmodelproductdescriptioncultureId.scala │ │ │ │ ├── ProductmodelproductdescriptioncultureRepo.scala │ │ │ │ ├── ProductmodelproductdescriptioncultureRepoImpl.scala │ │ │ │ ├── ProductmodelproductdescriptioncultureRepoMock.scala │ │ │ │ ├── ProductmodelproductdescriptioncultureRow.scala │ │ │ │ └── ProductmodelproductdescriptioncultureRowUnsaved.scala │ │ │ ├── productphoto │ │ │ │ ├── ProductphotoFields.scala │ │ │ │ ├── ProductphotoId.scala │ │ │ │ ├── ProductphotoRepo.scala │ │ │ │ ├── ProductphotoRepoImpl.scala │ │ │ │ ├── ProductphotoRepoMock.scala │ │ │ │ ├── ProductphotoRow.scala │ │ │ │ └── ProductphotoRowUnsaved.scala │ │ │ ├── productproductphoto │ │ │ │ ├── ProductproductphotoFields.scala │ │ │ │ ├── ProductproductphotoId.scala │ │ │ │ ├── ProductproductphotoRepo.scala │ │ │ │ ├── ProductproductphotoRepoImpl.scala │ │ │ │ ├── ProductproductphotoRepoMock.scala │ │ │ │ ├── ProductproductphotoRow.scala │ │ │ │ └── ProductproductphotoRowUnsaved.scala │ │ │ ├── productreview │ │ │ │ ├── ProductreviewFields.scala │ │ │ │ ├── ProductreviewId.scala │ │ │ │ ├── ProductreviewRepo.scala │ │ │ │ ├── ProductreviewRepoImpl.scala │ │ │ │ ├── ProductreviewRepoMock.scala │ │ │ │ ├── ProductreviewRow.scala │ │ │ │ └── ProductreviewRowUnsaved.scala │ │ │ ├── productsubcategory │ │ │ │ ├── ProductsubcategoryFields.scala │ │ │ │ ├── ProductsubcategoryId.scala │ │ │ │ ├── ProductsubcategoryRepo.scala │ │ │ │ ├── ProductsubcategoryRepoImpl.scala │ │ │ │ ├── ProductsubcategoryRepoMock.scala │ │ │ │ ├── ProductsubcategoryRow.scala │ │ │ │ └── ProductsubcategoryRowUnsaved.scala │ │ │ ├── scrapreason │ │ │ │ ├── ScrapreasonFields.scala │ │ │ │ ├── ScrapreasonId.scala │ │ │ │ ├── ScrapreasonRepo.scala │ │ │ │ ├── ScrapreasonRepoImpl.scala │ │ │ │ ├── ScrapreasonRepoMock.scala │ │ │ │ ├── ScrapreasonRow.scala │ │ │ │ └── ScrapreasonRowUnsaved.scala │ │ │ ├── transactionhistory │ │ │ │ ├── TransactionhistoryFields.scala │ │ │ │ ├── TransactionhistoryId.scala │ │ │ │ ├── TransactionhistoryRepo.scala │ │ │ │ ├── TransactionhistoryRepoImpl.scala │ │ │ │ ├── TransactionhistoryRepoMock.scala │ │ │ │ ├── TransactionhistoryRow.scala │ │ │ │ └── TransactionhistoryRowUnsaved.scala │ │ │ ├── transactionhistoryarchive │ │ │ │ ├── TransactionhistoryarchiveFields.scala │ │ │ │ ├── TransactionhistoryarchiveId.scala │ │ │ │ ├── TransactionhistoryarchiveRepo.scala │ │ │ │ ├── TransactionhistoryarchiveRepoImpl.scala │ │ │ │ ├── TransactionhistoryarchiveRepoMock.scala │ │ │ │ ├── TransactionhistoryarchiveRow.scala │ │ │ │ └── TransactionhistoryarchiveRowUnsaved.scala │ │ │ ├── unitmeasure │ │ │ │ ├── UnitmeasureFields.scala │ │ │ │ ├── UnitmeasureId.scala │ │ │ │ ├── UnitmeasureRepo.scala │ │ │ │ ├── UnitmeasureRepoImpl.scala │ │ │ │ ├── UnitmeasureRepoMock.scala │ │ │ │ ├── UnitmeasureRow.scala │ │ │ │ └── UnitmeasureRowUnsaved.scala │ │ │ ├── vproductanddescription │ │ │ │ ├── VproductanddescriptionMVFields.scala │ │ │ │ ├── VproductanddescriptionMVRepo.scala │ │ │ │ ├── VproductanddescriptionMVRepoImpl.scala │ │ │ │ └── VproductanddescriptionMVRow.scala │ │ │ ├── vproductmodelcatalogdescription │ │ │ │ ├── VproductmodelcatalogdescriptionViewFields.scala │ │ │ │ ├── VproductmodelcatalogdescriptionViewRepo.scala │ │ │ │ ├── VproductmodelcatalogdescriptionViewRepoImpl.scala │ │ │ │ └── VproductmodelcatalogdescriptionViewRow.scala │ │ │ ├── vproductmodelinstructions │ │ │ │ ├── VproductmodelinstructionsViewFields.scala │ │ │ │ ├── VproductmodelinstructionsViewRepo.scala │ │ │ │ ├── VproductmodelinstructionsViewRepoImpl.scala │ │ │ │ └── VproductmodelinstructionsViewRow.scala │ │ │ ├── workorder │ │ │ │ ├── WorkorderFields.scala │ │ │ │ ├── WorkorderId.scala │ │ │ │ ├── WorkorderRepo.scala │ │ │ │ ├── WorkorderRepoImpl.scala │ │ │ │ ├── WorkorderRepoMock.scala │ │ │ │ ├── WorkorderRow.scala │ │ │ │ └── WorkorderRowUnsaved.scala │ │ │ └── workorderrouting │ │ │ │ ├── WorkorderroutingFields.scala │ │ │ │ ├── WorkorderroutingId.scala │ │ │ │ ├── WorkorderroutingRepo.scala │ │ │ │ ├── WorkorderroutingRepoImpl.scala │ │ │ │ ├── WorkorderroutingRepoMock.scala │ │ │ │ ├── WorkorderroutingRow.scala │ │ │ │ └── WorkorderroutingRowUnsaved.scala │ │ ├── pu │ │ │ ├── pod │ │ │ │ ├── PodViewFields.scala │ │ │ │ ├── PodViewRepo.scala │ │ │ │ ├── PodViewRepoImpl.scala │ │ │ │ └── PodViewRow.scala │ │ │ ├── poh │ │ │ │ ├── PohViewFields.scala │ │ │ │ ├── PohViewRepo.scala │ │ │ │ ├── PohViewRepoImpl.scala │ │ │ │ └── PohViewRow.scala │ │ │ ├── pv │ │ │ │ ├── PvViewFields.scala │ │ │ │ ├── PvViewRepo.scala │ │ │ │ ├── PvViewRepoImpl.scala │ │ │ │ └── PvViewRow.scala │ │ │ ├── sm │ │ │ │ ├── SmViewFields.scala │ │ │ │ ├── SmViewRepo.scala │ │ │ │ ├── SmViewRepoImpl.scala │ │ │ │ └── SmViewRow.scala │ │ │ └── v │ │ │ │ ├── VViewFields.scala │ │ │ │ ├── VViewRepo.scala │ │ │ │ ├── VViewRepoImpl.scala │ │ │ │ └── VViewRow.scala │ │ ├── public │ │ │ ├── AccountNumber.scala │ │ │ ├── Flag.scala │ │ │ ├── Mydomain.scala │ │ │ ├── Myenum.scala │ │ │ ├── Name.scala │ │ │ ├── NameStyle.scala │ │ │ ├── OrderNumber.scala │ │ │ ├── Phone.scala │ │ │ ├── ShortText.scala │ │ │ ├── flaff │ │ │ │ ├── FlaffFields.scala │ │ │ │ ├── FlaffId.scala │ │ │ │ ├── FlaffRepo.scala │ │ │ │ ├── FlaffRepoImpl.scala │ │ │ │ ├── FlaffRepoMock.scala │ │ │ │ └── FlaffRow.scala │ │ │ ├── identity_test │ │ │ │ ├── IdentityTestFields.scala │ │ │ │ ├── IdentityTestId.scala │ │ │ │ ├── IdentityTestRepo.scala │ │ │ │ ├── IdentityTestRepoImpl.scala │ │ │ │ ├── IdentityTestRepoMock.scala │ │ │ │ ├── IdentityTestRow.scala │ │ │ │ └── IdentityTestRowUnsaved.scala │ │ │ ├── issue142 │ │ │ │ ├── Issue142Fields.scala │ │ │ │ ├── Issue142Id.scala │ │ │ │ ├── Issue142Repo.scala │ │ │ │ ├── Issue142RepoImpl.scala │ │ │ │ ├── Issue142RepoMock.scala │ │ │ │ └── Issue142Row.scala │ │ │ ├── issue142_2 │ │ │ │ ├── Issue1422Fields.scala │ │ │ │ ├── Issue1422Repo.scala │ │ │ │ ├── Issue1422RepoImpl.scala │ │ │ │ ├── Issue1422RepoMock.scala │ │ │ │ └── Issue1422Row.scala │ │ │ ├── only_pk_columns │ │ │ │ ├── OnlyPkColumnsFields.scala │ │ │ │ ├── OnlyPkColumnsId.scala │ │ │ │ ├── OnlyPkColumnsRepo.scala │ │ │ │ ├── OnlyPkColumnsRepoImpl.scala │ │ │ │ ├── OnlyPkColumnsRepoMock.scala │ │ │ │ └── OnlyPkColumnsRow.scala │ │ │ ├── pgtest │ │ │ │ ├── PgtestFields.scala │ │ │ │ ├── PgtestRepo.scala │ │ │ │ ├── PgtestRepoImpl.scala │ │ │ │ └── PgtestRow.scala │ │ │ ├── pgtestnull │ │ │ │ ├── PgtestnullFields.scala │ │ │ │ ├── PgtestnullRepo.scala │ │ │ │ ├── PgtestnullRepoImpl.scala │ │ │ │ └── PgtestnullRow.scala │ │ │ ├── table_with_generated_columns │ │ │ │ ├── TableWithGeneratedColumnsFields.scala │ │ │ │ ├── TableWithGeneratedColumnsId.scala │ │ │ │ ├── TableWithGeneratedColumnsRepo.scala │ │ │ │ ├── TableWithGeneratedColumnsRepoImpl.scala │ │ │ │ ├── TableWithGeneratedColumnsRepoMock.scala │ │ │ │ ├── TableWithGeneratedColumnsRow.scala │ │ │ │ └── TableWithGeneratedColumnsRowUnsaved.scala │ │ │ ├── test_organisasjon │ │ │ │ ├── TestOrganisasjonFields.scala │ │ │ │ ├── TestOrganisasjonId.scala │ │ │ │ ├── TestOrganisasjonRepo.scala │ │ │ │ ├── TestOrganisasjonRepoImpl.scala │ │ │ │ ├── TestOrganisasjonRepoMock.scala │ │ │ │ └── TestOrganisasjonRow.scala │ │ │ ├── test_sak_soknadsalternativ │ │ │ │ ├── TestSakSoknadsalternativFields.scala │ │ │ │ ├── TestSakSoknadsalternativId.scala │ │ │ │ ├── TestSakSoknadsalternativRepo.scala │ │ │ │ ├── TestSakSoknadsalternativRepoImpl.scala │ │ │ │ ├── TestSakSoknadsalternativRepoMock.scala │ │ │ │ └── TestSakSoknadsalternativRow.scala │ │ │ ├── test_utdanningstilbud │ │ │ │ ├── TestUtdanningstilbudFields.scala │ │ │ │ ├── TestUtdanningstilbudId.scala │ │ │ │ ├── TestUtdanningstilbudRepo.scala │ │ │ │ ├── TestUtdanningstilbudRepoImpl.scala │ │ │ │ ├── TestUtdanningstilbudRepoMock.scala │ │ │ │ └── TestUtdanningstilbudRow.scala │ │ │ ├── title │ │ │ │ ├── TitleFields.scala │ │ │ │ ├── TitleId.scala │ │ │ │ ├── TitleRepo.scala │ │ │ │ ├── TitleRepoImpl.scala │ │ │ │ ├── TitleRepoMock.scala │ │ │ │ └── TitleRow.scala │ │ │ ├── title_domain │ │ │ │ ├── TitleDomainFields.scala │ │ │ │ ├── TitleDomainId.scala │ │ │ │ ├── TitleDomainRepo.scala │ │ │ │ ├── TitleDomainRepoImpl.scala │ │ │ │ ├── TitleDomainRepoMock.scala │ │ │ │ └── TitleDomainRow.scala │ │ │ ├── titledperson │ │ │ │ ├── TitledpersonFields.scala │ │ │ │ ├── TitledpersonRepo.scala │ │ │ │ ├── TitledpersonRepoImpl.scala │ │ │ │ └── TitledpersonRow.scala │ │ │ └── users │ │ │ │ ├── UsersFields.scala │ │ │ │ ├── UsersId.scala │ │ │ │ ├── UsersRepo.scala │ │ │ │ ├── UsersRepoImpl.scala │ │ │ │ ├── UsersRepoMock.scala │ │ │ │ ├── UsersRow.scala │ │ │ │ └── UsersRowUnsaved.scala │ │ ├── purchasing │ │ │ ├── productvendor │ │ │ │ ├── ProductvendorFields.scala │ │ │ │ ├── ProductvendorId.scala │ │ │ │ ├── ProductvendorRepo.scala │ │ │ │ ├── ProductvendorRepoImpl.scala │ │ │ │ ├── ProductvendorRepoMock.scala │ │ │ │ ├── ProductvendorRow.scala │ │ │ │ └── ProductvendorRowUnsaved.scala │ │ │ ├── purchaseorderdetail │ │ │ │ ├── PurchaseorderdetailFields.scala │ │ │ │ ├── PurchaseorderdetailId.scala │ │ │ │ ├── PurchaseorderdetailRepo.scala │ │ │ │ ├── PurchaseorderdetailRepoImpl.scala │ │ │ │ ├── PurchaseorderdetailRow.scala │ │ │ │ └── PurchaseorderdetailRowUnsaved.scala │ │ │ ├── purchaseorderheader │ │ │ │ ├── PurchaseorderheaderFields.scala │ │ │ │ ├── PurchaseorderheaderId.scala │ │ │ │ ├── PurchaseorderheaderRepo.scala │ │ │ │ ├── PurchaseorderheaderRepoImpl.scala │ │ │ │ ├── PurchaseorderheaderRepoMock.scala │ │ │ │ ├── PurchaseorderheaderRow.scala │ │ │ │ └── PurchaseorderheaderRowUnsaved.scala │ │ │ ├── shipmethod │ │ │ │ ├── ShipmethodFields.scala │ │ │ │ ├── ShipmethodId.scala │ │ │ │ ├── ShipmethodRepo.scala │ │ │ │ ├── ShipmethodRepoImpl.scala │ │ │ │ ├── ShipmethodRepoMock.scala │ │ │ │ ├── ShipmethodRow.scala │ │ │ │ └── ShipmethodRowUnsaved.scala │ │ │ ├── vendor │ │ │ │ ├── VendorFields.scala │ │ │ │ ├── VendorRepo.scala │ │ │ │ ├── VendorRepoImpl.scala │ │ │ │ ├── VendorRepoMock.scala │ │ │ │ ├── VendorRow.scala │ │ │ │ └── VendorRowUnsaved.scala │ │ │ ├── vvendorwithaddresses │ │ │ │ ├── VvendorwithaddressesViewFields.scala │ │ │ │ ├── VvendorwithaddressesViewRepo.scala │ │ │ │ ├── VvendorwithaddressesViewRepoImpl.scala │ │ │ │ └── VvendorwithaddressesViewRow.scala │ │ │ └── vvendorwithcontacts │ │ │ │ ├── VvendorwithcontactsViewFields.scala │ │ │ │ ├── VvendorwithcontactsViewRepo.scala │ │ │ │ ├── VvendorwithcontactsViewRepoImpl.scala │ │ │ │ └── VvendorwithcontactsViewRow.scala │ │ ├── sa │ │ │ ├── c │ │ │ │ ├── CViewFields.scala │ │ │ │ ├── CViewRepo.scala │ │ │ │ ├── CViewRepoImpl.scala │ │ │ │ └── CViewRow.scala │ │ │ ├── cc │ │ │ │ ├── CcViewFields.scala │ │ │ │ ├── CcViewRepo.scala │ │ │ │ ├── CcViewRepoImpl.scala │ │ │ │ └── CcViewRow.scala │ │ │ ├── cr │ │ │ │ ├── CrViewFields.scala │ │ │ │ ├── CrViewRepo.scala │ │ │ │ ├── CrViewRepoImpl.scala │ │ │ │ └── CrViewRow.scala │ │ │ ├── crc │ │ │ │ ├── CrcViewFields.scala │ │ │ │ ├── CrcViewRepo.scala │ │ │ │ ├── CrcViewRepoImpl.scala │ │ │ │ └── CrcViewRow.scala │ │ │ ├── cu │ │ │ │ ├── CuViewFields.scala │ │ │ │ ├── CuViewRepo.scala │ │ │ │ ├── CuViewRepoImpl.scala │ │ │ │ └── CuViewRow.scala │ │ │ ├── pcc │ │ │ │ ├── PccViewFields.scala │ │ │ │ ├── PccViewRepo.scala │ │ │ │ ├── PccViewRepoImpl.scala │ │ │ │ └── PccViewRow.scala │ │ │ ├── s │ │ │ │ ├── SViewFields.scala │ │ │ │ ├── SViewRepo.scala │ │ │ │ ├── SViewRepoImpl.scala │ │ │ │ └── SViewRow.scala │ │ │ ├── sci │ │ │ │ ├── SciViewFields.scala │ │ │ │ ├── SciViewRepo.scala │ │ │ │ ├── SciViewRepoImpl.scala │ │ │ │ └── SciViewRow.scala │ │ │ ├── so │ │ │ │ ├── SoViewFields.scala │ │ │ │ ├── SoViewRepo.scala │ │ │ │ ├── SoViewRepoImpl.scala │ │ │ │ └── SoViewRow.scala │ │ │ ├── sod │ │ │ │ ├── SodViewFields.scala │ │ │ │ ├── SodViewRepo.scala │ │ │ │ ├── SodViewRepoImpl.scala │ │ │ │ └── SodViewRow.scala │ │ │ ├── soh │ │ │ │ ├── SohViewFields.scala │ │ │ │ ├── SohViewRepo.scala │ │ │ │ ├── SohViewRepoImpl.scala │ │ │ │ └── SohViewRow.scala │ │ │ ├── sohsr │ │ │ │ ├── SohsrViewFields.scala │ │ │ │ ├── SohsrViewRepo.scala │ │ │ │ ├── SohsrViewRepoImpl.scala │ │ │ │ └── SohsrViewRow.scala │ │ │ ├── sop │ │ │ │ ├── SopViewFields.scala │ │ │ │ ├── SopViewRepo.scala │ │ │ │ ├── SopViewRepoImpl.scala │ │ │ │ └── SopViewRow.scala │ │ │ ├── sp │ │ │ │ ├── SpViewFields.scala │ │ │ │ ├── SpViewRepo.scala │ │ │ │ ├── SpViewRepoImpl.scala │ │ │ │ └── SpViewRow.scala │ │ │ ├── spqh │ │ │ │ ├── SpqhViewFields.scala │ │ │ │ ├── SpqhViewRepo.scala │ │ │ │ ├── SpqhViewRepoImpl.scala │ │ │ │ └── SpqhViewRow.scala │ │ │ ├── sr │ │ │ │ ├── SrViewFields.scala │ │ │ │ ├── SrViewRepo.scala │ │ │ │ ├── SrViewRepoImpl.scala │ │ │ │ └── SrViewRow.scala │ │ │ ├── st │ │ │ │ ├── StViewFields.scala │ │ │ │ ├── StViewRepo.scala │ │ │ │ ├── StViewRepoImpl.scala │ │ │ │ └── StViewRow.scala │ │ │ ├── sth │ │ │ │ ├── SthViewFields.scala │ │ │ │ ├── SthViewRepo.scala │ │ │ │ ├── SthViewRepoImpl.scala │ │ │ │ └── SthViewRow.scala │ │ │ └── tr │ │ │ │ ├── TrViewFields.scala │ │ │ │ ├── TrViewRepo.scala │ │ │ │ ├── TrViewRepoImpl.scala │ │ │ │ └── TrViewRow.scala │ │ ├── sales │ │ │ ├── countryregioncurrency │ │ │ │ ├── CountryregioncurrencyFields.scala │ │ │ │ ├── CountryregioncurrencyId.scala │ │ │ │ ├── CountryregioncurrencyRepo.scala │ │ │ │ ├── CountryregioncurrencyRepoImpl.scala │ │ │ │ ├── CountryregioncurrencyRepoMock.scala │ │ │ │ ├── CountryregioncurrencyRow.scala │ │ │ │ └── CountryregioncurrencyRowUnsaved.scala │ │ │ ├── creditcard │ │ │ │ ├── CreditcardFields.scala │ │ │ │ ├── CreditcardRepo.scala │ │ │ │ ├── CreditcardRepoImpl.scala │ │ │ │ ├── CreditcardRepoMock.scala │ │ │ │ ├── CreditcardRow.scala │ │ │ │ └── CreditcardRowUnsaved.scala │ │ │ ├── currency │ │ │ │ ├── CurrencyFields.scala │ │ │ │ ├── CurrencyId.scala │ │ │ │ ├── CurrencyRepo.scala │ │ │ │ ├── CurrencyRepoImpl.scala │ │ │ │ ├── CurrencyRepoMock.scala │ │ │ │ ├── CurrencyRow.scala │ │ │ │ └── CurrencyRowUnsaved.scala │ │ │ ├── currencyrate │ │ │ │ ├── CurrencyrateFields.scala │ │ │ │ ├── CurrencyrateId.scala │ │ │ │ ├── CurrencyrateRepo.scala │ │ │ │ ├── CurrencyrateRepoImpl.scala │ │ │ │ ├── CurrencyrateRepoMock.scala │ │ │ │ ├── CurrencyrateRow.scala │ │ │ │ └── CurrencyrateRowUnsaved.scala │ │ │ ├── customer │ │ │ │ ├── CustomerFields.scala │ │ │ │ ├── CustomerId.scala │ │ │ │ ├── CustomerRepo.scala │ │ │ │ ├── CustomerRepoImpl.scala │ │ │ │ ├── CustomerRepoMock.scala │ │ │ │ ├── CustomerRow.scala │ │ │ │ └── CustomerRowUnsaved.scala │ │ │ ├── personcreditcard │ │ │ │ ├── PersoncreditcardFields.scala │ │ │ │ ├── PersoncreditcardId.scala │ │ │ │ ├── PersoncreditcardRepo.scala │ │ │ │ ├── PersoncreditcardRepoImpl.scala │ │ │ │ ├── PersoncreditcardRepoMock.scala │ │ │ │ ├── PersoncreditcardRow.scala │ │ │ │ └── PersoncreditcardRowUnsaved.scala │ │ │ ├── salesorderdetail │ │ │ │ ├── SalesorderdetailFields.scala │ │ │ │ ├── SalesorderdetailId.scala │ │ │ │ ├── SalesorderdetailRepo.scala │ │ │ │ ├── SalesorderdetailRepoImpl.scala │ │ │ │ ├── SalesorderdetailRepoMock.scala │ │ │ │ ├── SalesorderdetailRow.scala │ │ │ │ └── SalesorderdetailRowUnsaved.scala │ │ │ ├── salesorderheader │ │ │ │ ├── SalesorderheaderFields.scala │ │ │ │ ├── SalesorderheaderId.scala │ │ │ │ ├── SalesorderheaderRepo.scala │ │ │ │ ├── SalesorderheaderRepoImpl.scala │ │ │ │ ├── SalesorderheaderRepoMock.scala │ │ │ │ ├── SalesorderheaderRow.scala │ │ │ │ └── SalesorderheaderRowUnsaved.scala │ │ │ ├── salesorderheadersalesreason │ │ │ │ ├── SalesorderheadersalesreasonFields.scala │ │ │ │ ├── SalesorderheadersalesreasonId.scala │ │ │ │ ├── SalesorderheadersalesreasonRepo.scala │ │ │ │ ├── SalesorderheadersalesreasonRepoImpl.scala │ │ │ │ ├── SalesorderheadersalesreasonRepoMock.scala │ │ │ │ ├── SalesorderheadersalesreasonRow.scala │ │ │ │ └── SalesorderheadersalesreasonRowUnsaved.scala │ │ │ ├── salesperson │ │ │ │ ├── SalespersonFields.scala │ │ │ │ ├── SalespersonRepo.scala │ │ │ │ ├── SalespersonRepoImpl.scala │ │ │ │ ├── SalespersonRepoMock.scala │ │ │ │ ├── SalespersonRow.scala │ │ │ │ └── SalespersonRowUnsaved.scala │ │ │ ├── salespersonquotahistory │ │ │ │ ├── SalespersonquotahistoryFields.scala │ │ │ │ ├── SalespersonquotahistoryId.scala │ │ │ │ ├── SalespersonquotahistoryRepo.scala │ │ │ │ ├── SalespersonquotahistoryRepoImpl.scala │ │ │ │ ├── SalespersonquotahistoryRepoMock.scala │ │ │ │ ├── SalespersonquotahistoryRow.scala │ │ │ │ └── SalespersonquotahistoryRowUnsaved.scala │ │ │ ├── salesreason │ │ │ │ ├── SalesreasonFields.scala │ │ │ │ ├── SalesreasonId.scala │ │ │ │ ├── SalesreasonRepo.scala │ │ │ │ ├── SalesreasonRepoImpl.scala │ │ │ │ ├── SalesreasonRepoMock.scala │ │ │ │ ├── SalesreasonRow.scala │ │ │ │ └── SalesreasonRowUnsaved.scala │ │ │ ├── salestaxrate │ │ │ │ ├── SalestaxrateFields.scala │ │ │ │ ├── SalestaxrateId.scala │ │ │ │ ├── SalestaxrateRepo.scala │ │ │ │ ├── SalestaxrateRepoImpl.scala │ │ │ │ ├── SalestaxrateRepoMock.scala │ │ │ │ ├── SalestaxrateRow.scala │ │ │ │ └── SalestaxrateRowUnsaved.scala │ │ │ ├── salesterritory │ │ │ │ ├── SalesterritoryFields.scala │ │ │ │ ├── SalesterritoryId.scala │ │ │ │ ├── SalesterritoryRepo.scala │ │ │ │ ├── SalesterritoryRepoImpl.scala │ │ │ │ ├── SalesterritoryRepoMock.scala │ │ │ │ ├── SalesterritoryRow.scala │ │ │ │ └── SalesterritoryRowUnsaved.scala │ │ │ ├── salesterritoryhistory │ │ │ │ ├── SalesterritoryhistoryFields.scala │ │ │ │ ├── SalesterritoryhistoryId.scala │ │ │ │ ├── SalesterritoryhistoryRepo.scala │ │ │ │ ├── SalesterritoryhistoryRepoImpl.scala │ │ │ │ ├── SalesterritoryhistoryRepoMock.scala │ │ │ │ ├── SalesterritoryhistoryRow.scala │ │ │ │ └── SalesterritoryhistoryRowUnsaved.scala │ │ │ ├── shoppingcartitem │ │ │ │ ├── ShoppingcartitemFields.scala │ │ │ │ ├── ShoppingcartitemId.scala │ │ │ │ ├── ShoppingcartitemRepo.scala │ │ │ │ ├── ShoppingcartitemRepoImpl.scala │ │ │ │ ├── ShoppingcartitemRepoMock.scala │ │ │ │ ├── ShoppingcartitemRow.scala │ │ │ │ └── ShoppingcartitemRowUnsaved.scala │ │ │ ├── specialoffer │ │ │ │ ├── SpecialofferFields.scala │ │ │ │ ├── SpecialofferId.scala │ │ │ │ ├── SpecialofferRepo.scala │ │ │ │ ├── SpecialofferRepoImpl.scala │ │ │ │ ├── SpecialofferRepoMock.scala │ │ │ │ ├── SpecialofferRow.scala │ │ │ │ └── SpecialofferRowUnsaved.scala │ │ │ ├── specialofferproduct │ │ │ │ ├── SpecialofferproductFields.scala │ │ │ │ ├── SpecialofferproductId.scala │ │ │ │ ├── SpecialofferproductRepo.scala │ │ │ │ ├── SpecialofferproductRepoImpl.scala │ │ │ │ ├── SpecialofferproductRepoMock.scala │ │ │ │ ├── SpecialofferproductRow.scala │ │ │ │ └── SpecialofferproductRowUnsaved.scala │ │ │ ├── store │ │ │ │ ├── StoreFields.scala │ │ │ │ ├── StoreRepo.scala │ │ │ │ ├── StoreRepoImpl.scala │ │ │ │ ├── StoreRepoMock.scala │ │ │ │ ├── StoreRow.scala │ │ │ │ └── StoreRowUnsaved.scala │ │ │ ├── vindividualcustomer │ │ │ │ ├── VindividualcustomerViewFields.scala │ │ │ │ ├── VindividualcustomerViewRepo.scala │ │ │ │ ├── VindividualcustomerViewRepoImpl.scala │ │ │ │ └── VindividualcustomerViewRow.scala │ │ │ ├── vpersondemographics │ │ │ │ ├── VpersondemographicsViewFields.scala │ │ │ │ ├── VpersondemographicsViewRepo.scala │ │ │ │ ├── VpersondemographicsViewRepoImpl.scala │ │ │ │ └── VpersondemographicsViewRow.scala │ │ │ ├── vsalesperson │ │ │ │ ├── VsalespersonViewFields.scala │ │ │ │ ├── VsalespersonViewRepo.scala │ │ │ │ ├── VsalespersonViewRepoImpl.scala │ │ │ │ └── VsalespersonViewRow.scala │ │ │ ├── vsalespersonsalesbyfiscalyears │ │ │ │ ├── VsalespersonsalesbyfiscalyearsViewFields.scala │ │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepo.scala │ │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepoImpl.scala │ │ │ │ └── VsalespersonsalesbyfiscalyearsViewRow.scala │ │ │ ├── vsalespersonsalesbyfiscalyearsdata │ │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewFields.scala │ │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepo.scala │ │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepoImpl.scala │ │ │ │ └── VsalespersonsalesbyfiscalyearsdataViewRow.scala │ │ │ ├── vstorewithaddresses │ │ │ │ ├── VstorewithaddressesViewFields.scala │ │ │ │ ├── VstorewithaddressesViewRepo.scala │ │ │ │ ├── VstorewithaddressesViewRepoImpl.scala │ │ │ │ └── VstorewithaddressesViewRow.scala │ │ │ ├── vstorewithcontacts │ │ │ │ ├── VstorewithcontactsViewFields.scala │ │ │ │ ├── VstorewithcontactsViewRepo.scala │ │ │ │ ├── VstorewithcontactsViewRepoImpl.scala │ │ │ │ └── VstorewithcontactsViewRow.scala │ │ │ └── vstorewithdemographics │ │ │ │ ├── VstorewithdemographicsViewFields.scala │ │ │ │ ├── VstorewithdemographicsViewRepo.scala │ │ │ │ ├── VstorewithdemographicsViewRepoImpl.scala │ │ │ │ └── VstorewithdemographicsViewRow.scala │ │ ├── streamingInsert.scala │ │ ├── update_person │ │ │ ├── UpdatePersonSqlRepo.scala │ │ │ └── UpdatePersonSqlRepoImpl.scala │ │ └── update_person_returning │ │ │ ├── UpdatePersonReturningSqlRepo.scala │ │ │ ├── UpdatePersonReturningSqlRepoImpl.scala │ │ │ └── UpdatePersonReturningSqlRow.scala │ └── anorm │ │ └── adventureworks │ │ └── ExecuteReturningSyntax.scala └── src │ └── scala │ └── adventureworks │ ├── ArrayTest.scala │ ├── DSLTest.scala │ ├── DomainInsert.scala │ ├── IdentityTest.scala │ ├── JsonEquals.scala │ ├── OpenEnumTest.scala │ ├── RecordTest.scala │ ├── Reverse.scala │ ├── SeekDbTest.scala │ ├── SnapshotTest.scala │ ├── UpsertTwiceTest.scala │ ├── humanresources │ ├── department │ │ └── DepartmentTest.scala │ └── employee │ │ └── EmployeeTest.scala │ ├── person │ ├── MultiRepoTest.scala │ └── businessentityaddress │ │ └── BusinessentityaddressTest.scala │ ├── person_detail │ └── PersonDetailTest.scala │ ├── production │ └── product │ │ ├── CompositeIdsTest.scala │ │ ├── ProductTest.scala │ │ ├── RepoTest.scala │ │ └── SeekTest.scala │ ├── publicc │ └── UsersRepoTest.scala │ ├── update_person_returning │ └── UpdatePersonReturningSqlRepoTest.scala │ ├── userdefined │ ├── CustomCreditcardId.scala │ └── FirstName.scala │ └── withConnection.scala ├── typo-tester-doobie ├── generated-and-checked-in-2.13 │ └── adventureworks │ │ ├── TestDomainInsert.scala │ │ ├── TestInsert.scala │ │ ├── customtypes │ │ ├── Defaulted.scala │ │ ├── TypoBox.scala │ │ ├── TypoBytea.scala │ │ ├── TypoCircle.scala │ │ ├── TypoHStore.scala │ │ ├── TypoInet.scala │ │ ├── TypoInstant.scala │ │ ├── TypoInt2Vector.scala │ │ ├── TypoInterval.scala │ │ ├── TypoJson.scala │ │ ├── TypoJsonb.scala │ │ ├── TypoLine.scala │ │ ├── TypoLineSegment.scala │ │ ├── TypoLocalDate.scala │ │ ├── TypoLocalDateTime.scala │ │ ├── TypoLocalTime.scala │ │ ├── TypoMoney.scala │ │ ├── TypoOffsetTime.scala │ │ ├── TypoPath.scala │ │ ├── TypoPoint.scala │ │ ├── TypoPolygon.scala │ │ ├── TypoRecord.scala │ │ ├── TypoShort.scala │ │ ├── TypoUUID.scala │ │ ├── TypoUnknownCitext.scala │ │ ├── TypoVector.scala │ │ └── TypoXml.scala │ │ ├── frontpage │ │ └── Email.scala │ │ ├── hr │ │ ├── d │ │ │ ├── DViewFields.scala │ │ │ ├── DViewRepo.scala │ │ │ ├── DViewRepoImpl.scala │ │ │ └── DViewRow.scala │ │ ├── e │ │ │ ├── EViewFields.scala │ │ │ ├── EViewRepo.scala │ │ │ ├── EViewRepoImpl.scala │ │ │ └── EViewRow.scala │ │ ├── edh │ │ │ ├── EdhViewFields.scala │ │ │ ├── EdhViewRepo.scala │ │ │ ├── EdhViewRepoImpl.scala │ │ │ └── EdhViewRow.scala │ │ ├── eph │ │ │ ├── EphViewFields.scala │ │ │ ├── EphViewRepo.scala │ │ │ ├── EphViewRepoImpl.scala │ │ │ └── EphViewRow.scala │ │ ├── jc │ │ │ ├── JcViewFields.scala │ │ │ ├── JcViewRepo.scala │ │ │ ├── JcViewRepoImpl.scala │ │ │ └── JcViewRow.scala │ │ └── s │ │ │ ├── SViewFields.scala │ │ │ ├── SViewRepo.scala │ │ │ ├── SViewRepoImpl.scala │ │ │ └── SViewRow.scala │ │ ├── humanresources │ │ ├── department │ │ │ ├── DepartmentFields.scala │ │ │ ├── DepartmentId.scala │ │ │ ├── DepartmentRepo.scala │ │ │ ├── DepartmentRepoImpl.scala │ │ │ ├── DepartmentRepoMock.scala │ │ │ ├── DepartmentRow.scala │ │ │ └── DepartmentRowUnsaved.scala │ │ ├── employee │ │ │ ├── EmployeeFields.scala │ │ │ ├── EmployeeRepo.scala │ │ │ ├── EmployeeRepoImpl.scala │ │ │ ├── EmployeeRepoMock.scala │ │ │ ├── EmployeeRow.scala │ │ │ └── EmployeeRowUnsaved.scala │ │ ├── employeedepartmenthistory │ │ │ ├── EmployeedepartmenthistoryFields.scala │ │ │ ├── EmployeedepartmenthistoryId.scala │ │ │ ├── EmployeedepartmenthistoryRepo.scala │ │ │ ├── EmployeedepartmenthistoryRepoImpl.scala │ │ │ ├── EmployeedepartmenthistoryRepoMock.scala │ │ │ ├── EmployeedepartmenthistoryRow.scala │ │ │ └── EmployeedepartmenthistoryRowUnsaved.scala │ │ ├── employeepayhistory │ │ │ ├── EmployeepayhistoryFields.scala │ │ │ ├── EmployeepayhistoryId.scala │ │ │ ├── EmployeepayhistoryRepo.scala │ │ │ ├── EmployeepayhistoryRepoImpl.scala │ │ │ ├── EmployeepayhistoryRepoMock.scala │ │ │ ├── EmployeepayhistoryRow.scala │ │ │ └── EmployeepayhistoryRowUnsaved.scala │ │ ├── jobcandidate │ │ │ ├── JobcandidateFields.scala │ │ │ ├── JobcandidateId.scala │ │ │ ├── JobcandidateRepo.scala │ │ │ ├── JobcandidateRepoImpl.scala │ │ │ ├── JobcandidateRepoMock.scala │ │ │ ├── JobcandidateRow.scala │ │ │ └── JobcandidateRowUnsaved.scala │ │ ├── shift │ │ │ ├── ShiftFields.scala │ │ │ ├── ShiftId.scala │ │ │ ├── ShiftRepo.scala │ │ │ ├── ShiftRepoImpl.scala │ │ │ ├── ShiftRepoMock.scala │ │ │ ├── ShiftRow.scala │ │ │ └── ShiftRowUnsaved.scala │ │ ├── vemployee │ │ │ ├── VemployeeViewFields.scala │ │ │ ├── VemployeeViewRepo.scala │ │ │ ├── VemployeeViewRepoImpl.scala │ │ │ └── VemployeeViewRow.scala │ │ ├── vemployeedepartment │ │ │ ├── VemployeedepartmentViewFields.scala │ │ │ ├── VemployeedepartmentViewRepo.scala │ │ │ ├── VemployeedepartmentViewRepoImpl.scala │ │ │ └── VemployeedepartmentViewRow.scala │ │ ├── vemployeedepartmenthistory │ │ │ ├── VemployeedepartmenthistoryViewFields.scala │ │ │ ├── VemployeedepartmenthistoryViewRepo.scala │ │ │ ├── VemployeedepartmenthistoryViewRepoImpl.scala │ │ │ └── VemployeedepartmenthistoryViewRow.scala │ │ ├── vjobcandidate │ │ │ ├── VjobcandidateViewFields.scala │ │ │ ├── VjobcandidateViewRepo.scala │ │ │ ├── VjobcandidateViewRepoImpl.scala │ │ │ └── VjobcandidateViewRow.scala │ │ ├── vjobcandidateeducation │ │ │ ├── VjobcandidateeducationViewFields.scala │ │ │ ├── VjobcandidateeducationViewRepo.scala │ │ │ ├── VjobcandidateeducationViewRepoImpl.scala │ │ │ └── VjobcandidateeducationViewRow.scala │ │ └── vjobcandidateemployment │ │ │ ├── VjobcandidateemploymentViewFields.scala │ │ │ ├── VjobcandidateemploymentViewRepo.scala │ │ │ ├── VjobcandidateemploymentViewRepoImpl.scala │ │ │ └── VjobcandidateemploymentViewRow.scala │ │ ├── information_schema │ │ ├── CardinalNumber.scala │ │ ├── CharacterData.scala │ │ ├── SqlIdentifier.scala │ │ ├── TimeStamp.scala │ │ └── YesOrNo.scala │ │ ├── package.scala │ │ ├── pe │ │ ├── a │ │ │ ├── AViewFields.scala │ │ │ ├── AViewRepo.scala │ │ │ ├── AViewRepoImpl.scala │ │ │ └── AViewRow.scala │ │ ├── at │ │ │ ├── AtViewFields.scala │ │ │ ├── AtViewRepo.scala │ │ │ ├── AtViewRepoImpl.scala │ │ │ └── AtViewRow.scala │ │ ├── be │ │ │ ├── BeViewFields.scala │ │ │ ├── BeViewRepo.scala │ │ │ ├── BeViewRepoImpl.scala │ │ │ └── BeViewRow.scala │ │ ├── bea │ │ │ ├── BeaViewFields.scala │ │ │ ├── BeaViewRepo.scala │ │ │ ├── BeaViewRepoImpl.scala │ │ │ └── BeaViewRow.scala │ │ ├── bec │ │ │ ├── BecViewFields.scala │ │ │ ├── BecViewRepo.scala │ │ │ ├── BecViewRepoImpl.scala │ │ │ └── BecViewRow.scala │ │ ├── cr │ │ │ ├── CrViewFields.scala │ │ │ ├── CrViewRepo.scala │ │ │ ├── CrViewRepoImpl.scala │ │ │ └── CrViewRow.scala │ │ ├── ct │ │ │ ├── CtViewFields.scala │ │ │ ├── CtViewRepo.scala │ │ │ ├── CtViewRepoImpl.scala │ │ │ └── CtViewRow.scala │ │ ├── e │ │ │ ├── EViewFields.scala │ │ │ ├── EViewRepo.scala │ │ │ ├── EViewRepoImpl.scala │ │ │ └── EViewRow.scala │ │ ├── p │ │ │ ├── PViewFields.scala │ │ │ ├── PViewRepo.scala │ │ │ ├── PViewRepoImpl.scala │ │ │ └── PViewRow.scala │ │ ├── pa │ │ │ ├── PaViewFields.scala │ │ │ ├── PaViewRepo.scala │ │ │ ├── PaViewRepoImpl.scala │ │ │ └── PaViewRow.scala │ │ ├── pnt │ │ │ ├── PntViewFields.scala │ │ │ ├── PntViewRepo.scala │ │ │ ├── PntViewRepoImpl.scala │ │ │ └── PntViewRow.scala │ │ ├── pp │ │ │ ├── PpViewFields.scala │ │ │ ├── PpViewRepo.scala │ │ │ ├── PpViewRepoImpl.scala │ │ │ └── PpViewRow.scala │ │ └── sp │ │ │ ├── SpViewFields.scala │ │ │ ├── SpViewRepo.scala │ │ │ ├── SpViewRepoImpl.scala │ │ │ └── SpViewRow.scala │ │ ├── person │ │ ├── address │ │ │ ├── AddressFields.scala │ │ │ ├── AddressId.scala │ │ │ ├── AddressRepo.scala │ │ │ ├── AddressRepoImpl.scala │ │ │ ├── AddressRepoMock.scala │ │ │ ├── AddressRow.scala │ │ │ └── AddressRowUnsaved.scala │ │ ├── addresstype │ │ │ ├── AddresstypeFields.scala │ │ │ ├── AddresstypeId.scala │ │ │ ├── AddresstypeRepo.scala │ │ │ ├── AddresstypeRepoImpl.scala │ │ │ ├── AddresstypeRepoMock.scala │ │ │ ├── AddresstypeRow.scala │ │ │ └── AddresstypeRowUnsaved.scala │ │ ├── businessentity │ │ │ ├── BusinessentityFields.scala │ │ │ ├── BusinessentityId.scala │ │ │ ├── BusinessentityRepo.scala │ │ │ ├── BusinessentityRepoImpl.scala │ │ │ ├── BusinessentityRepoMock.scala │ │ │ ├── BusinessentityRow.scala │ │ │ └── BusinessentityRowUnsaved.scala │ │ ├── businessentityaddress │ │ │ ├── BusinessentityaddressFields.scala │ │ │ ├── BusinessentityaddressId.scala │ │ │ ├── BusinessentityaddressRepo.scala │ │ │ ├── BusinessentityaddressRepoImpl.scala │ │ │ ├── BusinessentityaddressRepoMock.scala │ │ │ ├── BusinessentityaddressRow.scala │ │ │ └── BusinessentityaddressRowUnsaved.scala │ │ ├── businessentitycontact │ │ │ ├── BusinessentitycontactFields.scala │ │ │ ├── BusinessentitycontactId.scala │ │ │ ├── BusinessentitycontactRepo.scala │ │ │ ├── BusinessentitycontactRepoImpl.scala │ │ │ ├── BusinessentitycontactRepoMock.scala │ │ │ ├── BusinessentitycontactRow.scala │ │ │ └── BusinessentitycontactRowUnsaved.scala │ │ ├── contacttype │ │ │ ├── ContacttypeFields.scala │ │ │ ├── ContacttypeId.scala │ │ │ ├── ContacttypeRepo.scala │ │ │ ├── ContacttypeRepoImpl.scala │ │ │ ├── ContacttypeRepoMock.scala │ │ │ ├── ContacttypeRow.scala │ │ │ └── ContacttypeRowUnsaved.scala │ │ ├── countryregion │ │ │ ├── CountryregionFields.scala │ │ │ ├── CountryregionId.scala │ │ │ ├── CountryregionRepo.scala │ │ │ ├── CountryregionRepoImpl.scala │ │ │ ├── CountryregionRepoMock.scala │ │ │ ├── CountryregionRow.scala │ │ │ └── CountryregionRowUnsaved.scala │ │ ├── emailaddress │ │ │ ├── EmailaddressFields.scala │ │ │ ├── EmailaddressId.scala │ │ │ ├── EmailaddressRepo.scala │ │ │ ├── EmailaddressRepoImpl.scala │ │ │ ├── EmailaddressRepoMock.scala │ │ │ ├── EmailaddressRow.scala │ │ │ └── EmailaddressRowUnsaved.scala │ │ ├── password │ │ │ ├── PasswordFields.scala │ │ │ ├── PasswordRepo.scala │ │ │ ├── PasswordRepoImpl.scala │ │ │ ├── PasswordRepoMock.scala │ │ │ ├── PasswordRow.scala │ │ │ └── PasswordRowUnsaved.scala │ │ ├── person │ │ │ ├── PersonFields.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── personphone │ │ │ ├── PersonphoneFields.scala │ │ │ ├── PersonphoneId.scala │ │ │ ├── PersonphoneRepo.scala │ │ │ ├── PersonphoneRepoImpl.scala │ │ │ ├── PersonphoneRepoMock.scala │ │ │ ├── PersonphoneRow.scala │ │ │ └── PersonphoneRowUnsaved.scala │ │ ├── phonenumbertype │ │ │ ├── PhonenumbertypeFields.scala │ │ │ ├── PhonenumbertypeId.scala │ │ │ ├── PhonenumbertypeRepo.scala │ │ │ ├── PhonenumbertypeRepoImpl.scala │ │ │ ├── PhonenumbertypeRepoMock.scala │ │ │ ├── PhonenumbertypeRow.scala │ │ │ └── PhonenumbertypeRowUnsaved.scala │ │ ├── stateprovince │ │ │ ├── StateprovinceFields.scala │ │ │ ├── StateprovinceId.scala │ │ │ ├── StateprovinceRepo.scala │ │ │ ├── StateprovinceRepoImpl.scala │ │ │ ├── StateprovinceRepoMock.scala │ │ │ ├── StateprovinceRow.scala │ │ │ └── StateprovinceRowUnsaved.scala │ │ ├── vadditionalcontactinfo │ │ │ ├── VadditionalcontactinfoViewFields.scala │ │ │ ├── VadditionalcontactinfoViewRepo.scala │ │ │ ├── VadditionalcontactinfoViewRepoImpl.scala │ │ │ └── VadditionalcontactinfoViewRow.scala │ │ └── vstateprovincecountryregion │ │ │ ├── VstateprovincecountryregionMVFields.scala │ │ │ ├── VstateprovincecountryregionMVRepo.scala │ │ │ ├── VstateprovincecountryregionMVRepoImpl.scala │ │ │ └── VstateprovincecountryregionMVRow.scala │ │ ├── person_detail │ │ ├── PersonDetailSqlRepo.scala │ │ ├── PersonDetailSqlRepoImpl.scala │ │ └── PersonDetailSqlRow.scala │ │ ├── person_dynamic │ │ ├── PersonDynamicSqlRepo.scala │ │ ├── PersonDynamicSqlRepoImpl.scala │ │ └── PersonDynamicSqlRow.scala │ │ ├── person_row_join │ │ ├── PersonRowJoinSqlRepo.scala │ │ ├── PersonRowJoinSqlRepoImpl.scala │ │ └── PersonRowJoinSqlRow.scala │ │ ├── pr │ │ ├── bom │ │ │ ├── BomViewFields.scala │ │ │ ├── BomViewRepo.scala │ │ │ ├── BomViewRepoImpl.scala │ │ │ └── BomViewRow.scala │ │ ├── c │ │ │ ├── CViewFields.scala │ │ │ ├── CViewRepo.scala │ │ │ ├── CViewRepoImpl.scala │ │ │ └── CViewRow.scala │ │ ├── d │ │ │ ├── DViewFields.scala │ │ │ ├── DViewRepo.scala │ │ │ ├── DViewRepoImpl.scala │ │ │ └── DViewRow.scala │ │ ├── i │ │ │ ├── IViewFields.scala │ │ │ ├── IViewRepo.scala │ │ │ ├── IViewRepoImpl.scala │ │ │ └── IViewRow.scala │ │ ├── l │ │ │ ├── LViewFields.scala │ │ │ ├── LViewRepo.scala │ │ │ ├── LViewRepoImpl.scala │ │ │ └── LViewRow.scala │ │ ├── p │ │ │ ├── PViewFields.scala │ │ │ ├── PViewRepo.scala │ │ │ ├── PViewRepoImpl.scala │ │ │ └── PViewRow.scala │ │ ├── pc │ │ │ ├── PcViewFields.scala │ │ │ ├── PcViewRepo.scala │ │ │ ├── PcViewRepoImpl.scala │ │ │ └── PcViewRow.scala │ │ ├── pch │ │ │ ├── PchViewFields.scala │ │ │ ├── PchViewRepo.scala │ │ │ ├── PchViewRepoImpl.scala │ │ │ └── PchViewRow.scala │ │ ├── pd │ │ │ ├── PdViewFields.scala │ │ │ ├── PdViewRepo.scala │ │ │ ├── PdViewRepoImpl.scala │ │ │ └── PdViewRow.scala │ │ ├── pdoc │ │ │ ├── PdocViewFields.scala │ │ │ ├── PdocViewRepo.scala │ │ │ ├── PdocViewRepoImpl.scala │ │ │ └── PdocViewRow.scala │ │ ├── pi │ │ │ ├── PiViewFields.scala │ │ │ ├── PiViewRepo.scala │ │ │ ├── PiViewRepoImpl.scala │ │ │ └── PiViewRow.scala │ │ ├── plph │ │ │ ├── PlphViewFields.scala │ │ │ ├── PlphViewRepo.scala │ │ │ ├── PlphViewRepoImpl.scala │ │ │ └── PlphViewRow.scala │ │ ├── pm │ │ │ ├── PmViewFields.scala │ │ │ ├── PmViewRepo.scala │ │ │ ├── PmViewRepoImpl.scala │ │ │ └── PmViewRow.scala │ │ ├── pmi │ │ │ ├── PmiViewFields.scala │ │ │ ├── PmiViewRepo.scala │ │ │ ├── PmiViewRepoImpl.scala │ │ │ └── PmiViewRow.scala │ │ ├── pmpdc │ │ │ ├── PmpdcViewFields.scala │ │ │ ├── PmpdcViewRepo.scala │ │ │ ├── PmpdcViewRepoImpl.scala │ │ │ └── PmpdcViewRow.scala │ │ ├── pp │ │ │ ├── PpViewFields.scala │ │ │ ├── PpViewRepo.scala │ │ │ ├── PpViewRepoImpl.scala │ │ │ └── PpViewRow.scala │ │ ├── ppp │ │ │ ├── PppViewFields.scala │ │ │ ├── PppViewRepo.scala │ │ │ ├── PppViewRepoImpl.scala │ │ │ └── PppViewRow.scala │ │ ├── pr │ │ │ ├── PrViewFields.scala │ │ │ ├── PrViewRepo.scala │ │ │ ├── PrViewRepoImpl.scala │ │ │ └── PrViewRow.scala │ │ ├── psc │ │ │ ├── PscViewFields.scala │ │ │ ├── PscViewRepo.scala │ │ │ ├── PscViewRepoImpl.scala │ │ │ └── PscViewRow.scala │ │ ├── sr │ │ │ ├── SrViewFields.scala │ │ │ ├── SrViewRepo.scala │ │ │ ├── SrViewRepoImpl.scala │ │ │ └── SrViewRow.scala │ │ ├── th │ │ │ ├── ThViewFields.scala │ │ │ ├── ThViewRepo.scala │ │ │ ├── ThViewRepoImpl.scala │ │ │ └── ThViewRow.scala │ │ ├── tha │ │ │ ├── ThaViewFields.scala │ │ │ ├── ThaViewRepo.scala │ │ │ ├── ThaViewRepoImpl.scala │ │ │ └── ThaViewRow.scala │ │ ├── um │ │ │ ├── UmViewFields.scala │ │ │ ├── UmViewRepo.scala │ │ │ ├── UmViewRepoImpl.scala │ │ │ └── UmViewRow.scala │ │ ├── w │ │ │ ├── WViewFields.scala │ │ │ ├── WViewRepo.scala │ │ │ ├── WViewRepoImpl.scala │ │ │ └── WViewRow.scala │ │ └── wr │ │ │ ├── WrViewFields.scala │ │ │ ├── WrViewRepo.scala │ │ │ ├── WrViewRepoImpl.scala │ │ │ └── WrViewRow.scala │ │ ├── production │ │ ├── billofmaterials │ │ │ ├── BillofmaterialsFields.scala │ │ │ ├── BillofmaterialsRepo.scala │ │ │ ├── BillofmaterialsRepoImpl.scala │ │ │ ├── BillofmaterialsRepoMock.scala │ │ │ ├── BillofmaterialsRow.scala │ │ │ └── BillofmaterialsRowUnsaved.scala │ │ ├── culture │ │ │ ├── CultureFields.scala │ │ │ ├── CultureId.scala │ │ │ ├── CultureRepo.scala │ │ │ ├── CultureRepoImpl.scala │ │ │ ├── CultureRepoMock.scala │ │ │ ├── CultureRow.scala │ │ │ └── CultureRowUnsaved.scala │ │ ├── document │ │ │ ├── DocumentFields.scala │ │ │ ├── DocumentId.scala │ │ │ ├── DocumentRepo.scala │ │ │ ├── DocumentRepoImpl.scala │ │ │ ├── DocumentRepoMock.scala │ │ │ ├── DocumentRow.scala │ │ │ └── DocumentRowUnsaved.scala │ │ ├── illustration │ │ │ ├── IllustrationFields.scala │ │ │ ├── IllustrationId.scala │ │ │ ├── IllustrationRepo.scala │ │ │ ├── IllustrationRepoImpl.scala │ │ │ ├── IllustrationRepoMock.scala │ │ │ ├── IllustrationRow.scala │ │ │ └── IllustrationRowUnsaved.scala │ │ ├── location │ │ │ ├── LocationFields.scala │ │ │ ├── LocationId.scala │ │ │ ├── LocationRepo.scala │ │ │ ├── LocationRepoImpl.scala │ │ │ ├── LocationRepoMock.scala │ │ │ ├── LocationRow.scala │ │ │ └── LocationRowUnsaved.scala │ │ ├── product │ │ │ ├── ProductFields.scala │ │ │ ├── ProductId.scala │ │ │ ├── ProductRepo.scala │ │ │ ├── ProductRepoImpl.scala │ │ │ ├── ProductRepoMock.scala │ │ │ ├── ProductRow.scala │ │ │ └── ProductRowUnsaved.scala │ │ ├── productcategory │ │ │ ├── ProductcategoryFields.scala │ │ │ ├── ProductcategoryId.scala │ │ │ ├── ProductcategoryRepo.scala │ │ │ ├── ProductcategoryRepoImpl.scala │ │ │ ├── ProductcategoryRepoMock.scala │ │ │ ├── ProductcategoryRow.scala │ │ │ └── ProductcategoryRowUnsaved.scala │ │ ├── productcosthistory │ │ │ ├── ProductcosthistoryFields.scala │ │ │ ├── ProductcosthistoryId.scala │ │ │ ├── ProductcosthistoryRepo.scala │ │ │ ├── ProductcosthistoryRepoImpl.scala │ │ │ ├── ProductcosthistoryRepoMock.scala │ │ │ ├── ProductcosthistoryRow.scala │ │ │ └── ProductcosthistoryRowUnsaved.scala │ │ ├── productdescription │ │ │ ├── ProductdescriptionFields.scala │ │ │ ├── ProductdescriptionId.scala │ │ │ ├── ProductdescriptionRepo.scala │ │ │ ├── ProductdescriptionRepoImpl.scala │ │ │ ├── ProductdescriptionRepoMock.scala │ │ │ ├── ProductdescriptionRow.scala │ │ │ └── ProductdescriptionRowUnsaved.scala │ │ ├── productdocument │ │ │ ├── ProductdocumentFields.scala │ │ │ ├── ProductdocumentId.scala │ │ │ ├── ProductdocumentRepo.scala │ │ │ ├── ProductdocumentRepoImpl.scala │ │ │ ├── ProductdocumentRepoMock.scala │ │ │ ├── ProductdocumentRow.scala │ │ │ └── ProductdocumentRowUnsaved.scala │ │ ├── productinventory │ │ │ ├── ProductinventoryFields.scala │ │ │ ├── ProductinventoryId.scala │ │ │ ├── ProductinventoryRepo.scala │ │ │ ├── ProductinventoryRepoImpl.scala │ │ │ ├── ProductinventoryRepoMock.scala │ │ │ ├── ProductinventoryRow.scala │ │ │ └── ProductinventoryRowUnsaved.scala │ │ ├── productlistpricehistory │ │ │ ├── ProductlistpricehistoryFields.scala │ │ │ ├── ProductlistpricehistoryId.scala │ │ │ ├── ProductlistpricehistoryRepo.scala │ │ │ ├── ProductlistpricehistoryRepoImpl.scala │ │ │ ├── ProductlistpricehistoryRepoMock.scala │ │ │ ├── ProductlistpricehistoryRow.scala │ │ │ └── ProductlistpricehistoryRowUnsaved.scala │ │ ├── productmodel │ │ │ ├── ProductmodelFields.scala │ │ │ ├── ProductmodelId.scala │ │ │ ├── ProductmodelRepo.scala │ │ │ ├── ProductmodelRepoImpl.scala │ │ │ ├── ProductmodelRepoMock.scala │ │ │ ├── ProductmodelRow.scala │ │ │ └── ProductmodelRowUnsaved.scala │ │ ├── productmodelillustration │ │ │ ├── ProductmodelillustrationFields.scala │ │ │ ├── ProductmodelillustrationId.scala │ │ │ ├── ProductmodelillustrationRepo.scala │ │ │ ├── ProductmodelillustrationRepoImpl.scala │ │ │ ├── ProductmodelillustrationRepoMock.scala │ │ │ ├── ProductmodelillustrationRow.scala │ │ │ └── ProductmodelillustrationRowUnsaved.scala │ │ ├── productmodelproductdescriptionculture │ │ │ ├── ProductmodelproductdescriptioncultureFields.scala │ │ │ ├── ProductmodelproductdescriptioncultureId.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepo.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepoImpl.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepoMock.scala │ │ │ ├── ProductmodelproductdescriptioncultureRow.scala │ │ │ └── ProductmodelproductdescriptioncultureRowUnsaved.scala │ │ ├── productphoto │ │ │ ├── ProductphotoFields.scala │ │ │ ├── ProductphotoId.scala │ │ │ ├── ProductphotoRepo.scala │ │ │ ├── ProductphotoRepoImpl.scala │ │ │ ├── ProductphotoRepoMock.scala │ │ │ ├── ProductphotoRow.scala │ │ │ └── ProductphotoRowUnsaved.scala │ │ ├── productproductphoto │ │ │ ├── ProductproductphotoFields.scala │ │ │ ├── ProductproductphotoId.scala │ │ │ ├── ProductproductphotoRepo.scala │ │ │ ├── ProductproductphotoRepoImpl.scala │ │ │ ├── ProductproductphotoRepoMock.scala │ │ │ ├── ProductproductphotoRow.scala │ │ │ └── ProductproductphotoRowUnsaved.scala │ │ ├── productreview │ │ │ ├── ProductreviewFields.scala │ │ │ ├── ProductreviewId.scala │ │ │ ├── ProductreviewRepo.scala │ │ │ ├── ProductreviewRepoImpl.scala │ │ │ ├── ProductreviewRepoMock.scala │ │ │ ├── ProductreviewRow.scala │ │ │ └── ProductreviewRowUnsaved.scala │ │ ├── productsubcategory │ │ │ ├── ProductsubcategoryFields.scala │ │ │ ├── ProductsubcategoryId.scala │ │ │ ├── ProductsubcategoryRepo.scala │ │ │ ├── ProductsubcategoryRepoImpl.scala │ │ │ ├── ProductsubcategoryRepoMock.scala │ │ │ ├── ProductsubcategoryRow.scala │ │ │ └── ProductsubcategoryRowUnsaved.scala │ │ ├── scrapreason │ │ │ ├── ScrapreasonFields.scala │ │ │ ├── ScrapreasonId.scala │ │ │ ├── ScrapreasonRepo.scala │ │ │ ├── ScrapreasonRepoImpl.scala │ │ │ ├── ScrapreasonRepoMock.scala │ │ │ ├── ScrapreasonRow.scala │ │ │ └── ScrapreasonRowUnsaved.scala │ │ ├── transactionhistory │ │ │ ├── TransactionhistoryFields.scala │ │ │ ├── TransactionhistoryId.scala │ │ │ ├── TransactionhistoryRepo.scala │ │ │ ├── TransactionhistoryRepoImpl.scala │ │ │ ├── TransactionhistoryRepoMock.scala │ │ │ ├── TransactionhistoryRow.scala │ │ │ └── TransactionhistoryRowUnsaved.scala │ │ ├── transactionhistoryarchive │ │ │ ├── TransactionhistoryarchiveFields.scala │ │ │ ├── TransactionhistoryarchiveId.scala │ │ │ ├── TransactionhistoryarchiveRepo.scala │ │ │ ├── TransactionhistoryarchiveRepoImpl.scala │ │ │ ├── TransactionhistoryarchiveRepoMock.scala │ │ │ ├── TransactionhistoryarchiveRow.scala │ │ │ └── TransactionhistoryarchiveRowUnsaved.scala │ │ ├── unitmeasure │ │ │ ├── UnitmeasureFields.scala │ │ │ ├── UnitmeasureId.scala │ │ │ ├── UnitmeasureRepo.scala │ │ │ ├── UnitmeasureRepoImpl.scala │ │ │ ├── UnitmeasureRepoMock.scala │ │ │ ├── UnitmeasureRow.scala │ │ │ └── UnitmeasureRowUnsaved.scala │ │ ├── vproductanddescription │ │ │ ├── VproductanddescriptionMVFields.scala │ │ │ ├── VproductanddescriptionMVRepo.scala │ │ │ ├── VproductanddescriptionMVRepoImpl.scala │ │ │ └── VproductanddescriptionMVRow.scala │ │ ├── vproductmodelcatalogdescription │ │ │ ├── VproductmodelcatalogdescriptionViewFields.scala │ │ │ ├── VproductmodelcatalogdescriptionViewRepo.scala │ │ │ ├── VproductmodelcatalogdescriptionViewRepoImpl.scala │ │ │ └── VproductmodelcatalogdescriptionViewRow.scala │ │ ├── vproductmodelinstructions │ │ │ ├── VproductmodelinstructionsViewFields.scala │ │ │ ├── VproductmodelinstructionsViewRepo.scala │ │ │ ├── VproductmodelinstructionsViewRepoImpl.scala │ │ │ └── VproductmodelinstructionsViewRow.scala │ │ ├── workorder │ │ │ ├── WorkorderFields.scala │ │ │ ├── WorkorderId.scala │ │ │ ├── WorkorderRepo.scala │ │ │ ├── WorkorderRepoImpl.scala │ │ │ ├── WorkorderRepoMock.scala │ │ │ ├── WorkorderRow.scala │ │ │ └── WorkorderRowUnsaved.scala │ │ └── workorderrouting │ │ │ ├── WorkorderroutingFields.scala │ │ │ ├── WorkorderroutingId.scala │ │ │ ├── WorkorderroutingRepo.scala │ │ │ ├── WorkorderroutingRepoImpl.scala │ │ │ ├── WorkorderroutingRepoMock.scala │ │ │ ├── WorkorderroutingRow.scala │ │ │ └── WorkorderroutingRowUnsaved.scala │ │ ├── pu │ │ ├── pod │ │ │ ├── PodViewFields.scala │ │ │ ├── PodViewRepo.scala │ │ │ ├── PodViewRepoImpl.scala │ │ │ └── PodViewRow.scala │ │ ├── poh │ │ │ ├── PohViewFields.scala │ │ │ ├── PohViewRepo.scala │ │ │ ├── PohViewRepoImpl.scala │ │ │ └── PohViewRow.scala │ │ ├── pv │ │ │ ├── PvViewFields.scala │ │ │ ├── PvViewRepo.scala │ │ │ ├── PvViewRepoImpl.scala │ │ │ └── PvViewRow.scala │ │ ├── sm │ │ │ ├── SmViewFields.scala │ │ │ ├── SmViewRepo.scala │ │ │ ├── SmViewRepoImpl.scala │ │ │ └── SmViewRow.scala │ │ └── v │ │ │ ├── VViewFields.scala │ │ │ ├── VViewRepo.scala │ │ │ ├── VViewRepoImpl.scala │ │ │ └── VViewRow.scala │ │ ├── public │ │ ├── AccountNumber.scala │ │ ├── Flag.scala │ │ ├── Mydomain.scala │ │ ├── Myenum.scala │ │ ├── Name.scala │ │ ├── NameStyle.scala │ │ ├── OrderNumber.scala │ │ ├── Phone.scala │ │ ├── ShortText.scala │ │ ├── flaff │ │ │ ├── FlaffFields.scala │ │ │ ├── FlaffId.scala │ │ │ ├── FlaffRepo.scala │ │ │ ├── FlaffRepoImpl.scala │ │ │ ├── FlaffRepoMock.scala │ │ │ └── FlaffRow.scala │ │ ├── identity_test │ │ │ ├── IdentityTestFields.scala │ │ │ ├── IdentityTestId.scala │ │ │ ├── IdentityTestRepo.scala │ │ │ ├── IdentityTestRepoImpl.scala │ │ │ ├── IdentityTestRepoMock.scala │ │ │ ├── IdentityTestRow.scala │ │ │ └── IdentityTestRowUnsaved.scala │ │ ├── issue142 │ │ │ ├── Issue142Fields.scala │ │ │ ├── Issue142Id.scala │ │ │ ├── Issue142Repo.scala │ │ │ ├── Issue142RepoImpl.scala │ │ │ ├── Issue142RepoMock.scala │ │ │ └── Issue142Row.scala │ │ ├── issue142_2 │ │ │ ├── Issue1422Fields.scala │ │ │ ├── Issue1422Repo.scala │ │ │ ├── Issue1422RepoImpl.scala │ │ │ ├── Issue1422RepoMock.scala │ │ │ └── Issue1422Row.scala │ │ ├── only_pk_columns │ │ │ ├── OnlyPkColumnsFields.scala │ │ │ ├── OnlyPkColumnsId.scala │ │ │ ├── OnlyPkColumnsRepo.scala │ │ │ ├── OnlyPkColumnsRepoImpl.scala │ │ │ ├── OnlyPkColumnsRepoMock.scala │ │ │ └── OnlyPkColumnsRow.scala │ │ ├── pgtest │ │ │ ├── PgtestFields.scala │ │ │ ├── PgtestRepo.scala │ │ │ ├── PgtestRepoImpl.scala │ │ │ └── PgtestRow.scala │ │ ├── pgtestnull │ │ │ ├── PgtestnullFields.scala │ │ │ ├── PgtestnullRepo.scala │ │ │ ├── PgtestnullRepoImpl.scala │ │ │ └── PgtestnullRow.scala │ │ ├── table_with_generated_columns │ │ │ ├── TableWithGeneratedColumnsFields.scala │ │ │ ├── TableWithGeneratedColumnsId.scala │ │ │ ├── TableWithGeneratedColumnsRepo.scala │ │ │ ├── TableWithGeneratedColumnsRepoImpl.scala │ │ │ ├── TableWithGeneratedColumnsRepoMock.scala │ │ │ ├── TableWithGeneratedColumnsRow.scala │ │ │ └── TableWithGeneratedColumnsRowUnsaved.scala │ │ ├── test_organisasjon │ │ │ ├── TestOrganisasjonFields.scala │ │ │ ├── TestOrganisasjonId.scala │ │ │ ├── TestOrganisasjonRepo.scala │ │ │ ├── TestOrganisasjonRepoImpl.scala │ │ │ ├── TestOrganisasjonRepoMock.scala │ │ │ └── TestOrganisasjonRow.scala │ │ ├── test_sak_soknadsalternativ │ │ │ ├── TestSakSoknadsalternativFields.scala │ │ │ ├── TestSakSoknadsalternativId.scala │ │ │ ├── TestSakSoknadsalternativRepo.scala │ │ │ ├── TestSakSoknadsalternativRepoImpl.scala │ │ │ ├── TestSakSoknadsalternativRepoMock.scala │ │ │ └── TestSakSoknadsalternativRow.scala │ │ ├── test_utdanningstilbud │ │ │ ├── TestUtdanningstilbudFields.scala │ │ │ ├── TestUtdanningstilbudId.scala │ │ │ ├── TestUtdanningstilbudRepo.scala │ │ │ ├── TestUtdanningstilbudRepoImpl.scala │ │ │ ├── TestUtdanningstilbudRepoMock.scala │ │ │ └── TestUtdanningstilbudRow.scala │ │ ├── title │ │ │ ├── TitleFields.scala │ │ │ ├── TitleId.scala │ │ │ ├── TitleRepo.scala │ │ │ ├── TitleRepoImpl.scala │ │ │ ├── TitleRepoMock.scala │ │ │ └── TitleRow.scala │ │ ├── title_domain │ │ │ ├── TitleDomainFields.scala │ │ │ ├── TitleDomainId.scala │ │ │ ├── TitleDomainRepo.scala │ │ │ ├── TitleDomainRepoImpl.scala │ │ │ ├── TitleDomainRepoMock.scala │ │ │ └── TitleDomainRow.scala │ │ ├── titledperson │ │ │ ├── TitledpersonFields.scala │ │ │ ├── TitledpersonRepo.scala │ │ │ ├── TitledpersonRepoImpl.scala │ │ │ └── TitledpersonRow.scala │ │ └── users │ │ │ ├── UsersFields.scala │ │ │ ├── UsersId.scala │ │ │ ├── UsersRepo.scala │ │ │ ├── UsersRepoImpl.scala │ │ │ ├── UsersRepoMock.scala │ │ │ ├── UsersRow.scala │ │ │ └── UsersRowUnsaved.scala │ │ ├── purchasing │ │ ├── productvendor │ │ │ ├── ProductvendorFields.scala │ │ │ ├── ProductvendorId.scala │ │ │ ├── ProductvendorRepo.scala │ │ │ ├── ProductvendorRepoImpl.scala │ │ │ ├── ProductvendorRepoMock.scala │ │ │ ├── ProductvendorRow.scala │ │ │ └── ProductvendorRowUnsaved.scala │ │ ├── purchaseorderdetail │ │ │ ├── PurchaseorderdetailFields.scala │ │ │ ├── PurchaseorderdetailId.scala │ │ │ ├── PurchaseorderdetailRepo.scala │ │ │ ├── PurchaseorderdetailRepoImpl.scala │ │ │ ├── PurchaseorderdetailRow.scala │ │ │ └── PurchaseorderdetailRowUnsaved.scala │ │ ├── purchaseorderheader │ │ │ ├── PurchaseorderheaderFields.scala │ │ │ ├── PurchaseorderheaderId.scala │ │ │ ├── PurchaseorderheaderRepo.scala │ │ │ ├── PurchaseorderheaderRepoImpl.scala │ │ │ ├── PurchaseorderheaderRepoMock.scala │ │ │ ├── PurchaseorderheaderRow.scala │ │ │ └── PurchaseorderheaderRowUnsaved.scala │ │ ├── shipmethod │ │ │ ├── ShipmethodFields.scala │ │ │ ├── ShipmethodId.scala │ │ │ ├── ShipmethodRepo.scala │ │ │ ├── ShipmethodRepoImpl.scala │ │ │ ├── ShipmethodRepoMock.scala │ │ │ ├── ShipmethodRow.scala │ │ │ └── ShipmethodRowUnsaved.scala │ │ ├── vendor │ │ │ ├── VendorFields.scala │ │ │ ├── VendorRepo.scala │ │ │ ├── VendorRepoImpl.scala │ │ │ ├── VendorRepoMock.scala │ │ │ ├── VendorRow.scala │ │ │ └── VendorRowUnsaved.scala │ │ ├── vvendorwithaddresses │ │ │ ├── VvendorwithaddressesViewFields.scala │ │ │ ├── VvendorwithaddressesViewRepo.scala │ │ │ ├── VvendorwithaddressesViewRepoImpl.scala │ │ │ └── VvendorwithaddressesViewRow.scala │ │ └── vvendorwithcontacts │ │ │ ├── VvendorwithcontactsViewFields.scala │ │ │ ├── VvendorwithcontactsViewRepo.scala │ │ │ ├── VvendorwithcontactsViewRepoImpl.scala │ │ │ └── VvendorwithcontactsViewRow.scala │ │ ├── sa │ │ ├── c │ │ │ ├── CViewFields.scala │ │ │ ├── CViewRepo.scala │ │ │ ├── CViewRepoImpl.scala │ │ │ └── CViewRow.scala │ │ ├── cc │ │ │ ├── CcViewFields.scala │ │ │ ├── CcViewRepo.scala │ │ │ ├── CcViewRepoImpl.scala │ │ │ └── CcViewRow.scala │ │ ├── cr │ │ │ ├── CrViewFields.scala │ │ │ ├── CrViewRepo.scala │ │ │ ├── CrViewRepoImpl.scala │ │ │ └── CrViewRow.scala │ │ ├── crc │ │ │ ├── CrcViewFields.scala │ │ │ ├── CrcViewRepo.scala │ │ │ ├── CrcViewRepoImpl.scala │ │ │ └── CrcViewRow.scala │ │ ├── cu │ │ │ ├── CuViewFields.scala │ │ │ ├── CuViewRepo.scala │ │ │ ├── CuViewRepoImpl.scala │ │ │ └── CuViewRow.scala │ │ ├── pcc │ │ │ ├── PccViewFields.scala │ │ │ ├── PccViewRepo.scala │ │ │ ├── PccViewRepoImpl.scala │ │ │ └── PccViewRow.scala │ │ ├── s │ │ │ ├── SViewFields.scala │ │ │ ├── SViewRepo.scala │ │ │ ├── SViewRepoImpl.scala │ │ │ └── SViewRow.scala │ │ ├── sci │ │ │ ├── SciViewFields.scala │ │ │ ├── SciViewRepo.scala │ │ │ ├── SciViewRepoImpl.scala │ │ │ └── SciViewRow.scala │ │ ├── so │ │ │ ├── SoViewFields.scala │ │ │ ├── SoViewRepo.scala │ │ │ ├── SoViewRepoImpl.scala │ │ │ └── SoViewRow.scala │ │ ├── sod │ │ │ ├── SodViewFields.scala │ │ │ ├── SodViewRepo.scala │ │ │ ├── SodViewRepoImpl.scala │ │ │ └── SodViewRow.scala │ │ ├── soh │ │ │ ├── SohViewFields.scala │ │ │ ├── SohViewRepo.scala │ │ │ ├── SohViewRepoImpl.scala │ │ │ └── SohViewRow.scala │ │ ├── sohsr │ │ │ ├── SohsrViewFields.scala │ │ │ ├── SohsrViewRepo.scala │ │ │ ├── SohsrViewRepoImpl.scala │ │ │ └── SohsrViewRow.scala │ │ ├── sop │ │ │ ├── SopViewFields.scala │ │ │ ├── SopViewRepo.scala │ │ │ ├── SopViewRepoImpl.scala │ │ │ └── SopViewRow.scala │ │ ├── sp │ │ │ ├── SpViewFields.scala │ │ │ ├── SpViewRepo.scala │ │ │ ├── SpViewRepoImpl.scala │ │ │ └── SpViewRow.scala │ │ ├── spqh │ │ │ ├── SpqhViewFields.scala │ │ │ ├── SpqhViewRepo.scala │ │ │ ├── SpqhViewRepoImpl.scala │ │ │ └── SpqhViewRow.scala │ │ ├── sr │ │ │ ├── SrViewFields.scala │ │ │ ├── SrViewRepo.scala │ │ │ ├── SrViewRepoImpl.scala │ │ │ └── SrViewRow.scala │ │ ├── st │ │ │ ├── StViewFields.scala │ │ │ ├── StViewRepo.scala │ │ │ ├── StViewRepoImpl.scala │ │ │ └── StViewRow.scala │ │ ├── sth │ │ │ ├── SthViewFields.scala │ │ │ ├── SthViewRepo.scala │ │ │ ├── SthViewRepoImpl.scala │ │ │ └── SthViewRow.scala │ │ └── tr │ │ │ ├── TrViewFields.scala │ │ │ ├── TrViewRepo.scala │ │ │ ├── TrViewRepoImpl.scala │ │ │ └── TrViewRow.scala │ │ ├── sales │ │ ├── countryregioncurrency │ │ │ ├── CountryregioncurrencyFields.scala │ │ │ ├── CountryregioncurrencyId.scala │ │ │ ├── CountryregioncurrencyRepo.scala │ │ │ ├── CountryregioncurrencyRepoImpl.scala │ │ │ ├── CountryregioncurrencyRepoMock.scala │ │ │ ├── CountryregioncurrencyRow.scala │ │ │ └── CountryregioncurrencyRowUnsaved.scala │ │ ├── creditcard │ │ │ ├── CreditcardFields.scala │ │ │ ├── CreditcardRepo.scala │ │ │ ├── CreditcardRepoImpl.scala │ │ │ ├── CreditcardRepoMock.scala │ │ │ ├── CreditcardRow.scala │ │ │ └── CreditcardRowUnsaved.scala │ │ ├── currency │ │ │ ├── CurrencyFields.scala │ │ │ ├── CurrencyId.scala │ │ │ ├── CurrencyRepo.scala │ │ │ ├── CurrencyRepoImpl.scala │ │ │ ├── CurrencyRepoMock.scala │ │ │ ├── CurrencyRow.scala │ │ │ └── CurrencyRowUnsaved.scala │ │ ├── currencyrate │ │ │ ├── CurrencyrateFields.scala │ │ │ ├── CurrencyrateId.scala │ │ │ ├── CurrencyrateRepo.scala │ │ │ ├── CurrencyrateRepoImpl.scala │ │ │ ├── CurrencyrateRepoMock.scala │ │ │ ├── CurrencyrateRow.scala │ │ │ └── CurrencyrateRowUnsaved.scala │ │ ├── customer │ │ │ ├── CustomerFields.scala │ │ │ ├── CustomerId.scala │ │ │ ├── CustomerRepo.scala │ │ │ ├── CustomerRepoImpl.scala │ │ │ ├── CustomerRepoMock.scala │ │ │ ├── CustomerRow.scala │ │ │ └── CustomerRowUnsaved.scala │ │ ├── personcreditcard │ │ │ ├── PersoncreditcardFields.scala │ │ │ ├── PersoncreditcardId.scala │ │ │ ├── PersoncreditcardRepo.scala │ │ │ ├── PersoncreditcardRepoImpl.scala │ │ │ ├── PersoncreditcardRepoMock.scala │ │ │ ├── PersoncreditcardRow.scala │ │ │ └── PersoncreditcardRowUnsaved.scala │ │ ├── salesorderdetail │ │ │ ├── SalesorderdetailFields.scala │ │ │ ├── SalesorderdetailId.scala │ │ │ ├── SalesorderdetailRepo.scala │ │ │ ├── SalesorderdetailRepoImpl.scala │ │ │ ├── SalesorderdetailRepoMock.scala │ │ │ ├── SalesorderdetailRow.scala │ │ │ └── SalesorderdetailRowUnsaved.scala │ │ ├── salesorderheader │ │ │ ├── SalesorderheaderFields.scala │ │ │ ├── SalesorderheaderId.scala │ │ │ ├── SalesorderheaderRepo.scala │ │ │ ├── SalesorderheaderRepoImpl.scala │ │ │ ├── SalesorderheaderRepoMock.scala │ │ │ ├── SalesorderheaderRow.scala │ │ │ └── SalesorderheaderRowUnsaved.scala │ │ ├── salesorderheadersalesreason │ │ │ ├── SalesorderheadersalesreasonFields.scala │ │ │ ├── SalesorderheadersalesreasonId.scala │ │ │ ├── SalesorderheadersalesreasonRepo.scala │ │ │ ├── SalesorderheadersalesreasonRepoImpl.scala │ │ │ ├── SalesorderheadersalesreasonRepoMock.scala │ │ │ ├── SalesorderheadersalesreasonRow.scala │ │ │ └── SalesorderheadersalesreasonRowUnsaved.scala │ │ ├── salesperson │ │ │ ├── SalespersonFields.scala │ │ │ ├── SalespersonRepo.scala │ │ │ ├── SalespersonRepoImpl.scala │ │ │ ├── SalespersonRepoMock.scala │ │ │ ├── SalespersonRow.scala │ │ │ └── SalespersonRowUnsaved.scala │ │ ├── salespersonquotahistory │ │ │ ├── SalespersonquotahistoryFields.scala │ │ │ ├── SalespersonquotahistoryId.scala │ │ │ ├── SalespersonquotahistoryRepo.scala │ │ │ ├── SalespersonquotahistoryRepoImpl.scala │ │ │ ├── SalespersonquotahistoryRepoMock.scala │ │ │ ├── SalespersonquotahistoryRow.scala │ │ │ └── SalespersonquotahistoryRowUnsaved.scala │ │ ├── salesreason │ │ │ ├── SalesreasonFields.scala │ │ │ ├── SalesreasonId.scala │ │ │ ├── SalesreasonRepo.scala │ │ │ ├── SalesreasonRepoImpl.scala │ │ │ ├── SalesreasonRepoMock.scala │ │ │ ├── SalesreasonRow.scala │ │ │ └── SalesreasonRowUnsaved.scala │ │ ├── salestaxrate │ │ │ ├── SalestaxrateFields.scala │ │ │ ├── SalestaxrateId.scala │ │ │ ├── SalestaxrateRepo.scala │ │ │ ├── SalestaxrateRepoImpl.scala │ │ │ ├── SalestaxrateRepoMock.scala │ │ │ ├── SalestaxrateRow.scala │ │ │ └── SalestaxrateRowUnsaved.scala │ │ ├── salesterritory │ │ │ ├── SalesterritoryFields.scala │ │ │ ├── SalesterritoryId.scala │ │ │ ├── SalesterritoryRepo.scala │ │ │ ├── SalesterritoryRepoImpl.scala │ │ │ ├── SalesterritoryRepoMock.scala │ │ │ ├── SalesterritoryRow.scala │ │ │ └── SalesterritoryRowUnsaved.scala │ │ ├── salesterritoryhistory │ │ │ ├── SalesterritoryhistoryFields.scala │ │ │ ├── SalesterritoryhistoryId.scala │ │ │ ├── SalesterritoryhistoryRepo.scala │ │ │ ├── SalesterritoryhistoryRepoImpl.scala │ │ │ ├── SalesterritoryhistoryRepoMock.scala │ │ │ ├── SalesterritoryhistoryRow.scala │ │ │ └── SalesterritoryhistoryRowUnsaved.scala │ │ ├── shoppingcartitem │ │ │ ├── ShoppingcartitemFields.scala │ │ │ ├── ShoppingcartitemId.scala │ │ │ ├── ShoppingcartitemRepo.scala │ │ │ ├── ShoppingcartitemRepoImpl.scala │ │ │ ├── ShoppingcartitemRepoMock.scala │ │ │ ├── ShoppingcartitemRow.scala │ │ │ └── ShoppingcartitemRowUnsaved.scala │ │ ├── specialoffer │ │ │ ├── SpecialofferFields.scala │ │ │ ├── SpecialofferId.scala │ │ │ ├── SpecialofferRepo.scala │ │ │ ├── SpecialofferRepoImpl.scala │ │ │ ├── SpecialofferRepoMock.scala │ │ │ ├── SpecialofferRow.scala │ │ │ └── SpecialofferRowUnsaved.scala │ │ ├── specialofferproduct │ │ │ ├── SpecialofferproductFields.scala │ │ │ ├── SpecialofferproductId.scala │ │ │ ├── SpecialofferproductRepo.scala │ │ │ ├── SpecialofferproductRepoImpl.scala │ │ │ ├── SpecialofferproductRepoMock.scala │ │ │ ├── SpecialofferproductRow.scala │ │ │ └── SpecialofferproductRowUnsaved.scala │ │ ├── store │ │ │ ├── StoreFields.scala │ │ │ ├── StoreRepo.scala │ │ │ ├── StoreRepoImpl.scala │ │ │ ├── StoreRepoMock.scala │ │ │ ├── StoreRow.scala │ │ │ └── StoreRowUnsaved.scala │ │ ├── vindividualcustomer │ │ │ ├── VindividualcustomerViewFields.scala │ │ │ ├── VindividualcustomerViewRepo.scala │ │ │ ├── VindividualcustomerViewRepoImpl.scala │ │ │ └── VindividualcustomerViewRow.scala │ │ ├── vpersondemographics │ │ │ ├── VpersondemographicsViewFields.scala │ │ │ ├── VpersondemographicsViewRepo.scala │ │ │ ├── VpersondemographicsViewRepoImpl.scala │ │ │ └── VpersondemographicsViewRow.scala │ │ ├── vsalesperson │ │ │ ├── VsalespersonViewFields.scala │ │ │ ├── VsalespersonViewRepo.scala │ │ │ ├── VsalespersonViewRepoImpl.scala │ │ │ └── VsalespersonViewRow.scala │ │ ├── vsalespersonsalesbyfiscalyears │ │ │ ├── VsalespersonsalesbyfiscalyearsViewFields.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepo.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepoImpl.scala │ │ │ └── VsalespersonsalesbyfiscalyearsViewRow.scala │ │ ├── vsalespersonsalesbyfiscalyearsdata │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewFields.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepo.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepoImpl.scala │ │ │ └── VsalespersonsalesbyfiscalyearsdataViewRow.scala │ │ ├── vstorewithaddresses │ │ │ ├── VstorewithaddressesViewFields.scala │ │ │ ├── VstorewithaddressesViewRepo.scala │ │ │ ├── VstorewithaddressesViewRepoImpl.scala │ │ │ └── VstorewithaddressesViewRow.scala │ │ ├── vstorewithcontacts │ │ │ ├── VstorewithcontactsViewFields.scala │ │ │ ├── VstorewithcontactsViewRepo.scala │ │ │ ├── VstorewithcontactsViewRepoImpl.scala │ │ │ └── VstorewithcontactsViewRow.scala │ │ └── vstorewithdemographics │ │ │ ├── VstorewithdemographicsViewFields.scala │ │ │ ├── VstorewithdemographicsViewRepo.scala │ │ │ ├── VstorewithdemographicsViewRepoImpl.scala │ │ │ └── VstorewithdemographicsViewRow.scala │ │ ├── update_person │ │ ├── UpdatePersonSqlRepo.scala │ │ └── UpdatePersonSqlRepoImpl.scala │ │ └── update_person_returning │ │ ├── UpdatePersonReturningSqlRepo.scala │ │ ├── UpdatePersonReturningSqlRepoImpl.scala │ │ └── UpdatePersonReturningSqlRow.scala ├── generated-and-checked-in-3 │ └── adventureworks │ │ ├── TestDomainInsert.scala │ │ ├── TestInsert.scala │ │ ├── customtypes │ │ ├── Defaulted.scala │ │ ├── TypoBox.scala │ │ ├── TypoBytea.scala │ │ ├── TypoCircle.scala │ │ ├── TypoHStore.scala │ │ ├── TypoInet.scala │ │ ├── TypoInstant.scala │ │ ├── TypoInt2Vector.scala │ │ ├── TypoInterval.scala │ │ ├── TypoJson.scala │ │ ├── TypoJsonb.scala │ │ ├── TypoLine.scala │ │ ├── TypoLineSegment.scala │ │ ├── TypoLocalDate.scala │ │ ├── TypoLocalDateTime.scala │ │ ├── TypoLocalTime.scala │ │ ├── TypoMoney.scala │ │ ├── TypoOffsetTime.scala │ │ ├── TypoPath.scala │ │ ├── TypoPoint.scala │ │ ├── TypoPolygon.scala │ │ ├── TypoRecord.scala │ │ ├── TypoShort.scala │ │ ├── TypoUUID.scala │ │ ├── TypoUnknownCitext.scala │ │ ├── TypoVector.scala │ │ └── TypoXml.scala │ │ ├── frontpage │ │ └── Email.scala │ │ ├── hr │ │ ├── d │ │ │ ├── DViewFields.scala │ │ │ ├── DViewRepo.scala │ │ │ ├── DViewRepoImpl.scala │ │ │ └── DViewRow.scala │ │ ├── e │ │ │ ├── EViewFields.scala │ │ │ ├── EViewRepo.scala │ │ │ ├── EViewRepoImpl.scala │ │ │ └── EViewRow.scala │ │ ├── edh │ │ │ ├── EdhViewFields.scala │ │ │ ├── EdhViewRepo.scala │ │ │ ├── EdhViewRepoImpl.scala │ │ │ └── EdhViewRow.scala │ │ ├── eph │ │ │ ├── EphViewFields.scala │ │ │ ├── EphViewRepo.scala │ │ │ ├── EphViewRepoImpl.scala │ │ │ └── EphViewRow.scala │ │ ├── jc │ │ │ ├── JcViewFields.scala │ │ │ ├── JcViewRepo.scala │ │ │ ├── JcViewRepoImpl.scala │ │ │ └── JcViewRow.scala │ │ └── s │ │ │ ├── SViewFields.scala │ │ │ ├── SViewRepo.scala │ │ │ ├── SViewRepoImpl.scala │ │ │ └── SViewRow.scala │ │ ├── humanresources │ │ ├── department │ │ │ ├── DepartmentFields.scala │ │ │ ├── DepartmentId.scala │ │ │ ├── DepartmentRepo.scala │ │ │ ├── DepartmentRepoImpl.scala │ │ │ ├── DepartmentRepoMock.scala │ │ │ ├── DepartmentRow.scala │ │ │ └── DepartmentRowUnsaved.scala │ │ ├── employee │ │ │ ├── EmployeeFields.scala │ │ │ ├── EmployeeRepo.scala │ │ │ ├── EmployeeRepoImpl.scala │ │ │ ├── EmployeeRepoMock.scala │ │ │ ├── EmployeeRow.scala │ │ │ └── EmployeeRowUnsaved.scala │ │ ├── employeedepartmenthistory │ │ │ ├── EmployeedepartmenthistoryFields.scala │ │ │ ├── EmployeedepartmenthistoryId.scala │ │ │ ├── EmployeedepartmenthistoryRepo.scala │ │ │ ├── EmployeedepartmenthistoryRepoImpl.scala │ │ │ ├── EmployeedepartmenthistoryRepoMock.scala │ │ │ ├── EmployeedepartmenthistoryRow.scala │ │ │ └── EmployeedepartmenthistoryRowUnsaved.scala │ │ ├── employeepayhistory │ │ │ ├── EmployeepayhistoryFields.scala │ │ │ ├── EmployeepayhistoryId.scala │ │ │ ├── EmployeepayhistoryRepo.scala │ │ │ ├── EmployeepayhistoryRepoImpl.scala │ │ │ ├── EmployeepayhistoryRepoMock.scala │ │ │ ├── EmployeepayhistoryRow.scala │ │ │ └── EmployeepayhistoryRowUnsaved.scala │ │ ├── jobcandidate │ │ │ ├── JobcandidateFields.scala │ │ │ ├── JobcandidateId.scala │ │ │ ├── JobcandidateRepo.scala │ │ │ ├── JobcandidateRepoImpl.scala │ │ │ ├── JobcandidateRepoMock.scala │ │ │ ├── JobcandidateRow.scala │ │ │ └── JobcandidateRowUnsaved.scala │ │ ├── shift │ │ │ ├── ShiftFields.scala │ │ │ ├── ShiftId.scala │ │ │ ├── ShiftRepo.scala │ │ │ ├── ShiftRepoImpl.scala │ │ │ ├── ShiftRepoMock.scala │ │ │ ├── ShiftRow.scala │ │ │ └── ShiftRowUnsaved.scala │ │ ├── vemployee │ │ │ ├── VemployeeViewFields.scala │ │ │ ├── VemployeeViewRepo.scala │ │ │ ├── VemployeeViewRepoImpl.scala │ │ │ └── VemployeeViewRow.scala │ │ ├── vemployeedepartment │ │ │ ├── VemployeedepartmentViewFields.scala │ │ │ ├── VemployeedepartmentViewRepo.scala │ │ │ ├── VemployeedepartmentViewRepoImpl.scala │ │ │ └── VemployeedepartmentViewRow.scala │ │ ├── vemployeedepartmenthistory │ │ │ ├── VemployeedepartmenthistoryViewFields.scala │ │ │ ├── VemployeedepartmenthistoryViewRepo.scala │ │ │ ├── VemployeedepartmenthistoryViewRepoImpl.scala │ │ │ └── VemployeedepartmenthistoryViewRow.scala │ │ ├── vjobcandidate │ │ │ ├── VjobcandidateViewFields.scala │ │ │ ├── VjobcandidateViewRepo.scala │ │ │ ├── VjobcandidateViewRepoImpl.scala │ │ │ └── VjobcandidateViewRow.scala │ │ ├── vjobcandidateeducation │ │ │ ├── VjobcandidateeducationViewFields.scala │ │ │ ├── VjobcandidateeducationViewRepo.scala │ │ │ ├── VjobcandidateeducationViewRepoImpl.scala │ │ │ └── VjobcandidateeducationViewRow.scala │ │ └── vjobcandidateemployment │ │ │ ├── VjobcandidateemploymentViewFields.scala │ │ │ ├── VjobcandidateemploymentViewRepo.scala │ │ │ ├── VjobcandidateemploymentViewRepoImpl.scala │ │ │ └── VjobcandidateemploymentViewRow.scala │ │ ├── information_schema │ │ ├── CardinalNumber.scala │ │ ├── CharacterData.scala │ │ ├── SqlIdentifier.scala │ │ ├── TimeStamp.scala │ │ └── YesOrNo.scala │ │ ├── package.scala │ │ ├── pe │ │ ├── a │ │ │ ├── AViewFields.scala │ │ │ ├── AViewRepo.scala │ │ │ ├── AViewRepoImpl.scala │ │ │ └── AViewRow.scala │ │ ├── at │ │ │ ├── AtViewFields.scala │ │ │ ├── AtViewRepo.scala │ │ │ ├── AtViewRepoImpl.scala │ │ │ └── AtViewRow.scala │ │ ├── be │ │ │ ├── BeViewFields.scala │ │ │ ├── BeViewRepo.scala │ │ │ ├── BeViewRepoImpl.scala │ │ │ └── BeViewRow.scala │ │ ├── bea │ │ │ ├── BeaViewFields.scala │ │ │ ├── BeaViewRepo.scala │ │ │ ├── BeaViewRepoImpl.scala │ │ │ └── BeaViewRow.scala │ │ ├── bec │ │ │ ├── BecViewFields.scala │ │ │ ├── BecViewRepo.scala │ │ │ ├── BecViewRepoImpl.scala │ │ │ └── BecViewRow.scala │ │ ├── cr │ │ │ ├── CrViewFields.scala │ │ │ ├── CrViewRepo.scala │ │ │ ├── CrViewRepoImpl.scala │ │ │ └── CrViewRow.scala │ │ ├── ct │ │ │ ├── CtViewFields.scala │ │ │ ├── CtViewRepo.scala │ │ │ ├── CtViewRepoImpl.scala │ │ │ └── CtViewRow.scala │ │ ├── e │ │ │ ├── EViewFields.scala │ │ │ ├── EViewRepo.scala │ │ │ ├── EViewRepoImpl.scala │ │ │ └── EViewRow.scala │ │ ├── p │ │ │ ├── PViewFields.scala │ │ │ ├── PViewRepo.scala │ │ │ ├── PViewRepoImpl.scala │ │ │ └── PViewRow.scala │ │ ├── pa │ │ │ ├── PaViewFields.scala │ │ │ ├── PaViewRepo.scala │ │ │ ├── PaViewRepoImpl.scala │ │ │ └── PaViewRow.scala │ │ ├── pnt │ │ │ ├── PntViewFields.scala │ │ │ ├── PntViewRepo.scala │ │ │ ├── PntViewRepoImpl.scala │ │ │ └── PntViewRow.scala │ │ ├── pp │ │ │ ├── PpViewFields.scala │ │ │ ├── PpViewRepo.scala │ │ │ ├── PpViewRepoImpl.scala │ │ │ └── PpViewRow.scala │ │ └── sp │ │ │ ├── SpViewFields.scala │ │ │ ├── SpViewRepo.scala │ │ │ ├── SpViewRepoImpl.scala │ │ │ └── SpViewRow.scala │ │ ├── person │ │ ├── address │ │ │ ├── AddressFields.scala │ │ │ ├── AddressId.scala │ │ │ ├── AddressRepo.scala │ │ │ ├── AddressRepoImpl.scala │ │ │ ├── AddressRepoMock.scala │ │ │ ├── AddressRow.scala │ │ │ └── AddressRowUnsaved.scala │ │ ├── addresstype │ │ │ ├── AddresstypeFields.scala │ │ │ ├── AddresstypeId.scala │ │ │ ├── AddresstypeRepo.scala │ │ │ ├── AddresstypeRepoImpl.scala │ │ │ ├── AddresstypeRepoMock.scala │ │ │ ├── AddresstypeRow.scala │ │ │ └── AddresstypeRowUnsaved.scala │ │ ├── businessentity │ │ │ ├── BusinessentityFields.scala │ │ │ ├── BusinessentityId.scala │ │ │ ├── BusinessentityRepo.scala │ │ │ ├── BusinessentityRepoImpl.scala │ │ │ ├── BusinessentityRepoMock.scala │ │ │ ├── BusinessentityRow.scala │ │ │ └── BusinessentityRowUnsaved.scala │ │ ├── businessentityaddress │ │ │ ├── BusinessentityaddressFields.scala │ │ │ ├── BusinessentityaddressId.scala │ │ │ ├── BusinessentityaddressRepo.scala │ │ │ ├── BusinessentityaddressRepoImpl.scala │ │ │ ├── BusinessentityaddressRepoMock.scala │ │ │ ├── BusinessentityaddressRow.scala │ │ │ └── BusinessentityaddressRowUnsaved.scala │ │ ├── businessentitycontact │ │ │ ├── BusinessentitycontactFields.scala │ │ │ ├── BusinessentitycontactId.scala │ │ │ ├── BusinessentitycontactRepo.scala │ │ │ ├── BusinessentitycontactRepoImpl.scala │ │ │ ├── BusinessentitycontactRepoMock.scala │ │ │ ├── BusinessentitycontactRow.scala │ │ │ └── BusinessentitycontactRowUnsaved.scala │ │ ├── contacttype │ │ │ ├── ContacttypeFields.scala │ │ │ ├── ContacttypeId.scala │ │ │ ├── ContacttypeRepo.scala │ │ │ ├── ContacttypeRepoImpl.scala │ │ │ ├── ContacttypeRepoMock.scala │ │ │ ├── ContacttypeRow.scala │ │ │ └── ContacttypeRowUnsaved.scala │ │ ├── countryregion │ │ │ ├── CountryregionFields.scala │ │ │ ├── CountryregionId.scala │ │ │ ├── CountryregionRepo.scala │ │ │ ├── CountryregionRepoImpl.scala │ │ │ ├── CountryregionRepoMock.scala │ │ │ ├── CountryregionRow.scala │ │ │ └── CountryregionRowUnsaved.scala │ │ ├── emailaddress │ │ │ ├── EmailaddressFields.scala │ │ │ ├── EmailaddressId.scala │ │ │ ├── EmailaddressRepo.scala │ │ │ ├── EmailaddressRepoImpl.scala │ │ │ ├── EmailaddressRepoMock.scala │ │ │ ├── EmailaddressRow.scala │ │ │ └── EmailaddressRowUnsaved.scala │ │ ├── password │ │ │ ├── PasswordFields.scala │ │ │ ├── PasswordRepo.scala │ │ │ ├── PasswordRepoImpl.scala │ │ │ ├── PasswordRepoMock.scala │ │ │ ├── PasswordRow.scala │ │ │ └── PasswordRowUnsaved.scala │ │ ├── person │ │ │ ├── PersonFields.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── personphone │ │ │ ├── PersonphoneFields.scala │ │ │ ├── PersonphoneId.scala │ │ │ ├── PersonphoneRepo.scala │ │ │ ├── PersonphoneRepoImpl.scala │ │ │ ├── PersonphoneRepoMock.scala │ │ │ ├── PersonphoneRow.scala │ │ │ └── PersonphoneRowUnsaved.scala │ │ ├── phonenumbertype │ │ │ ├── PhonenumbertypeFields.scala │ │ │ ├── PhonenumbertypeId.scala │ │ │ ├── PhonenumbertypeRepo.scala │ │ │ ├── PhonenumbertypeRepoImpl.scala │ │ │ ├── PhonenumbertypeRepoMock.scala │ │ │ ├── PhonenumbertypeRow.scala │ │ │ └── PhonenumbertypeRowUnsaved.scala │ │ ├── stateprovince │ │ │ ├── StateprovinceFields.scala │ │ │ ├── StateprovinceId.scala │ │ │ ├── StateprovinceRepo.scala │ │ │ ├── StateprovinceRepoImpl.scala │ │ │ ├── StateprovinceRepoMock.scala │ │ │ ├── StateprovinceRow.scala │ │ │ └── StateprovinceRowUnsaved.scala │ │ ├── vadditionalcontactinfo │ │ │ ├── VadditionalcontactinfoViewFields.scala │ │ │ ├── VadditionalcontactinfoViewRepo.scala │ │ │ ├── VadditionalcontactinfoViewRepoImpl.scala │ │ │ └── VadditionalcontactinfoViewRow.scala │ │ └── vstateprovincecountryregion │ │ │ ├── VstateprovincecountryregionMVFields.scala │ │ │ ├── VstateprovincecountryregionMVRepo.scala │ │ │ ├── VstateprovincecountryregionMVRepoImpl.scala │ │ │ └── VstateprovincecountryregionMVRow.scala │ │ ├── person_detail │ │ ├── PersonDetailSqlRepo.scala │ │ ├── PersonDetailSqlRepoImpl.scala │ │ └── PersonDetailSqlRow.scala │ │ ├── person_dynamic │ │ ├── PersonDynamicSqlRepo.scala │ │ ├── PersonDynamicSqlRepoImpl.scala │ │ └── PersonDynamicSqlRow.scala │ │ ├── person_row_join │ │ ├── PersonRowJoinSqlRepo.scala │ │ ├── PersonRowJoinSqlRepoImpl.scala │ │ └── PersonRowJoinSqlRow.scala │ │ ├── pr │ │ ├── bom │ │ │ ├── BomViewFields.scala │ │ │ ├── BomViewRepo.scala │ │ │ ├── BomViewRepoImpl.scala │ │ │ └── BomViewRow.scala │ │ ├── c │ │ │ ├── CViewFields.scala │ │ │ ├── CViewRepo.scala │ │ │ ├── CViewRepoImpl.scala │ │ │ └── CViewRow.scala │ │ ├── d │ │ │ ├── DViewFields.scala │ │ │ ├── DViewRepo.scala │ │ │ ├── DViewRepoImpl.scala │ │ │ └── DViewRow.scala │ │ ├── i │ │ │ ├── IViewFields.scala │ │ │ ├── IViewRepo.scala │ │ │ ├── IViewRepoImpl.scala │ │ │ └── IViewRow.scala │ │ ├── l │ │ │ ├── LViewFields.scala │ │ │ ├── LViewRepo.scala │ │ │ ├── LViewRepoImpl.scala │ │ │ └── LViewRow.scala │ │ ├── p │ │ │ ├── PViewFields.scala │ │ │ ├── PViewRepo.scala │ │ │ ├── PViewRepoImpl.scala │ │ │ └── PViewRow.scala │ │ ├── pc │ │ │ ├── PcViewFields.scala │ │ │ ├── PcViewRepo.scala │ │ │ ├── PcViewRepoImpl.scala │ │ │ └── PcViewRow.scala │ │ ├── pch │ │ │ ├── PchViewFields.scala │ │ │ ├── PchViewRepo.scala │ │ │ ├── PchViewRepoImpl.scala │ │ │ └── PchViewRow.scala │ │ ├── pd │ │ │ ├── PdViewFields.scala │ │ │ ├── PdViewRepo.scala │ │ │ ├── PdViewRepoImpl.scala │ │ │ └── PdViewRow.scala │ │ ├── pdoc │ │ │ ├── PdocViewFields.scala │ │ │ ├── PdocViewRepo.scala │ │ │ ├── PdocViewRepoImpl.scala │ │ │ └── PdocViewRow.scala │ │ ├── pi │ │ │ ├── PiViewFields.scala │ │ │ ├── PiViewRepo.scala │ │ │ ├── PiViewRepoImpl.scala │ │ │ └── PiViewRow.scala │ │ ├── plph │ │ │ ├── PlphViewFields.scala │ │ │ ├── PlphViewRepo.scala │ │ │ ├── PlphViewRepoImpl.scala │ │ │ └── PlphViewRow.scala │ │ ├── pm │ │ │ ├── PmViewFields.scala │ │ │ ├── PmViewRepo.scala │ │ │ ├── PmViewRepoImpl.scala │ │ │ └── PmViewRow.scala │ │ ├── pmi │ │ │ ├── PmiViewFields.scala │ │ │ ├── PmiViewRepo.scala │ │ │ ├── PmiViewRepoImpl.scala │ │ │ └── PmiViewRow.scala │ │ ├── pmpdc │ │ │ ├── PmpdcViewFields.scala │ │ │ ├── PmpdcViewRepo.scala │ │ │ ├── PmpdcViewRepoImpl.scala │ │ │ └── PmpdcViewRow.scala │ │ ├── pp │ │ │ ├── PpViewFields.scala │ │ │ ├── PpViewRepo.scala │ │ │ ├── PpViewRepoImpl.scala │ │ │ └── PpViewRow.scala │ │ ├── ppp │ │ │ ├── PppViewFields.scala │ │ │ ├── PppViewRepo.scala │ │ │ ├── PppViewRepoImpl.scala │ │ │ └── PppViewRow.scala │ │ ├── pr │ │ │ ├── PrViewFields.scala │ │ │ ├── PrViewRepo.scala │ │ │ ├── PrViewRepoImpl.scala │ │ │ └── PrViewRow.scala │ │ ├── psc │ │ │ ├── PscViewFields.scala │ │ │ ├── PscViewRepo.scala │ │ │ ├── PscViewRepoImpl.scala │ │ │ └── PscViewRow.scala │ │ ├── sr │ │ │ ├── SrViewFields.scala │ │ │ ├── SrViewRepo.scala │ │ │ ├── SrViewRepoImpl.scala │ │ │ └── SrViewRow.scala │ │ ├── th │ │ │ ├── ThViewFields.scala │ │ │ ├── ThViewRepo.scala │ │ │ ├── ThViewRepoImpl.scala │ │ │ └── ThViewRow.scala │ │ ├── tha │ │ │ ├── ThaViewFields.scala │ │ │ ├── ThaViewRepo.scala │ │ │ ├── ThaViewRepoImpl.scala │ │ │ └── ThaViewRow.scala │ │ ├── um │ │ │ ├── UmViewFields.scala │ │ │ ├── UmViewRepo.scala │ │ │ ├── UmViewRepoImpl.scala │ │ │ └── UmViewRow.scala │ │ ├── w │ │ │ ├── WViewFields.scala │ │ │ ├── WViewRepo.scala │ │ │ ├── WViewRepoImpl.scala │ │ │ └── WViewRow.scala │ │ └── wr │ │ │ ├── WrViewFields.scala │ │ │ ├── WrViewRepo.scala │ │ │ ├── WrViewRepoImpl.scala │ │ │ └── WrViewRow.scala │ │ ├── production │ │ ├── billofmaterials │ │ │ ├── BillofmaterialsFields.scala │ │ │ ├── BillofmaterialsRepo.scala │ │ │ ├── BillofmaterialsRepoImpl.scala │ │ │ ├── BillofmaterialsRepoMock.scala │ │ │ ├── BillofmaterialsRow.scala │ │ │ └── BillofmaterialsRowUnsaved.scala │ │ ├── culture │ │ │ ├── CultureFields.scala │ │ │ ├── CultureId.scala │ │ │ ├── CultureRepo.scala │ │ │ ├── CultureRepoImpl.scala │ │ │ ├── CultureRepoMock.scala │ │ │ ├── CultureRow.scala │ │ │ └── CultureRowUnsaved.scala │ │ ├── document │ │ │ ├── DocumentFields.scala │ │ │ ├── DocumentId.scala │ │ │ ├── DocumentRepo.scala │ │ │ ├── DocumentRepoImpl.scala │ │ │ ├── DocumentRepoMock.scala │ │ │ ├── DocumentRow.scala │ │ │ └── DocumentRowUnsaved.scala │ │ ├── illustration │ │ │ ├── IllustrationFields.scala │ │ │ ├── IllustrationId.scala │ │ │ ├── IllustrationRepo.scala │ │ │ ├── IllustrationRepoImpl.scala │ │ │ ├── IllustrationRepoMock.scala │ │ │ ├── IllustrationRow.scala │ │ │ └── IllustrationRowUnsaved.scala │ │ ├── location │ │ │ ├── LocationFields.scala │ │ │ ├── LocationId.scala │ │ │ ├── LocationRepo.scala │ │ │ ├── LocationRepoImpl.scala │ │ │ ├── LocationRepoMock.scala │ │ │ ├── LocationRow.scala │ │ │ └── LocationRowUnsaved.scala │ │ ├── product │ │ │ ├── ProductFields.scala │ │ │ ├── ProductId.scala │ │ │ ├── ProductRepo.scala │ │ │ ├── ProductRepoImpl.scala │ │ │ ├── ProductRepoMock.scala │ │ │ ├── ProductRow.scala │ │ │ └── ProductRowUnsaved.scala │ │ ├── productcategory │ │ │ ├── ProductcategoryFields.scala │ │ │ ├── ProductcategoryId.scala │ │ │ ├── ProductcategoryRepo.scala │ │ │ ├── ProductcategoryRepoImpl.scala │ │ │ ├── ProductcategoryRepoMock.scala │ │ │ ├── ProductcategoryRow.scala │ │ │ └── ProductcategoryRowUnsaved.scala │ │ ├── productcosthistory │ │ │ ├── ProductcosthistoryFields.scala │ │ │ ├── ProductcosthistoryId.scala │ │ │ ├── ProductcosthistoryRepo.scala │ │ │ ├── ProductcosthistoryRepoImpl.scala │ │ │ ├── ProductcosthistoryRepoMock.scala │ │ │ ├── ProductcosthistoryRow.scala │ │ │ └── ProductcosthistoryRowUnsaved.scala │ │ ├── productdescription │ │ │ ├── ProductdescriptionFields.scala │ │ │ ├── ProductdescriptionId.scala │ │ │ ├── ProductdescriptionRepo.scala │ │ │ ├── ProductdescriptionRepoImpl.scala │ │ │ ├── ProductdescriptionRepoMock.scala │ │ │ ├── ProductdescriptionRow.scala │ │ │ └── ProductdescriptionRowUnsaved.scala │ │ ├── productdocument │ │ │ ├── ProductdocumentFields.scala │ │ │ ├── ProductdocumentId.scala │ │ │ ├── ProductdocumentRepo.scala │ │ │ ├── ProductdocumentRepoImpl.scala │ │ │ ├── ProductdocumentRepoMock.scala │ │ │ ├── ProductdocumentRow.scala │ │ │ └── ProductdocumentRowUnsaved.scala │ │ ├── productinventory │ │ │ ├── ProductinventoryFields.scala │ │ │ ├── ProductinventoryId.scala │ │ │ ├── ProductinventoryRepo.scala │ │ │ ├── ProductinventoryRepoImpl.scala │ │ │ ├── ProductinventoryRepoMock.scala │ │ │ ├── ProductinventoryRow.scala │ │ │ └── ProductinventoryRowUnsaved.scala │ │ ├── productlistpricehistory │ │ │ ├── ProductlistpricehistoryFields.scala │ │ │ ├── ProductlistpricehistoryId.scala │ │ │ ├── ProductlistpricehistoryRepo.scala │ │ │ ├── ProductlistpricehistoryRepoImpl.scala │ │ │ ├── ProductlistpricehistoryRepoMock.scala │ │ │ ├── ProductlistpricehistoryRow.scala │ │ │ └── ProductlistpricehistoryRowUnsaved.scala │ │ ├── productmodel │ │ │ ├── ProductmodelFields.scala │ │ │ ├── ProductmodelId.scala │ │ │ ├── ProductmodelRepo.scala │ │ │ ├── ProductmodelRepoImpl.scala │ │ │ ├── ProductmodelRepoMock.scala │ │ │ ├── ProductmodelRow.scala │ │ │ └── ProductmodelRowUnsaved.scala │ │ ├── productmodelillustration │ │ │ ├── ProductmodelillustrationFields.scala │ │ │ ├── ProductmodelillustrationId.scala │ │ │ ├── ProductmodelillustrationRepo.scala │ │ │ ├── ProductmodelillustrationRepoImpl.scala │ │ │ ├── ProductmodelillustrationRepoMock.scala │ │ │ ├── ProductmodelillustrationRow.scala │ │ │ └── ProductmodelillustrationRowUnsaved.scala │ │ ├── productmodelproductdescriptionculture │ │ │ ├── ProductmodelproductdescriptioncultureFields.scala │ │ │ ├── ProductmodelproductdescriptioncultureId.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepo.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepoImpl.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepoMock.scala │ │ │ ├── ProductmodelproductdescriptioncultureRow.scala │ │ │ └── ProductmodelproductdescriptioncultureRowUnsaved.scala │ │ ├── productphoto │ │ │ ├── ProductphotoFields.scala │ │ │ ├── ProductphotoId.scala │ │ │ ├── ProductphotoRepo.scala │ │ │ ├── ProductphotoRepoImpl.scala │ │ │ ├── ProductphotoRepoMock.scala │ │ │ ├── ProductphotoRow.scala │ │ │ └── ProductphotoRowUnsaved.scala │ │ ├── productproductphoto │ │ │ ├── ProductproductphotoFields.scala │ │ │ ├── ProductproductphotoId.scala │ │ │ ├── ProductproductphotoRepo.scala │ │ │ ├── ProductproductphotoRepoImpl.scala │ │ │ ├── ProductproductphotoRepoMock.scala │ │ │ ├── ProductproductphotoRow.scala │ │ │ └── ProductproductphotoRowUnsaved.scala │ │ ├── productreview │ │ │ ├── ProductreviewFields.scala │ │ │ ├── ProductreviewId.scala │ │ │ ├── ProductreviewRepo.scala │ │ │ ├── ProductreviewRepoImpl.scala │ │ │ ├── ProductreviewRepoMock.scala │ │ │ ├── ProductreviewRow.scala │ │ │ └── ProductreviewRowUnsaved.scala │ │ ├── productsubcategory │ │ │ ├── ProductsubcategoryFields.scala │ │ │ ├── ProductsubcategoryId.scala │ │ │ ├── ProductsubcategoryRepo.scala │ │ │ ├── ProductsubcategoryRepoImpl.scala │ │ │ ├── ProductsubcategoryRepoMock.scala │ │ │ ├── ProductsubcategoryRow.scala │ │ │ └── ProductsubcategoryRowUnsaved.scala │ │ ├── scrapreason │ │ │ ├── ScrapreasonFields.scala │ │ │ ├── ScrapreasonId.scala │ │ │ ├── ScrapreasonRepo.scala │ │ │ ├── ScrapreasonRepoImpl.scala │ │ │ ├── ScrapreasonRepoMock.scala │ │ │ ├── ScrapreasonRow.scala │ │ │ └── ScrapreasonRowUnsaved.scala │ │ ├── transactionhistory │ │ │ ├── TransactionhistoryFields.scala │ │ │ ├── TransactionhistoryId.scala │ │ │ ├── TransactionhistoryRepo.scala │ │ │ ├── TransactionhistoryRepoImpl.scala │ │ │ ├── TransactionhistoryRepoMock.scala │ │ │ ├── TransactionhistoryRow.scala │ │ │ └── TransactionhistoryRowUnsaved.scala │ │ ├── transactionhistoryarchive │ │ │ ├── TransactionhistoryarchiveFields.scala │ │ │ ├── TransactionhistoryarchiveId.scala │ │ │ ├── TransactionhistoryarchiveRepo.scala │ │ │ ├── TransactionhistoryarchiveRepoImpl.scala │ │ │ ├── TransactionhistoryarchiveRepoMock.scala │ │ │ ├── TransactionhistoryarchiveRow.scala │ │ │ └── TransactionhistoryarchiveRowUnsaved.scala │ │ ├── unitmeasure │ │ │ ├── UnitmeasureFields.scala │ │ │ ├── UnitmeasureId.scala │ │ │ ├── UnitmeasureRepo.scala │ │ │ ├── UnitmeasureRepoImpl.scala │ │ │ ├── UnitmeasureRepoMock.scala │ │ │ ├── UnitmeasureRow.scala │ │ │ └── UnitmeasureRowUnsaved.scala │ │ ├── vproductanddescription │ │ │ ├── VproductanddescriptionMVFields.scala │ │ │ ├── VproductanddescriptionMVRepo.scala │ │ │ ├── VproductanddescriptionMVRepoImpl.scala │ │ │ └── VproductanddescriptionMVRow.scala │ │ ├── vproductmodelcatalogdescription │ │ │ ├── VproductmodelcatalogdescriptionViewFields.scala │ │ │ ├── VproductmodelcatalogdescriptionViewRepo.scala │ │ │ ├── VproductmodelcatalogdescriptionViewRepoImpl.scala │ │ │ └── VproductmodelcatalogdescriptionViewRow.scala │ │ ├── vproductmodelinstructions │ │ │ ├── VproductmodelinstructionsViewFields.scala │ │ │ ├── VproductmodelinstructionsViewRepo.scala │ │ │ ├── VproductmodelinstructionsViewRepoImpl.scala │ │ │ └── VproductmodelinstructionsViewRow.scala │ │ ├── workorder │ │ │ ├── WorkorderFields.scala │ │ │ ├── WorkorderId.scala │ │ │ ├── WorkorderRepo.scala │ │ │ ├── WorkorderRepoImpl.scala │ │ │ ├── WorkorderRepoMock.scala │ │ │ ├── WorkorderRow.scala │ │ │ └── WorkorderRowUnsaved.scala │ │ └── workorderrouting │ │ │ ├── WorkorderroutingFields.scala │ │ │ ├── WorkorderroutingId.scala │ │ │ ├── WorkorderroutingRepo.scala │ │ │ ├── WorkorderroutingRepoImpl.scala │ │ │ ├── WorkorderroutingRepoMock.scala │ │ │ ├── WorkorderroutingRow.scala │ │ │ └── WorkorderroutingRowUnsaved.scala │ │ ├── pu │ │ ├── pod │ │ │ ├── PodViewFields.scala │ │ │ ├── PodViewRepo.scala │ │ │ ├── PodViewRepoImpl.scala │ │ │ └── PodViewRow.scala │ │ ├── poh │ │ │ ├── PohViewFields.scala │ │ │ ├── PohViewRepo.scala │ │ │ ├── PohViewRepoImpl.scala │ │ │ └── PohViewRow.scala │ │ ├── pv │ │ │ ├── PvViewFields.scala │ │ │ ├── PvViewRepo.scala │ │ │ ├── PvViewRepoImpl.scala │ │ │ └── PvViewRow.scala │ │ ├── sm │ │ │ ├── SmViewFields.scala │ │ │ ├── SmViewRepo.scala │ │ │ ├── SmViewRepoImpl.scala │ │ │ └── SmViewRow.scala │ │ └── v │ │ │ ├── VViewFields.scala │ │ │ ├── VViewRepo.scala │ │ │ ├── VViewRepoImpl.scala │ │ │ └── VViewRow.scala │ │ ├── public │ │ ├── AccountNumber.scala │ │ ├── Flag.scala │ │ ├── Mydomain.scala │ │ ├── Myenum.scala │ │ ├── Name.scala │ │ ├── NameStyle.scala │ │ ├── OrderNumber.scala │ │ ├── Phone.scala │ │ ├── ShortText.scala │ │ ├── flaff │ │ │ ├── FlaffFields.scala │ │ │ ├── FlaffId.scala │ │ │ ├── FlaffRepo.scala │ │ │ ├── FlaffRepoImpl.scala │ │ │ ├── FlaffRepoMock.scala │ │ │ └── FlaffRow.scala │ │ ├── identity_test │ │ │ ├── IdentityTestFields.scala │ │ │ ├── IdentityTestId.scala │ │ │ ├── IdentityTestRepo.scala │ │ │ ├── IdentityTestRepoImpl.scala │ │ │ ├── IdentityTestRepoMock.scala │ │ │ ├── IdentityTestRow.scala │ │ │ └── IdentityTestRowUnsaved.scala │ │ ├── issue142 │ │ │ ├── Issue142Fields.scala │ │ │ ├── Issue142Id.scala │ │ │ ├── Issue142Repo.scala │ │ │ ├── Issue142RepoImpl.scala │ │ │ ├── Issue142RepoMock.scala │ │ │ └── Issue142Row.scala │ │ ├── issue142_2 │ │ │ ├── Issue1422Fields.scala │ │ │ ├── Issue1422Repo.scala │ │ │ ├── Issue1422RepoImpl.scala │ │ │ ├── Issue1422RepoMock.scala │ │ │ └── Issue1422Row.scala │ │ ├── only_pk_columns │ │ │ ├── OnlyPkColumnsFields.scala │ │ │ ├── OnlyPkColumnsId.scala │ │ │ ├── OnlyPkColumnsRepo.scala │ │ │ ├── OnlyPkColumnsRepoImpl.scala │ │ │ ├── OnlyPkColumnsRepoMock.scala │ │ │ └── OnlyPkColumnsRow.scala │ │ ├── pgtest │ │ │ ├── PgtestFields.scala │ │ │ ├── PgtestRepo.scala │ │ │ ├── PgtestRepoImpl.scala │ │ │ └── PgtestRow.scala │ │ ├── pgtestnull │ │ │ ├── PgtestnullFields.scala │ │ │ ├── PgtestnullRepo.scala │ │ │ ├── PgtestnullRepoImpl.scala │ │ │ └── PgtestnullRow.scala │ │ ├── table_with_generated_columns │ │ │ ├── TableWithGeneratedColumnsFields.scala │ │ │ ├── TableWithGeneratedColumnsId.scala │ │ │ ├── TableWithGeneratedColumnsRepo.scala │ │ │ ├── TableWithGeneratedColumnsRepoImpl.scala │ │ │ ├── TableWithGeneratedColumnsRepoMock.scala │ │ │ ├── TableWithGeneratedColumnsRow.scala │ │ │ └── TableWithGeneratedColumnsRowUnsaved.scala │ │ ├── test_organisasjon │ │ │ ├── TestOrganisasjonFields.scala │ │ │ ├── TestOrganisasjonId.scala │ │ │ ├── TestOrganisasjonRepo.scala │ │ │ ├── TestOrganisasjonRepoImpl.scala │ │ │ ├── TestOrganisasjonRepoMock.scala │ │ │ └── TestOrganisasjonRow.scala │ │ ├── test_sak_soknadsalternativ │ │ │ ├── TestSakSoknadsalternativFields.scala │ │ │ ├── TestSakSoknadsalternativId.scala │ │ │ ├── TestSakSoknadsalternativRepo.scala │ │ │ ├── TestSakSoknadsalternativRepoImpl.scala │ │ │ ├── TestSakSoknadsalternativRepoMock.scala │ │ │ └── TestSakSoknadsalternativRow.scala │ │ ├── test_utdanningstilbud │ │ │ ├── TestUtdanningstilbudFields.scala │ │ │ ├── TestUtdanningstilbudId.scala │ │ │ ├── TestUtdanningstilbudRepo.scala │ │ │ ├── TestUtdanningstilbudRepoImpl.scala │ │ │ ├── TestUtdanningstilbudRepoMock.scala │ │ │ └── TestUtdanningstilbudRow.scala │ │ ├── title │ │ │ ├── TitleFields.scala │ │ │ ├── TitleId.scala │ │ │ ├── TitleRepo.scala │ │ │ ├── TitleRepoImpl.scala │ │ │ ├── TitleRepoMock.scala │ │ │ └── TitleRow.scala │ │ ├── title_domain │ │ │ ├── TitleDomainFields.scala │ │ │ ├── TitleDomainId.scala │ │ │ ├── TitleDomainRepo.scala │ │ │ ├── TitleDomainRepoImpl.scala │ │ │ ├── TitleDomainRepoMock.scala │ │ │ └── TitleDomainRow.scala │ │ ├── titledperson │ │ │ ├── TitledpersonFields.scala │ │ │ ├── TitledpersonRepo.scala │ │ │ ├── TitledpersonRepoImpl.scala │ │ │ └── TitledpersonRow.scala │ │ └── users │ │ │ ├── UsersFields.scala │ │ │ ├── UsersId.scala │ │ │ ├── UsersRepo.scala │ │ │ ├── UsersRepoImpl.scala │ │ │ ├── UsersRepoMock.scala │ │ │ ├── UsersRow.scala │ │ │ └── UsersRowUnsaved.scala │ │ ├── purchasing │ │ ├── productvendor │ │ │ ├── ProductvendorFields.scala │ │ │ ├── ProductvendorId.scala │ │ │ ├── ProductvendorRepo.scala │ │ │ ├── ProductvendorRepoImpl.scala │ │ │ ├── ProductvendorRepoMock.scala │ │ │ ├── ProductvendorRow.scala │ │ │ └── ProductvendorRowUnsaved.scala │ │ ├── purchaseorderdetail │ │ │ ├── PurchaseorderdetailFields.scala │ │ │ ├── PurchaseorderdetailId.scala │ │ │ ├── PurchaseorderdetailRepo.scala │ │ │ ├── PurchaseorderdetailRepoImpl.scala │ │ │ ├── PurchaseorderdetailRow.scala │ │ │ └── PurchaseorderdetailRowUnsaved.scala │ │ ├── purchaseorderheader │ │ │ ├── PurchaseorderheaderFields.scala │ │ │ ├── PurchaseorderheaderId.scala │ │ │ ├── PurchaseorderheaderRepo.scala │ │ │ ├── PurchaseorderheaderRepoImpl.scala │ │ │ ├── PurchaseorderheaderRepoMock.scala │ │ │ ├── PurchaseorderheaderRow.scala │ │ │ └── PurchaseorderheaderRowUnsaved.scala │ │ ├── shipmethod │ │ │ ├── ShipmethodFields.scala │ │ │ ├── ShipmethodId.scala │ │ │ ├── ShipmethodRepo.scala │ │ │ ├── ShipmethodRepoImpl.scala │ │ │ ├── ShipmethodRepoMock.scala │ │ │ ├── ShipmethodRow.scala │ │ │ └── ShipmethodRowUnsaved.scala │ │ ├── vendor │ │ │ ├── VendorFields.scala │ │ │ ├── VendorRepo.scala │ │ │ ├── VendorRepoImpl.scala │ │ │ ├── VendorRepoMock.scala │ │ │ ├── VendorRow.scala │ │ │ └── VendorRowUnsaved.scala │ │ ├── vvendorwithaddresses │ │ │ ├── VvendorwithaddressesViewFields.scala │ │ │ ├── VvendorwithaddressesViewRepo.scala │ │ │ ├── VvendorwithaddressesViewRepoImpl.scala │ │ │ └── VvendorwithaddressesViewRow.scala │ │ └── vvendorwithcontacts │ │ │ ├── VvendorwithcontactsViewFields.scala │ │ │ ├── VvendorwithcontactsViewRepo.scala │ │ │ ├── VvendorwithcontactsViewRepoImpl.scala │ │ │ └── VvendorwithcontactsViewRow.scala │ │ ├── sa │ │ ├── c │ │ │ ├── CViewFields.scala │ │ │ ├── CViewRepo.scala │ │ │ ├── CViewRepoImpl.scala │ │ │ └── CViewRow.scala │ │ ├── cc │ │ │ ├── CcViewFields.scala │ │ │ ├── CcViewRepo.scala │ │ │ ├── CcViewRepoImpl.scala │ │ │ └── CcViewRow.scala │ │ ├── cr │ │ │ ├── CrViewFields.scala │ │ │ ├── CrViewRepo.scala │ │ │ ├── CrViewRepoImpl.scala │ │ │ └── CrViewRow.scala │ │ ├── crc │ │ │ ├── CrcViewFields.scala │ │ │ ├── CrcViewRepo.scala │ │ │ ├── CrcViewRepoImpl.scala │ │ │ └── CrcViewRow.scala │ │ ├── cu │ │ │ ├── CuViewFields.scala │ │ │ ├── CuViewRepo.scala │ │ │ ├── CuViewRepoImpl.scala │ │ │ └── CuViewRow.scala │ │ ├── pcc │ │ │ ├── PccViewFields.scala │ │ │ ├── PccViewRepo.scala │ │ │ ├── PccViewRepoImpl.scala │ │ │ └── PccViewRow.scala │ │ ├── s │ │ │ ├── SViewFields.scala │ │ │ ├── SViewRepo.scala │ │ │ ├── SViewRepoImpl.scala │ │ │ └── SViewRow.scala │ │ ├── sci │ │ │ ├── SciViewFields.scala │ │ │ ├── SciViewRepo.scala │ │ │ ├── SciViewRepoImpl.scala │ │ │ └── SciViewRow.scala │ │ ├── so │ │ │ ├── SoViewFields.scala │ │ │ ├── SoViewRepo.scala │ │ │ ├── SoViewRepoImpl.scala │ │ │ └── SoViewRow.scala │ │ ├── sod │ │ │ ├── SodViewFields.scala │ │ │ ├── SodViewRepo.scala │ │ │ ├── SodViewRepoImpl.scala │ │ │ └── SodViewRow.scala │ │ ├── soh │ │ │ ├── SohViewFields.scala │ │ │ ├── SohViewRepo.scala │ │ │ ├── SohViewRepoImpl.scala │ │ │ └── SohViewRow.scala │ │ ├── sohsr │ │ │ ├── SohsrViewFields.scala │ │ │ ├── SohsrViewRepo.scala │ │ │ ├── SohsrViewRepoImpl.scala │ │ │ └── SohsrViewRow.scala │ │ ├── sop │ │ │ ├── SopViewFields.scala │ │ │ ├── SopViewRepo.scala │ │ │ ├── SopViewRepoImpl.scala │ │ │ └── SopViewRow.scala │ │ ├── sp │ │ │ ├── SpViewFields.scala │ │ │ ├── SpViewRepo.scala │ │ │ ├── SpViewRepoImpl.scala │ │ │ └── SpViewRow.scala │ │ ├── spqh │ │ │ ├── SpqhViewFields.scala │ │ │ ├── SpqhViewRepo.scala │ │ │ ├── SpqhViewRepoImpl.scala │ │ │ └── SpqhViewRow.scala │ │ ├── sr │ │ │ ├── SrViewFields.scala │ │ │ ├── SrViewRepo.scala │ │ │ ├── SrViewRepoImpl.scala │ │ │ └── SrViewRow.scala │ │ ├── st │ │ │ ├── StViewFields.scala │ │ │ ├── StViewRepo.scala │ │ │ ├── StViewRepoImpl.scala │ │ │ └── StViewRow.scala │ │ ├── sth │ │ │ ├── SthViewFields.scala │ │ │ ├── SthViewRepo.scala │ │ │ ├── SthViewRepoImpl.scala │ │ │ └── SthViewRow.scala │ │ └── tr │ │ │ ├── TrViewFields.scala │ │ │ ├── TrViewRepo.scala │ │ │ ├── TrViewRepoImpl.scala │ │ │ └── TrViewRow.scala │ │ ├── sales │ │ ├── countryregioncurrency │ │ │ ├── CountryregioncurrencyFields.scala │ │ │ ├── CountryregioncurrencyId.scala │ │ │ ├── CountryregioncurrencyRepo.scala │ │ │ ├── CountryregioncurrencyRepoImpl.scala │ │ │ ├── CountryregioncurrencyRepoMock.scala │ │ │ ├── CountryregioncurrencyRow.scala │ │ │ └── CountryregioncurrencyRowUnsaved.scala │ │ ├── creditcard │ │ │ ├── CreditcardFields.scala │ │ │ ├── CreditcardRepo.scala │ │ │ ├── CreditcardRepoImpl.scala │ │ │ ├── CreditcardRepoMock.scala │ │ │ ├── CreditcardRow.scala │ │ │ └── CreditcardRowUnsaved.scala │ │ ├── currency │ │ │ ├── CurrencyFields.scala │ │ │ ├── CurrencyId.scala │ │ │ ├── CurrencyRepo.scala │ │ │ ├── CurrencyRepoImpl.scala │ │ │ ├── CurrencyRepoMock.scala │ │ │ ├── CurrencyRow.scala │ │ │ └── CurrencyRowUnsaved.scala │ │ ├── currencyrate │ │ │ ├── CurrencyrateFields.scala │ │ │ ├── CurrencyrateId.scala │ │ │ ├── CurrencyrateRepo.scala │ │ │ ├── CurrencyrateRepoImpl.scala │ │ │ ├── CurrencyrateRepoMock.scala │ │ │ ├── CurrencyrateRow.scala │ │ │ └── CurrencyrateRowUnsaved.scala │ │ ├── customer │ │ │ ├── CustomerFields.scala │ │ │ ├── CustomerId.scala │ │ │ ├── CustomerRepo.scala │ │ │ ├── CustomerRepoImpl.scala │ │ │ ├── CustomerRepoMock.scala │ │ │ ├── CustomerRow.scala │ │ │ └── CustomerRowUnsaved.scala │ │ ├── personcreditcard │ │ │ ├── PersoncreditcardFields.scala │ │ │ ├── PersoncreditcardId.scala │ │ │ ├── PersoncreditcardRepo.scala │ │ │ ├── PersoncreditcardRepoImpl.scala │ │ │ ├── PersoncreditcardRepoMock.scala │ │ │ ├── PersoncreditcardRow.scala │ │ │ └── PersoncreditcardRowUnsaved.scala │ │ ├── salesorderdetail │ │ │ ├── SalesorderdetailFields.scala │ │ │ ├── SalesorderdetailId.scala │ │ │ ├── SalesorderdetailRepo.scala │ │ │ ├── SalesorderdetailRepoImpl.scala │ │ │ ├── SalesorderdetailRepoMock.scala │ │ │ ├── SalesorderdetailRow.scala │ │ │ └── SalesorderdetailRowUnsaved.scala │ │ ├── salesorderheader │ │ │ ├── SalesorderheaderFields.scala │ │ │ ├── SalesorderheaderId.scala │ │ │ ├── SalesorderheaderRepo.scala │ │ │ ├── SalesorderheaderRepoImpl.scala │ │ │ ├── SalesorderheaderRepoMock.scala │ │ │ ├── SalesorderheaderRow.scala │ │ │ └── SalesorderheaderRowUnsaved.scala │ │ ├── salesorderheadersalesreason │ │ │ ├── SalesorderheadersalesreasonFields.scala │ │ │ ├── SalesorderheadersalesreasonId.scala │ │ │ ├── SalesorderheadersalesreasonRepo.scala │ │ │ ├── SalesorderheadersalesreasonRepoImpl.scala │ │ │ ├── SalesorderheadersalesreasonRepoMock.scala │ │ │ ├── SalesorderheadersalesreasonRow.scala │ │ │ └── SalesorderheadersalesreasonRowUnsaved.scala │ │ ├── salesperson │ │ │ ├── SalespersonFields.scala │ │ │ ├── SalespersonRepo.scala │ │ │ ├── SalespersonRepoImpl.scala │ │ │ ├── SalespersonRepoMock.scala │ │ │ ├── SalespersonRow.scala │ │ │ └── SalespersonRowUnsaved.scala │ │ ├── salespersonquotahistory │ │ │ ├── SalespersonquotahistoryFields.scala │ │ │ ├── SalespersonquotahistoryId.scala │ │ │ ├── SalespersonquotahistoryRepo.scala │ │ │ ├── SalespersonquotahistoryRepoImpl.scala │ │ │ ├── SalespersonquotahistoryRepoMock.scala │ │ │ ├── SalespersonquotahistoryRow.scala │ │ │ └── SalespersonquotahistoryRowUnsaved.scala │ │ ├── salesreason │ │ │ ├── SalesreasonFields.scala │ │ │ ├── SalesreasonId.scala │ │ │ ├── SalesreasonRepo.scala │ │ │ ├── SalesreasonRepoImpl.scala │ │ │ ├── SalesreasonRepoMock.scala │ │ │ ├── SalesreasonRow.scala │ │ │ └── SalesreasonRowUnsaved.scala │ │ ├── salestaxrate │ │ │ ├── SalestaxrateFields.scala │ │ │ ├── SalestaxrateId.scala │ │ │ ├── SalestaxrateRepo.scala │ │ │ ├── SalestaxrateRepoImpl.scala │ │ │ ├── SalestaxrateRepoMock.scala │ │ │ ├── SalestaxrateRow.scala │ │ │ └── SalestaxrateRowUnsaved.scala │ │ ├── salesterritory │ │ │ ├── SalesterritoryFields.scala │ │ │ ├── SalesterritoryId.scala │ │ │ ├── SalesterritoryRepo.scala │ │ │ ├── SalesterritoryRepoImpl.scala │ │ │ ├── SalesterritoryRepoMock.scala │ │ │ ├── SalesterritoryRow.scala │ │ │ └── SalesterritoryRowUnsaved.scala │ │ ├── salesterritoryhistory │ │ │ ├── SalesterritoryhistoryFields.scala │ │ │ ├── SalesterritoryhistoryId.scala │ │ │ ├── SalesterritoryhistoryRepo.scala │ │ │ ├── SalesterritoryhistoryRepoImpl.scala │ │ │ ├── SalesterritoryhistoryRepoMock.scala │ │ │ ├── SalesterritoryhistoryRow.scala │ │ │ └── SalesterritoryhistoryRowUnsaved.scala │ │ ├── shoppingcartitem │ │ │ ├── ShoppingcartitemFields.scala │ │ │ ├── ShoppingcartitemId.scala │ │ │ ├── ShoppingcartitemRepo.scala │ │ │ ├── ShoppingcartitemRepoImpl.scala │ │ │ ├── ShoppingcartitemRepoMock.scala │ │ │ ├── ShoppingcartitemRow.scala │ │ │ └── ShoppingcartitemRowUnsaved.scala │ │ ├── specialoffer │ │ │ ├── SpecialofferFields.scala │ │ │ ├── SpecialofferId.scala │ │ │ ├── SpecialofferRepo.scala │ │ │ ├── SpecialofferRepoImpl.scala │ │ │ ├── SpecialofferRepoMock.scala │ │ │ ├── SpecialofferRow.scala │ │ │ └── SpecialofferRowUnsaved.scala │ │ ├── specialofferproduct │ │ │ ├── SpecialofferproductFields.scala │ │ │ ├── SpecialofferproductId.scala │ │ │ ├── SpecialofferproductRepo.scala │ │ │ ├── SpecialofferproductRepoImpl.scala │ │ │ ├── SpecialofferproductRepoMock.scala │ │ │ ├── SpecialofferproductRow.scala │ │ │ └── SpecialofferproductRowUnsaved.scala │ │ ├── store │ │ │ ├── StoreFields.scala │ │ │ ├── StoreRepo.scala │ │ │ ├── StoreRepoImpl.scala │ │ │ ├── StoreRepoMock.scala │ │ │ ├── StoreRow.scala │ │ │ └── StoreRowUnsaved.scala │ │ ├── vindividualcustomer │ │ │ ├── VindividualcustomerViewFields.scala │ │ │ ├── VindividualcustomerViewRepo.scala │ │ │ ├── VindividualcustomerViewRepoImpl.scala │ │ │ └── VindividualcustomerViewRow.scala │ │ ├── vpersondemographics │ │ │ ├── VpersondemographicsViewFields.scala │ │ │ ├── VpersondemographicsViewRepo.scala │ │ │ ├── VpersondemographicsViewRepoImpl.scala │ │ │ └── VpersondemographicsViewRow.scala │ │ ├── vsalesperson │ │ │ ├── VsalespersonViewFields.scala │ │ │ ├── VsalespersonViewRepo.scala │ │ │ ├── VsalespersonViewRepoImpl.scala │ │ │ └── VsalespersonViewRow.scala │ │ ├── vsalespersonsalesbyfiscalyears │ │ │ ├── VsalespersonsalesbyfiscalyearsViewFields.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepo.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepoImpl.scala │ │ │ └── VsalespersonsalesbyfiscalyearsViewRow.scala │ │ ├── vsalespersonsalesbyfiscalyearsdata │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewFields.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepo.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepoImpl.scala │ │ │ └── VsalespersonsalesbyfiscalyearsdataViewRow.scala │ │ ├── vstorewithaddresses │ │ │ ├── VstorewithaddressesViewFields.scala │ │ │ ├── VstorewithaddressesViewRepo.scala │ │ │ ├── VstorewithaddressesViewRepoImpl.scala │ │ │ └── VstorewithaddressesViewRow.scala │ │ ├── vstorewithcontacts │ │ │ ├── VstorewithcontactsViewFields.scala │ │ │ ├── VstorewithcontactsViewRepo.scala │ │ │ ├── VstorewithcontactsViewRepoImpl.scala │ │ │ └── VstorewithcontactsViewRow.scala │ │ └── vstorewithdemographics │ │ │ ├── VstorewithdemographicsViewFields.scala │ │ │ ├── VstorewithdemographicsViewRepo.scala │ │ │ ├── VstorewithdemographicsViewRepoImpl.scala │ │ │ └── VstorewithdemographicsViewRow.scala │ │ ├── update_person │ │ ├── UpdatePersonSqlRepo.scala │ │ └── UpdatePersonSqlRepoImpl.scala │ │ └── update_person_returning │ │ ├── UpdatePersonReturningSqlRepo.scala │ │ ├── UpdatePersonReturningSqlRepoImpl.scala │ │ └── UpdatePersonReturningSqlRow.scala └── src │ └── scala │ └── adventureworks │ ├── ArrayTest.scala │ ├── DSLTest.scala │ ├── DomainInsert.scala │ ├── IdentityTest.scala │ ├── JsonEquals.scala │ ├── OpenEnumTest.scala │ ├── RecordTest.scala │ ├── Reverse.scala │ ├── SeekDbTest.scala │ ├── SnapshotTest.scala │ ├── UpsertTwiceTest.scala │ ├── humanresources │ ├── department │ │ └── DepartmentTest.scala │ └── employee │ │ └── EmployeeTest.scala │ ├── person │ ├── MultiRepoTest.scala │ └── businessentityaddress │ │ └── BusinessentityaddressTest.scala │ ├── person_detail │ └── PersonDetailTest.scala │ ├── production │ └── product │ │ ├── CompositeIdsTest.scala │ │ ├── ProductTest.scala │ │ ├── RepoTest.scala │ │ └── SeekTest.scala │ ├── publicc │ └── UsersRepoTest.scala │ ├── update_person_returning │ └── UpdatePersonReturningSqlRepoTest.scala │ ├── userdefined │ ├── CustomCreditcardId.scala │ └── FirstName.scala │ └── withConnection.scala ├── typo-tester-kotlin ├── build.gradle.kts ├── generated-and-checked-in │ └── adventureworks │ │ ├── TestDomainInsert.kt │ │ ├── customtypes │ │ ├── Defaulted.kt │ │ ├── TypoBox.kt │ │ ├── TypoBytea.kt │ │ ├── TypoCircle.kt │ │ ├── TypoHStore.kt │ │ ├── TypoInet.kt │ │ ├── TypoInstant.kt │ │ ├── TypoInt2Vector.kt │ │ ├── TypoInterval.kt │ │ ├── TypoJson.kt │ │ ├── TypoJsonb.kt │ │ ├── TypoLine.kt │ │ ├── TypoLineSegment.kt │ │ ├── TypoLocalDate.kt │ │ ├── TypoLocalDateTime.kt │ │ ├── TypoLocalTime.kt │ │ ├── TypoMoney.kt │ │ ├── TypoOffsetTime.kt │ │ ├── TypoPath.kt │ │ ├── TypoPoint.kt │ │ ├── TypoPolygon.kt │ │ ├── TypoRecord.kt │ │ ├── TypoShort.kt │ │ ├── TypoUUID.kt │ │ ├── TypoUnknownCitext.kt │ │ ├── TypoVector.kt │ │ └── TypoXml.kt │ │ ├── hr │ │ ├── d │ │ │ ├── DViewRepo.kt │ │ │ ├── DViewRepoImpl.kt │ │ │ └── DViewRow.kt │ │ ├── e │ │ │ ├── EViewRepo.kt │ │ │ ├── EViewRepoImpl.kt │ │ │ └── EViewRow.kt │ │ ├── edh │ │ │ ├── EdhViewRepo.kt │ │ │ ├── EdhViewRepoImpl.kt │ │ │ └── EdhViewRow.kt │ │ ├── eph │ │ │ ├── EphViewRepo.kt │ │ │ ├── EphViewRepoImpl.kt │ │ │ └── EphViewRow.kt │ │ ├── jc │ │ │ ├── JcViewRepo.kt │ │ │ ├── JcViewRepoImpl.kt │ │ │ └── JcViewRow.kt │ │ └── s │ │ │ ├── SViewRepo.kt │ │ │ ├── SViewRepoImpl.kt │ │ │ └── SViewRow.kt │ │ ├── humanresources │ │ ├── department │ │ │ ├── DepartmentId.kt │ │ │ ├── DepartmentRepo.kt │ │ │ ├── DepartmentRepoImpl.kt │ │ │ ├── DepartmentRepoMock.kt │ │ │ ├── DepartmentRow.kt │ │ │ └── DepartmentRowUnsaved.kt │ │ ├── employee │ │ │ ├── EmployeeRepo.kt │ │ │ ├── EmployeeRepoImpl.kt │ │ │ ├── EmployeeRepoMock.kt │ │ │ ├── EmployeeRow.kt │ │ │ └── EmployeeRowUnsaved.kt │ │ ├── employeedepartmenthistory │ │ │ ├── EmployeedepartmenthistoryId.kt │ │ │ ├── EmployeedepartmenthistoryRepo.kt │ │ │ ├── EmployeedepartmenthistoryRepoImpl.kt │ │ │ ├── EmployeedepartmenthistoryRepoMock.kt │ │ │ ├── EmployeedepartmenthistoryRow.kt │ │ │ └── EmployeedepartmenthistoryRowUnsaved.kt │ │ ├── employeepayhistory │ │ │ ├── EmployeepayhistoryId.kt │ │ │ ├── EmployeepayhistoryRepo.kt │ │ │ ├── EmployeepayhistoryRepoImpl.kt │ │ │ ├── EmployeepayhistoryRepoMock.kt │ │ │ ├── EmployeepayhistoryRow.kt │ │ │ └── EmployeepayhistoryRowUnsaved.kt │ │ ├── jobcandidate │ │ │ ├── JobcandidateId.kt │ │ │ ├── JobcandidateRepo.kt │ │ │ ├── JobcandidateRepoImpl.kt │ │ │ ├── JobcandidateRepoMock.kt │ │ │ ├── JobcandidateRow.kt │ │ │ └── JobcandidateRowUnsaved.kt │ │ ├── shift │ │ │ ├── ShiftId.kt │ │ │ ├── ShiftRepo.kt │ │ │ ├── ShiftRepoImpl.kt │ │ │ ├── ShiftRepoMock.kt │ │ │ ├── ShiftRow.kt │ │ │ └── ShiftRowUnsaved.kt │ │ ├── vemployee │ │ │ ├── VemployeeViewRepo.kt │ │ │ ├── VemployeeViewRepoImpl.kt │ │ │ └── VemployeeViewRow.kt │ │ ├── vemployeedepartment │ │ │ ├── VemployeedepartmentViewRepo.kt │ │ │ ├── VemployeedepartmentViewRepoImpl.kt │ │ │ └── VemployeedepartmentViewRow.kt │ │ ├── vemployeedepartmenthistory │ │ │ ├── VemployeedepartmenthistoryViewRepo.kt │ │ │ ├── VemployeedepartmenthistoryViewRepoImpl.kt │ │ │ └── VemployeedepartmenthistoryViewRow.kt │ │ ├── vjobcandidate │ │ │ ├── VjobcandidateViewRepo.kt │ │ │ ├── VjobcandidateViewRepoImpl.kt │ │ │ └── VjobcandidateViewRow.kt │ │ ├── vjobcandidateeducation │ │ │ ├── VjobcandidateeducationViewRepo.kt │ │ │ ├── VjobcandidateeducationViewRepoImpl.kt │ │ │ └── VjobcandidateeducationViewRow.kt │ │ └── vjobcandidateemployment │ │ │ ├── VjobcandidateemploymentViewRepo.kt │ │ │ ├── VjobcandidateemploymentViewRepoImpl.kt │ │ │ └── VjobcandidateemploymentViewRow.kt │ │ ├── information_schema │ │ ├── CardinalNumber.kt │ │ ├── CharacterData.kt │ │ ├── SqlIdentifier.kt │ │ ├── TimeStamp.kt │ │ └── YesOrNo.kt │ │ ├── pe │ │ ├── a │ │ │ ├── AViewRepo.kt │ │ │ ├── AViewRepoImpl.kt │ │ │ └── AViewRow.kt │ │ ├── at │ │ │ ├── AtViewRepo.kt │ │ │ ├── AtViewRepoImpl.kt │ │ │ └── AtViewRow.kt │ │ ├── be │ │ │ ├── BeViewRepo.kt │ │ │ ├── BeViewRepoImpl.kt │ │ │ └── BeViewRow.kt │ │ ├── bea │ │ │ ├── BeaViewRepo.kt │ │ │ ├── BeaViewRepoImpl.kt │ │ │ └── BeaViewRow.kt │ │ ├── bec │ │ │ ├── BecViewRepo.kt │ │ │ ├── BecViewRepoImpl.kt │ │ │ └── BecViewRow.kt │ │ ├── cr │ │ │ ├── CrViewRepo.kt │ │ │ ├── CrViewRepoImpl.kt │ │ │ └── CrViewRow.kt │ │ ├── ct │ │ │ ├── CtViewRepo.kt │ │ │ ├── CtViewRepoImpl.kt │ │ │ └── CtViewRow.kt │ │ ├── e │ │ │ ├── EViewRepo.kt │ │ │ ├── EViewRepoImpl.kt │ │ │ └── EViewRow.kt │ │ ├── p │ │ │ ├── PViewRepo.kt │ │ │ ├── PViewRepoImpl.kt │ │ │ └── PViewRow.kt │ │ ├── pa │ │ │ ├── PaViewRepo.kt │ │ │ ├── PaViewRepoImpl.kt │ │ │ └── PaViewRow.kt │ │ ├── pnt │ │ │ ├── PntViewRepo.kt │ │ │ ├── PntViewRepoImpl.kt │ │ │ └── PntViewRow.kt │ │ ├── pp │ │ │ ├── PpViewRepo.kt │ │ │ ├── PpViewRepoImpl.kt │ │ │ └── PpViewRow.kt │ │ └── sp │ │ │ ├── SpViewRepo.kt │ │ │ ├── SpViewRepoImpl.kt │ │ │ └── SpViewRow.kt │ │ ├── person │ │ ├── address │ │ │ ├── AddressId.kt │ │ │ ├── AddressRepo.kt │ │ │ ├── AddressRepoImpl.kt │ │ │ ├── AddressRepoMock.kt │ │ │ ├── AddressRow.kt │ │ │ └── AddressRowUnsaved.kt │ │ ├── addresstype │ │ │ ├── AddresstypeId.kt │ │ │ ├── AddresstypeRepo.kt │ │ │ ├── AddresstypeRepoImpl.kt │ │ │ ├── AddresstypeRepoMock.kt │ │ │ ├── AddresstypeRow.kt │ │ │ └── AddresstypeRowUnsaved.kt │ │ ├── businessentity │ │ │ ├── BusinessentityId.kt │ │ │ ├── BusinessentityRepo.kt │ │ │ ├── BusinessentityRepoImpl.kt │ │ │ ├── BusinessentityRepoMock.kt │ │ │ ├── BusinessentityRow.kt │ │ │ └── BusinessentityRowUnsaved.kt │ │ ├── businessentityaddress │ │ │ ├── BusinessentityaddressId.kt │ │ │ ├── BusinessentityaddressRepo.kt │ │ │ ├── BusinessentityaddressRepoImpl.kt │ │ │ ├── BusinessentityaddressRepoMock.kt │ │ │ ├── BusinessentityaddressRow.kt │ │ │ └── BusinessentityaddressRowUnsaved.kt │ │ ├── businessentitycontact │ │ │ ├── BusinessentitycontactId.kt │ │ │ ├── BusinessentitycontactRepo.kt │ │ │ ├── BusinessentitycontactRepoImpl.kt │ │ │ ├── BusinessentitycontactRepoMock.kt │ │ │ ├── BusinessentitycontactRow.kt │ │ │ └── BusinessentitycontactRowUnsaved.kt │ │ ├── contacttype │ │ │ ├── ContacttypeId.kt │ │ │ ├── ContacttypeRepo.kt │ │ │ ├── ContacttypeRepoImpl.kt │ │ │ ├── ContacttypeRepoMock.kt │ │ │ ├── ContacttypeRow.kt │ │ │ └── ContacttypeRowUnsaved.kt │ │ ├── countryregion │ │ │ ├── CountryregionId.kt │ │ │ ├── CountryregionRepo.kt │ │ │ ├── CountryregionRepoImpl.kt │ │ │ ├── CountryregionRepoMock.kt │ │ │ ├── CountryregionRow.kt │ │ │ └── CountryregionRowUnsaved.kt │ │ ├── emailaddress │ │ │ ├── EmailaddressId.kt │ │ │ ├── EmailaddressRepo.kt │ │ │ ├── EmailaddressRepoImpl.kt │ │ │ ├── EmailaddressRepoMock.kt │ │ │ ├── EmailaddressRow.kt │ │ │ └── EmailaddressRowUnsaved.kt │ │ ├── password │ │ │ ├── PasswordRepo.kt │ │ │ ├── PasswordRepoImpl.kt │ │ │ ├── PasswordRepoMock.kt │ │ │ ├── PasswordRow.kt │ │ │ └── PasswordRowUnsaved.kt │ │ ├── person │ │ │ ├── PersonRepo.kt │ │ │ ├── PersonRepoImpl.kt │ │ │ ├── PersonRepoMock.kt │ │ │ ├── PersonRow.kt │ │ │ └── PersonRowUnsaved.kt │ │ ├── personphone │ │ │ ├── PersonphoneId.kt │ │ │ ├── PersonphoneRepo.kt │ │ │ ├── PersonphoneRepoImpl.kt │ │ │ ├── PersonphoneRepoMock.kt │ │ │ ├── PersonphoneRow.kt │ │ │ └── PersonphoneRowUnsaved.kt │ │ ├── phonenumbertype │ │ │ ├── PhonenumbertypeId.kt │ │ │ ├── PhonenumbertypeRepo.kt │ │ │ ├── PhonenumbertypeRepoImpl.kt │ │ │ ├── PhonenumbertypeRepoMock.kt │ │ │ ├── PhonenumbertypeRow.kt │ │ │ └── PhonenumbertypeRowUnsaved.kt │ │ ├── stateprovince │ │ │ ├── StateprovinceId.kt │ │ │ ├── StateprovinceRepo.kt │ │ │ ├── StateprovinceRepoImpl.kt │ │ │ ├── StateprovinceRepoMock.kt │ │ │ ├── StateprovinceRow.kt │ │ │ └── StateprovinceRowUnsaved.kt │ │ ├── vadditionalcontactinfo │ │ │ ├── VadditionalcontactinfoViewRepo.kt │ │ │ ├── VadditionalcontactinfoViewRepoImpl.kt │ │ │ └── VadditionalcontactinfoViewRow.kt │ │ └── vstateprovincecountryregion │ │ │ ├── VstateprovincecountryregionMVRepo.kt │ │ │ ├── VstateprovincecountryregionMVRepoImpl.kt │ │ │ └── VstateprovincecountryregionMVRow.kt │ │ ├── person_detail │ │ ├── PersonDetailSqlRepo.kt │ │ ├── PersonDetailSqlRepoImpl.kt │ │ └── PersonDetailSqlRow.kt │ │ ├── person_dynamic │ │ ├── PersonDynamicSqlRepo.kt │ │ ├── PersonDynamicSqlRepoImpl.kt │ │ └── PersonDynamicSqlRow.kt │ │ ├── person_row_join │ │ ├── PersonRowJoinSqlRepo.kt │ │ ├── PersonRowJoinSqlRepoImpl.kt │ │ └── PersonRowJoinSqlRow.kt │ │ ├── pr │ │ ├── bom │ │ │ ├── BomViewRepo.kt │ │ │ ├── BomViewRepoImpl.kt │ │ │ └── BomViewRow.kt │ │ ├── c │ │ │ ├── CViewRepo.kt │ │ │ ├── CViewRepoImpl.kt │ │ │ └── CViewRow.kt │ │ ├── d │ │ │ ├── DViewRepo.kt │ │ │ ├── DViewRepoImpl.kt │ │ │ └── DViewRow.kt │ │ ├── i │ │ │ ├── IViewRepo.kt │ │ │ ├── IViewRepoImpl.kt │ │ │ └── IViewRow.kt │ │ ├── l │ │ │ ├── LViewRepo.kt │ │ │ ├── LViewRepoImpl.kt │ │ │ └── LViewRow.kt │ │ ├── p │ │ │ ├── PViewRepo.kt │ │ │ ├── PViewRepoImpl.kt │ │ │ └── PViewRow.kt │ │ ├── pc │ │ │ ├── PcViewRepo.kt │ │ │ ├── PcViewRepoImpl.kt │ │ │ └── PcViewRow.kt │ │ ├── pch │ │ │ ├── PchViewRepo.kt │ │ │ ├── PchViewRepoImpl.kt │ │ │ └── PchViewRow.kt │ │ ├── pd │ │ │ ├── PdViewRepo.kt │ │ │ ├── PdViewRepoImpl.kt │ │ │ └── PdViewRow.kt │ │ ├── pdoc │ │ │ ├── PdocViewRepo.kt │ │ │ ├── PdocViewRepoImpl.kt │ │ │ └── PdocViewRow.kt │ │ ├── pi │ │ │ ├── PiViewRepo.kt │ │ │ ├── PiViewRepoImpl.kt │ │ │ └── PiViewRow.kt │ │ ├── plph │ │ │ ├── PlphViewRepo.kt │ │ │ ├── PlphViewRepoImpl.kt │ │ │ └── PlphViewRow.kt │ │ ├── pm │ │ │ ├── PmViewRepo.kt │ │ │ ├── PmViewRepoImpl.kt │ │ │ └── PmViewRow.kt │ │ ├── pmi │ │ │ ├── PmiViewRepo.kt │ │ │ ├── PmiViewRepoImpl.kt │ │ │ └── PmiViewRow.kt │ │ ├── pmpdc │ │ │ ├── PmpdcViewRepo.kt │ │ │ ├── PmpdcViewRepoImpl.kt │ │ │ └── PmpdcViewRow.kt │ │ ├── pp │ │ │ ├── PpViewRepo.kt │ │ │ ├── PpViewRepoImpl.kt │ │ │ └── PpViewRow.kt │ │ ├── ppp │ │ │ ├── PppViewRepo.kt │ │ │ ├── PppViewRepoImpl.kt │ │ │ └── PppViewRow.kt │ │ ├── pr │ │ │ ├── PrViewRepo.kt │ │ │ ├── PrViewRepoImpl.kt │ │ │ └── PrViewRow.kt │ │ ├── psc │ │ │ ├── PscViewRepo.kt │ │ │ ├── PscViewRepoImpl.kt │ │ │ └── PscViewRow.kt │ │ ├── sr │ │ │ ├── SrViewRepo.kt │ │ │ ├── SrViewRepoImpl.kt │ │ │ └── SrViewRow.kt │ │ ├── th │ │ │ ├── ThViewRepo.kt │ │ │ ├── ThViewRepoImpl.kt │ │ │ └── ThViewRow.kt │ │ ├── tha │ │ │ ├── ThaViewRepo.kt │ │ │ ├── ThaViewRepoImpl.kt │ │ │ └── ThaViewRow.kt │ │ ├── um │ │ │ ├── UmViewRepo.kt │ │ │ ├── UmViewRepoImpl.kt │ │ │ └── UmViewRow.kt │ │ ├── w │ │ │ ├── WViewRepo.kt │ │ │ ├── WViewRepoImpl.kt │ │ │ └── WViewRow.kt │ │ └── wr │ │ │ ├── WrViewRepo.kt │ │ │ ├── WrViewRepoImpl.kt │ │ │ └── WrViewRow.kt │ │ ├── production │ │ ├── billofmaterials │ │ │ ├── BillofmaterialsRepo.kt │ │ │ ├── BillofmaterialsRepoImpl.kt │ │ │ ├── BillofmaterialsRepoMock.kt │ │ │ ├── BillofmaterialsRow.kt │ │ │ └── BillofmaterialsRowUnsaved.kt │ │ ├── culture │ │ │ ├── CultureId.kt │ │ │ ├── CultureRepo.kt │ │ │ ├── CultureRepoImpl.kt │ │ │ ├── CultureRepoMock.kt │ │ │ ├── CultureRow.kt │ │ │ └── CultureRowUnsaved.kt │ │ ├── document │ │ │ ├── DocumentId.kt │ │ │ ├── DocumentRepo.kt │ │ │ ├── DocumentRepoImpl.kt │ │ │ ├── DocumentRepoMock.kt │ │ │ ├── DocumentRow.kt │ │ │ └── DocumentRowUnsaved.kt │ │ ├── illustration │ │ │ ├── IllustrationId.kt │ │ │ ├── IllustrationRepo.kt │ │ │ ├── IllustrationRepoImpl.kt │ │ │ ├── IllustrationRepoMock.kt │ │ │ ├── IllustrationRow.kt │ │ │ └── IllustrationRowUnsaved.kt │ │ ├── location │ │ │ ├── LocationId.kt │ │ │ ├── LocationRepo.kt │ │ │ ├── LocationRepoImpl.kt │ │ │ ├── LocationRepoMock.kt │ │ │ ├── LocationRow.kt │ │ │ └── LocationRowUnsaved.kt │ │ ├── product │ │ │ ├── ProductId.kt │ │ │ ├── ProductRepo.kt │ │ │ ├── ProductRepoImpl.kt │ │ │ ├── ProductRepoMock.kt │ │ │ ├── ProductRow.kt │ │ │ └── ProductRowUnsaved.kt │ │ ├── productcategory │ │ │ ├── ProductcategoryId.kt │ │ │ ├── ProductcategoryRepo.kt │ │ │ ├── ProductcategoryRepoImpl.kt │ │ │ ├── ProductcategoryRepoMock.kt │ │ │ ├── ProductcategoryRow.kt │ │ │ └── ProductcategoryRowUnsaved.kt │ │ ├── productcosthistory │ │ │ ├── ProductcosthistoryId.kt │ │ │ ├── ProductcosthistoryRepo.kt │ │ │ ├── ProductcosthistoryRepoImpl.kt │ │ │ ├── ProductcosthistoryRepoMock.kt │ │ │ ├── ProductcosthistoryRow.kt │ │ │ └── ProductcosthistoryRowUnsaved.kt │ │ ├── productdescription │ │ │ ├── ProductdescriptionId.kt │ │ │ ├── ProductdescriptionRepo.kt │ │ │ ├── ProductdescriptionRepoImpl.kt │ │ │ ├── ProductdescriptionRepoMock.kt │ │ │ ├── ProductdescriptionRow.kt │ │ │ └── ProductdescriptionRowUnsaved.kt │ │ ├── productdocument │ │ │ ├── ProductdocumentId.kt │ │ │ ├── ProductdocumentRepo.kt │ │ │ ├── ProductdocumentRepoImpl.kt │ │ │ ├── ProductdocumentRepoMock.kt │ │ │ ├── ProductdocumentRow.kt │ │ │ └── ProductdocumentRowUnsaved.kt │ │ ├── productinventory │ │ │ ├── ProductinventoryId.kt │ │ │ ├── ProductinventoryRepo.kt │ │ │ ├── ProductinventoryRepoImpl.kt │ │ │ ├── ProductinventoryRepoMock.kt │ │ │ ├── ProductinventoryRow.kt │ │ │ └── ProductinventoryRowUnsaved.kt │ │ ├── productlistpricehistory │ │ │ ├── ProductlistpricehistoryId.kt │ │ │ ├── ProductlistpricehistoryRepo.kt │ │ │ ├── ProductlistpricehistoryRepoImpl.kt │ │ │ ├── ProductlistpricehistoryRepoMock.kt │ │ │ ├── ProductlistpricehistoryRow.kt │ │ │ └── ProductlistpricehistoryRowUnsaved.kt │ │ ├── productmodel │ │ │ ├── ProductmodelId.kt │ │ │ ├── ProductmodelRepo.kt │ │ │ ├── ProductmodelRepoImpl.kt │ │ │ ├── ProductmodelRepoMock.kt │ │ │ ├── ProductmodelRow.kt │ │ │ └── ProductmodelRowUnsaved.kt │ │ ├── productmodelillustration │ │ │ ├── ProductmodelillustrationId.kt │ │ │ ├── ProductmodelillustrationRepo.kt │ │ │ ├── ProductmodelillustrationRepoImpl.kt │ │ │ ├── ProductmodelillustrationRepoMock.kt │ │ │ ├── ProductmodelillustrationRow.kt │ │ │ └── ProductmodelillustrationRowUnsaved.kt │ │ ├── productmodelproductdescriptionculture │ │ │ ├── ProductmodelproductdescriptioncultureId.kt │ │ │ ├── ProductmodelproductdescriptioncultureRepo.kt │ │ │ ├── ProductmodelproductdescriptioncultureRepoImpl.kt │ │ │ ├── ProductmodelproductdescriptioncultureRepoMock.kt │ │ │ ├── ProductmodelproductdescriptioncultureRow.kt │ │ │ └── ProductmodelproductdescriptioncultureRowUnsaved.kt │ │ ├── productphoto │ │ │ ├── ProductphotoId.kt │ │ │ ├── ProductphotoRepo.kt │ │ │ ├── ProductphotoRepoImpl.kt │ │ │ ├── ProductphotoRepoMock.kt │ │ │ ├── ProductphotoRow.kt │ │ │ └── ProductphotoRowUnsaved.kt │ │ ├── productproductphoto │ │ │ ├── ProductproductphotoId.kt │ │ │ ├── ProductproductphotoRepo.kt │ │ │ ├── ProductproductphotoRepoImpl.kt │ │ │ ├── ProductproductphotoRepoMock.kt │ │ │ ├── ProductproductphotoRow.kt │ │ │ └── ProductproductphotoRowUnsaved.kt │ │ ├── productreview │ │ │ ├── ProductreviewId.kt │ │ │ ├── ProductreviewRepo.kt │ │ │ ├── ProductreviewRepoImpl.kt │ │ │ ├── ProductreviewRepoMock.kt │ │ │ ├── ProductreviewRow.kt │ │ │ └── ProductreviewRowUnsaved.kt │ │ ├── productsubcategory │ │ │ ├── ProductsubcategoryId.kt │ │ │ ├── ProductsubcategoryRepo.kt │ │ │ ├── ProductsubcategoryRepoImpl.kt │ │ │ ├── ProductsubcategoryRepoMock.kt │ │ │ ├── ProductsubcategoryRow.kt │ │ │ └── ProductsubcategoryRowUnsaved.kt │ │ ├── scrapreason │ │ │ ├── ScrapreasonId.kt │ │ │ ├── ScrapreasonRepo.kt │ │ │ ├── ScrapreasonRepoImpl.kt │ │ │ ├── ScrapreasonRepoMock.kt │ │ │ ├── ScrapreasonRow.kt │ │ │ └── ScrapreasonRowUnsaved.kt │ │ ├── transactionhistory │ │ │ ├── TransactionhistoryId.kt │ │ │ ├── TransactionhistoryRepo.kt │ │ │ ├── TransactionhistoryRepoImpl.kt │ │ │ ├── TransactionhistoryRepoMock.kt │ │ │ ├── TransactionhistoryRow.kt │ │ │ └── TransactionhistoryRowUnsaved.kt │ │ ├── transactionhistoryarchive │ │ │ ├── TransactionhistoryarchiveId.kt │ │ │ ├── TransactionhistoryarchiveRepo.kt │ │ │ ├── TransactionhistoryarchiveRepoImpl.kt │ │ │ ├── TransactionhistoryarchiveRepoMock.kt │ │ │ ├── TransactionhistoryarchiveRow.kt │ │ │ └── TransactionhistoryarchiveRowUnsaved.kt │ │ ├── unitmeasure │ │ │ ├── UnitmeasureId.kt │ │ │ ├── UnitmeasureRepo.kt │ │ │ ├── UnitmeasureRepoImpl.kt │ │ │ ├── UnitmeasureRepoMock.kt │ │ │ ├── UnitmeasureRow.kt │ │ │ └── UnitmeasureRowUnsaved.kt │ │ ├── vproductanddescription │ │ │ ├── VproductanddescriptionMVRepo.kt │ │ │ ├── VproductanddescriptionMVRepoImpl.kt │ │ │ └── VproductanddescriptionMVRow.kt │ │ ├── vproductmodelcatalogdescription │ │ │ ├── VproductmodelcatalogdescriptionViewRepo.kt │ │ │ ├── VproductmodelcatalogdescriptionViewRepoImpl.kt │ │ │ └── VproductmodelcatalogdescriptionViewRow.kt │ │ ├── vproductmodelinstructions │ │ │ ├── VproductmodelinstructionsViewRepo.kt │ │ │ ├── VproductmodelinstructionsViewRepoImpl.kt │ │ │ └── VproductmodelinstructionsViewRow.kt │ │ ├── workorder │ │ │ ├── WorkorderId.kt │ │ │ ├── WorkorderRepo.kt │ │ │ ├── WorkorderRepoImpl.kt │ │ │ ├── WorkorderRepoMock.kt │ │ │ ├── WorkorderRow.kt │ │ │ └── WorkorderRowUnsaved.kt │ │ └── workorderrouting │ │ │ ├── WorkorderroutingId.kt │ │ │ ├── WorkorderroutingRepo.kt │ │ │ ├── WorkorderroutingRepoImpl.kt │ │ │ ├── WorkorderroutingRepoMock.kt │ │ │ ├── WorkorderroutingRow.kt │ │ │ └── WorkorderroutingRowUnsaved.kt │ │ ├── pu │ │ ├── pod │ │ │ ├── PodViewRepo.kt │ │ │ ├── PodViewRepoImpl.kt │ │ │ └── PodViewRow.kt │ │ ├── poh │ │ │ ├── PohViewRepo.kt │ │ │ ├── PohViewRepoImpl.kt │ │ │ └── PohViewRow.kt │ │ ├── pv │ │ │ ├── PvViewRepo.kt │ │ │ ├── PvViewRepoImpl.kt │ │ │ └── PvViewRow.kt │ │ ├── sm │ │ │ ├── SmViewRepo.kt │ │ │ ├── SmViewRepoImpl.kt │ │ │ └── SmViewRow.kt │ │ └── v │ │ │ ├── VViewRepo.kt │ │ │ ├── VViewRepoImpl.kt │ │ │ └── VViewRow.kt │ │ ├── public │ │ ├── AccountNumber.kt │ │ ├── Flag.kt │ │ ├── Mydomain.kt │ │ ├── Myenum.kt │ │ ├── Name.kt │ │ ├── NameStyle.kt │ │ ├── OrderNumber.kt │ │ ├── Phone.kt │ │ ├── ShortText.kt │ │ ├── flaff │ │ │ ├── FlaffId.kt │ │ │ ├── FlaffRepo.kt │ │ │ ├── FlaffRepoImpl.kt │ │ │ ├── FlaffRepoMock.kt │ │ │ └── FlaffRow.kt │ │ ├── identity_test │ │ │ ├── IdentityTestId.kt │ │ │ ├── IdentityTestRepo.kt │ │ │ ├── IdentityTestRepoImpl.kt │ │ │ ├── IdentityTestRepoMock.kt │ │ │ ├── IdentityTestRow.kt │ │ │ └── IdentityTestRowUnsaved.kt │ │ ├── issue142 │ │ │ ├── Issue142Id.kt │ │ │ ├── Issue142Repo.kt │ │ │ ├── Issue142RepoImpl.kt │ │ │ ├── Issue142RepoMock.kt │ │ │ └── Issue142Row.kt │ │ ├── issue142_2 │ │ │ ├── Issue1422Repo.kt │ │ │ ├── Issue1422RepoImpl.kt │ │ │ ├── Issue1422RepoMock.kt │ │ │ └── Issue1422Row.kt │ │ ├── only_pk_columns │ │ │ ├── OnlyPkColumnsId.kt │ │ │ ├── OnlyPkColumnsRepo.kt │ │ │ ├── OnlyPkColumnsRepoImpl.kt │ │ │ ├── OnlyPkColumnsRepoMock.kt │ │ │ └── OnlyPkColumnsRow.kt │ │ ├── pgtest │ │ │ ├── PgtestRepo.kt │ │ │ ├── PgtestRepoImpl.kt │ │ │ └── PgtestRow.kt │ │ ├── pgtestnull │ │ │ ├── PgtestnullRepo.kt │ │ │ ├── PgtestnullRepoImpl.kt │ │ │ └── PgtestnullRow.kt │ │ ├── table_with_generated_columns │ │ │ ├── TableWithGeneratedColumnsId.kt │ │ │ ├── TableWithGeneratedColumnsRepo.kt │ │ │ ├── TableWithGeneratedColumnsRepoImpl.kt │ │ │ ├── TableWithGeneratedColumnsRepoMock.kt │ │ │ ├── TableWithGeneratedColumnsRow.kt │ │ │ └── TableWithGeneratedColumnsRowUnsaved.kt │ │ ├── test_organisasjon │ │ │ ├── TestOrganisasjonId.kt │ │ │ ├── TestOrganisasjonRepo.kt │ │ │ ├── TestOrganisasjonRepoImpl.kt │ │ │ ├── TestOrganisasjonRepoMock.kt │ │ │ └── TestOrganisasjonRow.kt │ │ ├── test_sak_soknadsalternativ │ │ │ ├── TestSakSoknadsalternativId.kt │ │ │ ├── TestSakSoknadsalternativRepo.kt │ │ │ ├── TestSakSoknadsalternativRepoImpl.kt │ │ │ ├── TestSakSoknadsalternativRepoMock.kt │ │ │ └── TestSakSoknadsalternativRow.kt │ │ ├── test_utdanningstilbud │ │ │ ├── TestUtdanningstilbudId.kt │ │ │ ├── TestUtdanningstilbudRepo.kt │ │ │ ├── TestUtdanningstilbudRepoImpl.kt │ │ │ ├── TestUtdanningstilbudRepoMock.kt │ │ │ └── TestUtdanningstilbudRow.kt │ │ ├── title │ │ │ ├── TitleId.kt │ │ │ ├── TitleRepo.kt │ │ │ ├── TitleRepoImpl.kt │ │ │ ├── TitleRepoMock.kt │ │ │ └── TitleRow.kt │ │ ├── title_domain │ │ │ ├── TitleDomainId.kt │ │ │ ├── TitleDomainRepo.kt │ │ │ ├── TitleDomainRepoImpl.kt │ │ │ ├── TitleDomainRepoMock.kt │ │ │ └── TitleDomainRow.kt │ │ ├── titledperson │ │ │ ├── TitledpersonRepo.kt │ │ │ ├── TitledpersonRepoImpl.kt │ │ │ └── TitledpersonRow.kt │ │ └── users │ │ │ ├── UsersId.kt │ │ │ ├── UsersRepo.kt │ │ │ ├── UsersRepoImpl.kt │ │ │ ├── UsersRepoMock.kt │ │ │ ├── UsersRow.kt │ │ │ └── UsersRowUnsaved.kt │ │ ├── purchasing │ │ ├── productvendor │ │ │ ├── ProductvendorId.kt │ │ │ ├── ProductvendorRepo.kt │ │ │ ├── ProductvendorRepoImpl.kt │ │ │ ├── ProductvendorRepoMock.kt │ │ │ ├── ProductvendorRow.kt │ │ │ └── ProductvendorRowUnsaved.kt │ │ ├── purchaseorderdetail │ │ │ ├── PurchaseorderdetailId.kt │ │ │ ├── PurchaseorderdetailRepo.kt │ │ │ ├── PurchaseorderdetailRepoImpl.kt │ │ │ ├── PurchaseorderdetailRow.kt │ │ │ └── PurchaseorderdetailRowUnsaved.kt │ │ ├── purchaseorderheader │ │ │ ├── PurchaseorderheaderId.kt │ │ │ ├── PurchaseorderheaderRepo.kt │ │ │ ├── PurchaseorderheaderRepoImpl.kt │ │ │ ├── PurchaseorderheaderRepoMock.kt │ │ │ ├── PurchaseorderheaderRow.kt │ │ │ └── PurchaseorderheaderRowUnsaved.kt │ │ ├── shipmethod │ │ │ ├── ShipmethodId.kt │ │ │ ├── ShipmethodRepo.kt │ │ │ ├── ShipmethodRepoImpl.kt │ │ │ ├── ShipmethodRepoMock.kt │ │ │ ├── ShipmethodRow.kt │ │ │ └── ShipmethodRowUnsaved.kt │ │ ├── vendor │ │ │ ├── VendorRepo.kt │ │ │ ├── VendorRepoImpl.kt │ │ │ ├── VendorRepoMock.kt │ │ │ ├── VendorRow.kt │ │ │ └── VendorRowUnsaved.kt │ │ ├── vvendorwithaddresses │ │ │ ├── VvendorwithaddressesViewRepo.kt │ │ │ ├── VvendorwithaddressesViewRepoImpl.kt │ │ │ └── VvendorwithaddressesViewRow.kt │ │ └── vvendorwithcontacts │ │ │ ├── VvendorwithcontactsViewRepo.kt │ │ │ ├── VvendorwithcontactsViewRepoImpl.kt │ │ │ └── VvendorwithcontactsViewRow.kt │ │ ├── sa │ │ ├── c │ │ │ ├── CViewRepo.kt │ │ │ ├── CViewRepoImpl.kt │ │ │ └── CViewRow.kt │ │ ├── cc │ │ │ ├── CcViewRepo.kt │ │ │ ├── CcViewRepoImpl.kt │ │ │ └── CcViewRow.kt │ │ ├── cr │ │ │ ├── CrViewRepo.kt │ │ │ ├── CrViewRepoImpl.kt │ │ │ └── CrViewRow.kt │ │ ├── crc │ │ │ ├── CrcViewRepo.kt │ │ │ ├── CrcViewRepoImpl.kt │ │ │ └── CrcViewRow.kt │ │ ├── cu │ │ │ ├── CuViewRepo.kt │ │ │ ├── CuViewRepoImpl.kt │ │ │ └── CuViewRow.kt │ │ ├── pcc │ │ │ ├── PccViewRepo.kt │ │ │ ├── PccViewRepoImpl.kt │ │ │ └── PccViewRow.kt │ │ ├── s │ │ │ ├── SViewRepo.kt │ │ │ ├── SViewRepoImpl.kt │ │ │ └── SViewRow.kt │ │ ├── sci │ │ │ ├── SciViewRepo.kt │ │ │ ├── SciViewRepoImpl.kt │ │ │ └── SciViewRow.kt │ │ ├── so │ │ │ ├── SoViewRepo.kt │ │ │ ├── SoViewRepoImpl.kt │ │ │ └── SoViewRow.kt │ │ ├── sod │ │ │ ├── SodViewRepo.kt │ │ │ ├── SodViewRepoImpl.kt │ │ │ └── SodViewRow.kt │ │ ├── soh │ │ │ ├── SohViewRepo.kt │ │ │ ├── SohViewRepoImpl.kt │ │ │ └── SohViewRow.kt │ │ ├── sohsr │ │ │ ├── SohsrViewRepo.kt │ │ │ ├── SohsrViewRepoImpl.kt │ │ │ └── SohsrViewRow.kt │ │ ├── sop │ │ │ ├── SopViewRepo.kt │ │ │ ├── SopViewRepoImpl.kt │ │ │ └── SopViewRow.kt │ │ ├── sp │ │ │ ├── SpViewRepo.kt │ │ │ ├── SpViewRepoImpl.kt │ │ │ └── SpViewRow.kt │ │ ├── spqh │ │ │ ├── SpqhViewRepo.kt │ │ │ ├── SpqhViewRepoImpl.kt │ │ │ └── SpqhViewRow.kt │ │ ├── sr │ │ │ ├── SrViewRepo.kt │ │ │ ├── SrViewRepoImpl.kt │ │ │ └── SrViewRow.kt │ │ ├── st │ │ │ ├── StViewRepo.kt │ │ │ ├── StViewRepoImpl.kt │ │ │ └── StViewRow.kt │ │ ├── sth │ │ │ ├── SthViewRepo.kt │ │ │ ├── SthViewRepoImpl.kt │ │ │ └── SthViewRow.kt │ │ └── tr │ │ │ ├── TrViewRepo.kt │ │ │ ├── TrViewRepoImpl.kt │ │ │ └── TrViewRow.kt │ │ ├── sales │ │ ├── countryregioncurrency │ │ │ ├── CountryregioncurrencyId.kt │ │ │ ├── CountryregioncurrencyRepo.kt │ │ │ ├── CountryregioncurrencyRepoImpl.kt │ │ │ ├── CountryregioncurrencyRepoMock.kt │ │ │ ├── CountryregioncurrencyRow.kt │ │ │ └── CountryregioncurrencyRowUnsaved.kt │ │ ├── creditcard │ │ │ ├── CreditcardRepo.kt │ │ │ ├── CreditcardRepoImpl.kt │ │ │ ├── CreditcardRepoMock.kt │ │ │ ├── CreditcardRow.kt │ │ │ └── CreditcardRowUnsaved.kt │ │ ├── currency │ │ │ ├── CurrencyId.kt │ │ │ ├── CurrencyRepo.kt │ │ │ ├── CurrencyRepoImpl.kt │ │ │ ├── CurrencyRepoMock.kt │ │ │ ├── CurrencyRow.kt │ │ │ └── CurrencyRowUnsaved.kt │ │ ├── currencyrate │ │ │ ├── CurrencyrateId.kt │ │ │ ├── CurrencyrateRepo.kt │ │ │ ├── CurrencyrateRepoImpl.kt │ │ │ ├── CurrencyrateRepoMock.kt │ │ │ ├── CurrencyrateRow.kt │ │ │ └── CurrencyrateRowUnsaved.kt │ │ ├── customer │ │ │ ├── CustomerId.kt │ │ │ ├── CustomerRepo.kt │ │ │ ├── CustomerRepoImpl.kt │ │ │ ├── CustomerRepoMock.kt │ │ │ ├── CustomerRow.kt │ │ │ └── CustomerRowUnsaved.kt │ │ ├── personcreditcard │ │ │ ├── PersoncreditcardId.kt │ │ │ ├── PersoncreditcardRepo.kt │ │ │ ├── PersoncreditcardRepoImpl.kt │ │ │ ├── PersoncreditcardRepoMock.kt │ │ │ ├── PersoncreditcardRow.kt │ │ │ └── PersoncreditcardRowUnsaved.kt │ │ ├── salesorderdetail │ │ │ ├── SalesorderdetailId.kt │ │ │ ├── SalesorderdetailRepo.kt │ │ │ ├── SalesorderdetailRepoImpl.kt │ │ │ ├── SalesorderdetailRepoMock.kt │ │ │ ├── SalesorderdetailRow.kt │ │ │ └── SalesorderdetailRowUnsaved.kt │ │ ├── salesorderheader │ │ │ ├── SalesorderheaderId.kt │ │ │ ├── SalesorderheaderRepo.kt │ │ │ ├── SalesorderheaderRepoImpl.kt │ │ │ ├── SalesorderheaderRepoMock.kt │ │ │ ├── SalesorderheaderRow.kt │ │ │ └── SalesorderheaderRowUnsaved.kt │ │ ├── salesorderheadersalesreason │ │ │ ├── SalesorderheadersalesreasonId.kt │ │ │ ├── SalesorderheadersalesreasonRepo.kt │ │ │ ├── SalesorderheadersalesreasonRepoImpl.kt │ │ │ ├── SalesorderheadersalesreasonRepoMock.kt │ │ │ ├── SalesorderheadersalesreasonRow.kt │ │ │ └── SalesorderheadersalesreasonRowUnsaved.kt │ │ ├── salesperson │ │ │ ├── SalespersonRepo.kt │ │ │ ├── SalespersonRepoImpl.kt │ │ │ ├── SalespersonRepoMock.kt │ │ │ ├── SalespersonRow.kt │ │ │ └── SalespersonRowUnsaved.kt │ │ ├── salespersonquotahistory │ │ │ ├── SalespersonquotahistoryId.kt │ │ │ ├── SalespersonquotahistoryRepo.kt │ │ │ ├── SalespersonquotahistoryRepoImpl.kt │ │ │ ├── SalespersonquotahistoryRepoMock.kt │ │ │ ├── SalespersonquotahistoryRow.kt │ │ │ └── SalespersonquotahistoryRowUnsaved.kt │ │ ├── salesreason │ │ │ ├── SalesreasonId.kt │ │ │ ├── SalesreasonRepo.kt │ │ │ ├── SalesreasonRepoImpl.kt │ │ │ ├── SalesreasonRepoMock.kt │ │ │ ├── SalesreasonRow.kt │ │ │ └── SalesreasonRowUnsaved.kt │ │ ├── salestaxrate │ │ │ ├── SalestaxrateId.kt │ │ │ ├── SalestaxrateRepo.kt │ │ │ ├── SalestaxrateRepoImpl.kt │ │ │ ├── SalestaxrateRepoMock.kt │ │ │ ├── SalestaxrateRow.kt │ │ │ └── SalestaxrateRowUnsaved.kt │ │ ├── salesterritory │ │ │ ├── SalesterritoryId.kt │ │ │ ├── SalesterritoryRepo.kt │ │ │ ├── SalesterritoryRepoImpl.kt │ │ │ ├── SalesterritoryRepoMock.kt │ │ │ ├── SalesterritoryRow.kt │ │ │ └── SalesterritoryRowUnsaved.kt │ │ ├── salesterritoryhistory │ │ │ ├── SalesterritoryhistoryId.kt │ │ │ ├── SalesterritoryhistoryRepo.kt │ │ │ ├── SalesterritoryhistoryRepoImpl.kt │ │ │ ├── SalesterritoryhistoryRepoMock.kt │ │ │ ├── SalesterritoryhistoryRow.kt │ │ │ └── SalesterritoryhistoryRowUnsaved.kt │ │ ├── shoppingcartitem │ │ │ ├── ShoppingcartitemId.kt │ │ │ ├── ShoppingcartitemRepo.kt │ │ │ ├── ShoppingcartitemRepoImpl.kt │ │ │ ├── ShoppingcartitemRepoMock.kt │ │ │ ├── ShoppingcartitemRow.kt │ │ │ └── ShoppingcartitemRowUnsaved.kt │ │ ├── specialoffer │ │ │ ├── SpecialofferId.kt │ │ │ ├── SpecialofferRepo.kt │ │ │ ├── SpecialofferRepoImpl.kt │ │ │ ├── SpecialofferRepoMock.kt │ │ │ ├── SpecialofferRow.kt │ │ │ └── SpecialofferRowUnsaved.kt │ │ ├── specialofferproduct │ │ │ ├── SpecialofferproductId.kt │ │ │ ├── SpecialofferproductRepo.kt │ │ │ ├── SpecialofferproductRepoImpl.kt │ │ │ ├── SpecialofferproductRepoMock.kt │ │ │ ├── SpecialofferproductRow.kt │ │ │ └── SpecialofferproductRowUnsaved.kt │ │ ├── store │ │ │ ├── StoreRepo.kt │ │ │ ├── StoreRepoImpl.kt │ │ │ ├── StoreRepoMock.kt │ │ │ ├── StoreRow.kt │ │ │ └── StoreRowUnsaved.kt │ │ ├── vindividualcustomer │ │ │ ├── VindividualcustomerViewRepo.kt │ │ │ ├── VindividualcustomerViewRepoImpl.kt │ │ │ └── VindividualcustomerViewRow.kt │ │ ├── vpersondemographics │ │ │ ├── VpersondemographicsViewRepo.kt │ │ │ ├── VpersondemographicsViewRepoImpl.kt │ │ │ └── VpersondemographicsViewRow.kt │ │ ├── vsalesperson │ │ │ ├── VsalespersonViewRepo.kt │ │ │ ├── VsalespersonViewRepoImpl.kt │ │ │ └── VsalespersonViewRow.kt │ │ ├── vsalespersonsalesbyfiscalyears │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepo.kt │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepoImpl.kt │ │ │ └── VsalespersonsalesbyfiscalyearsViewRow.kt │ │ ├── vsalespersonsalesbyfiscalyearsdata │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepo.kt │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepoImpl.kt │ │ │ └── VsalespersonsalesbyfiscalyearsdataViewRow.kt │ │ ├── vstorewithaddresses │ │ │ ├── VstorewithaddressesViewRepo.kt │ │ │ ├── VstorewithaddressesViewRepoImpl.kt │ │ │ └── VstorewithaddressesViewRow.kt │ │ ├── vstorewithcontacts │ │ │ ├── VstorewithcontactsViewRepo.kt │ │ │ ├── VstorewithcontactsViewRepoImpl.kt │ │ │ └── VstorewithcontactsViewRow.kt │ │ └── vstorewithdemographics │ │ │ ├── VstorewithdemographicsViewRepo.kt │ │ │ ├── VstorewithdemographicsViewRepoImpl.kt │ │ │ └── VstorewithdemographicsViewRow.kt │ │ ├── update_person │ │ ├── UpdatePersonSqlRepo.kt │ │ └── UpdatePersonSqlRepoImpl.kt │ │ └── update_person_returning │ │ ├── UpdatePersonReturningSqlRepo.kt │ │ ├── UpdatePersonReturningSqlRepoImpl.kt │ │ └── UpdatePersonReturningSqlRow.kt └── src │ ├── kotlin │ └── adventureworks │ │ ├── DSLTest.kt │ │ ├── DomainInsertImpl.kt │ │ ├── IdentityTest.kt │ │ ├── RecordTest.kt │ │ ├── SeekDbTest.kt │ │ ├── SnapshotTest.kt │ │ ├── UpsertTwiceTest.kt │ │ ├── WithConnection.kt │ │ ├── humanresources │ │ ├── department │ │ │ └── DepartmentTest.kt │ │ └── employee │ │ │ └── EmployeeTest.kt │ │ ├── person │ │ ├── MultiRepoTest.kt │ │ └── businessentityaddress │ │ │ └── BusinessentityaddressTest.kt │ │ ├── person_detail │ │ └── PersonDetailTest.kt │ │ ├── production │ │ ├── product │ │ │ ├── ProductTest.kt │ │ │ └── SeekTest.kt │ │ ├── productcosthistory │ │ │ └── CompositeIdsTest.kt │ │ └── unitmeasure │ │ │ └── RepoTest.kt │ │ ├── public_ │ │ ├── OpenEnumTest.kt │ │ └── users │ │ │ └── UsersRepoTest.kt │ │ ├── update_person_returning │ │ └── UpdatePersonReturningSqlRepoTest.kt │ │ └── userdefined │ │ ├── CustomCreditcardId.kt │ │ └── FirstName.kt │ └── main │ └── kotlin │ └── adventureworks │ └── userdefined │ ├── CustomCreditcardId.kt │ └── FirstName.kt ├── typo-tester-typo-java ├── generated-and-checked-in │ └── adventureworks │ │ ├── DefaultedDeserializer.java │ │ ├── DefaultedSerializer.java │ │ ├── TestDomainInsert.java │ │ ├── TestInsert.java │ │ ├── customtypes │ │ ├── Defaulted.java │ │ ├── TypoBox.java │ │ ├── TypoBytea.java │ │ ├── TypoCircle.java │ │ ├── TypoHStore.java │ │ ├── TypoInet.java │ │ ├── TypoInstant.java │ │ ├── TypoInt2Vector.java │ │ ├── TypoInterval.java │ │ ├── TypoJson.java │ │ ├── TypoJsonb.java │ │ ├── TypoLine.java │ │ ├── TypoLineSegment.java │ │ ├── TypoLocalDate.java │ │ ├── TypoLocalDateTime.java │ │ ├── TypoLocalTime.java │ │ ├── TypoMoney.java │ │ ├── TypoOffsetTime.java │ │ ├── TypoPath.java │ │ ├── TypoPoint.java │ │ ├── TypoPolygon.java │ │ ├── TypoRecord.java │ │ ├── TypoShort.java │ │ ├── TypoUUID.java │ │ ├── TypoUnknownCitext.java │ │ ├── TypoVector.java │ │ └── TypoXml.java │ │ ├── frontpage │ │ └── Email.java │ │ ├── hr │ │ ├── d │ │ │ ├── DViewFields.java │ │ │ ├── DViewRepo.java │ │ │ ├── DViewRepoImpl.java │ │ │ └── DViewRow.java │ │ ├── e │ │ │ ├── EViewFields.java │ │ │ ├── EViewRepo.java │ │ │ ├── EViewRepoImpl.java │ │ │ └── EViewRow.java │ │ ├── edh │ │ │ ├── EdhViewFields.java │ │ │ ├── EdhViewRepo.java │ │ │ ├── EdhViewRepoImpl.java │ │ │ └── EdhViewRow.java │ │ ├── eph │ │ │ ├── EphViewFields.java │ │ │ ├── EphViewRepo.java │ │ │ ├── EphViewRepoImpl.java │ │ │ └── EphViewRow.java │ │ ├── jc │ │ │ ├── JcViewFields.java │ │ │ ├── JcViewRepo.java │ │ │ ├── JcViewRepoImpl.java │ │ │ └── JcViewRow.java │ │ └── s │ │ │ ├── SViewFields.java │ │ │ ├── SViewRepo.java │ │ │ ├── SViewRepoImpl.java │ │ │ └── SViewRow.java │ │ ├── humanresources │ │ ├── department │ │ │ ├── DepartmentFields.java │ │ │ ├── DepartmentId.java │ │ │ ├── DepartmentRepo.java │ │ │ ├── DepartmentRepoImpl.java │ │ │ ├── DepartmentRepoMock.java │ │ │ ├── DepartmentRow.java │ │ │ └── DepartmentRowUnsaved.java │ │ ├── employee │ │ │ ├── EmployeeFields.java │ │ │ ├── EmployeeRepo.java │ │ │ ├── EmployeeRepoImpl.java │ │ │ ├── EmployeeRepoMock.java │ │ │ ├── EmployeeRow.java │ │ │ └── EmployeeRowUnsaved.java │ │ ├── employeedepartmenthistory │ │ │ ├── EmployeedepartmenthistoryFields.java │ │ │ ├── EmployeedepartmenthistoryId.java │ │ │ ├── EmployeedepartmenthistoryRepo.java │ │ │ ├── EmployeedepartmenthistoryRepoImpl.java │ │ │ ├── EmployeedepartmenthistoryRepoMock.java │ │ │ ├── EmployeedepartmenthistoryRow.java │ │ │ └── EmployeedepartmenthistoryRowUnsaved.java │ │ ├── employeepayhistory │ │ │ ├── EmployeepayhistoryFields.java │ │ │ ├── EmployeepayhistoryId.java │ │ │ ├── EmployeepayhistoryRepo.java │ │ │ ├── EmployeepayhistoryRepoImpl.java │ │ │ ├── EmployeepayhistoryRepoMock.java │ │ │ ├── EmployeepayhistoryRow.java │ │ │ └── EmployeepayhistoryRowUnsaved.java │ │ ├── jobcandidate │ │ │ ├── JobcandidateFields.java │ │ │ ├── JobcandidateId.java │ │ │ ├── JobcandidateRepo.java │ │ │ ├── JobcandidateRepoImpl.java │ │ │ ├── JobcandidateRepoMock.java │ │ │ ├── JobcandidateRow.java │ │ │ └── JobcandidateRowUnsaved.java │ │ ├── shift │ │ │ ├── ShiftFields.java │ │ │ ├── ShiftId.java │ │ │ ├── ShiftRepo.java │ │ │ ├── ShiftRepoImpl.java │ │ │ ├── ShiftRepoMock.java │ │ │ ├── ShiftRow.java │ │ │ └── ShiftRowUnsaved.java │ │ ├── vemployee │ │ │ ├── VemployeeViewFields.java │ │ │ ├── VemployeeViewRepo.java │ │ │ ├── VemployeeViewRepoImpl.java │ │ │ └── VemployeeViewRow.java │ │ ├── vemployeedepartment │ │ │ ├── VemployeedepartmentViewFields.java │ │ │ ├── VemployeedepartmentViewRepo.java │ │ │ ├── VemployeedepartmentViewRepoImpl.java │ │ │ └── VemployeedepartmentViewRow.java │ │ ├── vemployeedepartmenthistory │ │ │ ├── VemployeedepartmenthistoryViewFields.java │ │ │ ├── VemployeedepartmenthistoryViewRepo.java │ │ │ ├── VemployeedepartmenthistoryViewRepoImpl.java │ │ │ └── VemployeedepartmenthistoryViewRow.java │ │ ├── vjobcandidate │ │ │ ├── VjobcandidateViewFields.java │ │ │ ├── VjobcandidateViewRepo.java │ │ │ ├── VjobcandidateViewRepoImpl.java │ │ │ └── VjobcandidateViewRow.java │ │ ├── vjobcandidateeducation │ │ │ ├── VjobcandidateeducationViewFields.java │ │ │ ├── VjobcandidateeducationViewRepo.java │ │ │ ├── VjobcandidateeducationViewRepoImpl.java │ │ │ └── VjobcandidateeducationViewRow.java │ │ └── vjobcandidateemployment │ │ │ ├── VjobcandidateemploymentViewFields.java │ │ │ ├── VjobcandidateemploymentViewRepo.java │ │ │ ├── VjobcandidateemploymentViewRepoImpl.java │ │ │ └── VjobcandidateemploymentViewRow.java │ │ ├── information_schema │ │ ├── CardinalNumber.java │ │ ├── CharacterData.java │ │ ├── SqlIdentifier.java │ │ ├── TimeStamp.java │ │ └── YesOrNo.java │ │ ├── pe │ │ ├── a │ │ │ ├── AViewFields.java │ │ │ ├── AViewRepo.java │ │ │ ├── AViewRepoImpl.java │ │ │ └── AViewRow.java │ │ ├── at │ │ │ ├── AtViewFields.java │ │ │ ├── AtViewRepo.java │ │ │ ├── AtViewRepoImpl.java │ │ │ └── AtViewRow.java │ │ ├── be │ │ │ ├── BeViewFields.java │ │ │ ├── BeViewRepo.java │ │ │ ├── BeViewRepoImpl.java │ │ │ └── BeViewRow.java │ │ ├── bea │ │ │ ├── BeaViewFields.java │ │ │ ├── BeaViewRepo.java │ │ │ ├── BeaViewRepoImpl.java │ │ │ └── BeaViewRow.java │ │ ├── bec │ │ │ ├── BecViewFields.java │ │ │ ├── BecViewRepo.java │ │ │ ├── BecViewRepoImpl.java │ │ │ └── BecViewRow.java │ │ ├── cr │ │ │ ├── CrViewFields.java │ │ │ ├── CrViewRepo.java │ │ │ ├── CrViewRepoImpl.java │ │ │ └── CrViewRow.java │ │ ├── ct │ │ │ ├── CtViewFields.java │ │ │ ├── CtViewRepo.java │ │ │ ├── CtViewRepoImpl.java │ │ │ └── CtViewRow.java │ │ ├── e │ │ │ ├── EViewFields.java │ │ │ ├── EViewRepo.java │ │ │ ├── EViewRepoImpl.java │ │ │ └── EViewRow.java │ │ ├── p │ │ │ ├── PViewFields.java │ │ │ ├── PViewRepo.java │ │ │ ├── PViewRepoImpl.java │ │ │ └── PViewRow.java │ │ ├── pa │ │ │ ├── PaViewFields.java │ │ │ ├── PaViewRepo.java │ │ │ ├── PaViewRepoImpl.java │ │ │ └── PaViewRow.java │ │ ├── pnt │ │ │ ├── PntViewFields.java │ │ │ ├── PntViewRepo.java │ │ │ ├── PntViewRepoImpl.java │ │ │ └── PntViewRow.java │ │ ├── pp │ │ │ ├── PpViewFields.java │ │ │ ├── PpViewRepo.java │ │ │ ├── PpViewRepoImpl.java │ │ │ └── PpViewRow.java │ │ └── sp │ │ │ ├── SpViewFields.java │ │ │ ├── SpViewRepo.java │ │ │ ├── SpViewRepoImpl.java │ │ │ └── SpViewRow.java │ │ ├── person │ │ ├── address │ │ │ ├── AddressFields.java │ │ │ ├── AddressId.java │ │ │ ├── AddressRepo.java │ │ │ ├── AddressRepoImpl.java │ │ │ ├── AddressRepoMock.java │ │ │ ├── AddressRow.java │ │ │ └── AddressRowUnsaved.java │ │ ├── addresstype │ │ │ ├── AddresstypeFields.java │ │ │ ├── AddresstypeId.java │ │ │ ├── AddresstypeRepo.java │ │ │ ├── AddresstypeRepoImpl.java │ │ │ ├── AddresstypeRepoMock.java │ │ │ ├── AddresstypeRow.java │ │ │ └── AddresstypeRowUnsaved.java │ │ ├── businessentity │ │ │ ├── BusinessentityFields.java │ │ │ ├── BusinessentityId.java │ │ │ ├── BusinessentityRepo.java │ │ │ ├── BusinessentityRepoImpl.java │ │ │ ├── BusinessentityRepoMock.java │ │ │ ├── BusinessentityRow.java │ │ │ └── BusinessentityRowUnsaved.java │ │ ├── businessentityaddress │ │ │ ├── BusinessentityaddressFields.java │ │ │ ├── BusinessentityaddressId.java │ │ │ ├── BusinessentityaddressRepo.java │ │ │ ├── BusinessentityaddressRepoImpl.java │ │ │ ├── BusinessentityaddressRepoMock.java │ │ │ ├── BusinessentityaddressRow.java │ │ │ └── BusinessentityaddressRowUnsaved.java │ │ ├── businessentitycontact │ │ │ ├── BusinessentitycontactFields.java │ │ │ ├── BusinessentitycontactId.java │ │ │ ├── BusinessentitycontactRepo.java │ │ │ ├── BusinessentitycontactRepoImpl.java │ │ │ ├── BusinessentitycontactRepoMock.java │ │ │ ├── BusinessentitycontactRow.java │ │ │ └── BusinessentitycontactRowUnsaved.java │ │ ├── contacttype │ │ │ ├── ContacttypeFields.java │ │ │ ├── ContacttypeId.java │ │ │ ├── ContacttypeRepo.java │ │ │ ├── ContacttypeRepoImpl.java │ │ │ ├── ContacttypeRepoMock.java │ │ │ ├── ContacttypeRow.java │ │ │ └── ContacttypeRowUnsaved.java │ │ ├── countryregion │ │ │ ├── CountryregionFields.java │ │ │ ├── CountryregionId.java │ │ │ ├── CountryregionRepo.java │ │ │ ├── CountryregionRepoImpl.java │ │ │ ├── CountryregionRepoMock.java │ │ │ ├── CountryregionRow.java │ │ │ └── CountryregionRowUnsaved.java │ │ ├── emailaddress │ │ │ ├── EmailaddressFields.java │ │ │ ├── EmailaddressId.java │ │ │ ├── EmailaddressRepo.java │ │ │ ├── EmailaddressRepoImpl.java │ │ │ ├── EmailaddressRepoMock.java │ │ │ ├── EmailaddressRow.java │ │ │ └── EmailaddressRowUnsaved.java │ │ ├── password │ │ │ ├── PasswordFields.java │ │ │ ├── PasswordRepo.java │ │ │ ├── PasswordRepoImpl.java │ │ │ ├── PasswordRepoMock.java │ │ │ ├── PasswordRow.java │ │ │ └── PasswordRowUnsaved.java │ │ ├── person │ │ │ ├── PersonFields.java │ │ │ ├── PersonRepo.java │ │ │ ├── PersonRepoImpl.java │ │ │ ├── PersonRepoMock.java │ │ │ ├── PersonRow.java │ │ │ └── PersonRowUnsaved.java │ │ ├── personphone │ │ │ ├── PersonphoneFields.java │ │ │ ├── PersonphoneId.java │ │ │ ├── PersonphoneRepo.java │ │ │ ├── PersonphoneRepoImpl.java │ │ │ ├── PersonphoneRepoMock.java │ │ │ ├── PersonphoneRow.java │ │ │ └── PersonphoneRowUnsaved.java │ │ ├── phonenumbertype │ │ │ ├── PhonenumbertypeFields.java │ │ │ ├── PhonenumbertypeId.java │ │ │ ├── PhonenumbertypeRepo.java │ │ │ ├── PhonenumbertypeRepoImpl.java │ │ │ ├── PhonenumbertypeRepoMock.java │ │ │ ├── PhonenumbertypeRow.java │ │ │ └── PhonenumbertypeRowUnsaved.java │ │ ├── stateprovince │ │ │ ├── StateprovinceFields.java │ │ │ ├── StateprovinceId.java │ │ │ ├── StateprovinceRepo.java │ │ │ ├── StateprovinceRepoImpl.java │ │ │ ├── StateprovinceRepoMock.java │ │ │ ├── StateprovinceRow.java │ │ │ └── StateprovinceRowUnsaved.java │ │ ├── vadditionalcontactinfo │ │ │ ├── VadditionalcontactinfoViewFields.java │ │ │ ├── VadditionalcontactinfoViewRepo.java │ │ │ ├── VadditionalcontactinfoViewRepoImpl.java │ │ │ └── VadditionalcontactinfoViewRow.java │ │ └── vstateprovincecountryregion │ │ │ ├── VstateprovincecountryregionMVFields.java │ │ │ ├── VstateprovincecountryregionMVRepo.java │ │ │ ├── VstateprovincecountryregionMVRepoImpl.java │ │ │ └── VstateprovincecountryregionMVRow.java │ │ ├── person_detail │ │ ├── PersonDetailSqlRepo.java │ │ ├── PersonDetailSqlRepoImpl.java │ │ └── PersonDetailSqlRow.java │ │ ├── person_dynamic │ │ ├── PersonDynamicSqlRepo.java │ │ ├── PersonDynamicSqlRepoImpl.java │ │ └── PersonDynamicSqlRow.java │ │ ├── person_row_join │ │ ├── PersonRowJoinSqlRepo.java │ │ ├── PersonRowJoinSqlRepoImpl.java │ │ └── PersonRowJoinSqlRow.java │ │ ├── pr │ │ ├── bom │ │ │ ├── BomViewFields.java │ │ │ ├── BomViewRepo.java │ │ │ ├── BomViewRepoImpl.java │ │ │ └── BomViewRow.java │ │ ├── c │ │ │ ├── CViewFields.java │ │ │ ├── CViewRepo.java │ │ │ ├── CViewRepoImpl.java │ │ │ └── CViewRow.java │ │ ├── d │ │ │ ├── DViewFields.java │ │ │ ├── DViewRepo.java │ │ │ ├── DViewRepoImpl.java │ │ │ └── DViewRow.java │ │ ├── i │ │ │ ├── IViewFields.java │ │ │ ├── IViewRepo.java │ │ │ ├── IViewRepoImpl.java │ │ │ └── IViewRow.java │ │ ├── l │ │ │ ├── LViewFields.java │ │ │ ├── LViewRepo.java │ │ │ ├── LViewRepoImpl.java │ │ │ └── LViewRow.java │ │ ├── p │ │ │ ├── PViewFields.java │ │ │ ├── PViewRepo.java │ │ │ ├── PViewRepoImpl.java │ │ │ └── PViewRow.java │ │ ├── pc │ │ │ ├── PcViewFields.java │ │ │ ├── PcViewRepo.java │ │ │ ├── PcViewRepoImpl.java │ │ │ └── PcViewRow.java │ │ ├── pch │ │ │ ├── PchViewFields.java │ │ │ ├── PchViewRepo.java │ │ │ ├── PchViewRepoImpl.java │ │ │ └── PchViewRow.java │ │ ├── pd │ │ │ ├── PdViewFields.java │ │ │ ├── PdViewRepo.java │ │ │ ├── PdViewRepoImpl.java │ │ │ └── PdViewRow.java │ │ ├── pdoc │ │ │ ├── PdocViewFields.java │ │ │ ├── PdocViewRepo.java │ │ │ ├── PdocViewRepoImpl.java │ │ │ └── PdocViewRow.java │ │ ├── pi │ │ │ ├── PiViewFields.java │ │ │ ├── PiViewRepo.java │ │ │ ├── PiViewRepoImpl.java │ │ │ └── PiViewRow.java │ │ ├── plph │ │ │ ├── PlphViewFields.java │ │ │ ├── PlphViewRepo.java │ │ │ ├── PlphViewRepoImpl.java │ │ │ └── PlphViewRow.java │ │ ├── pm │ │ │ ├── PmViewFields.java │ │ │ ├── PmViewRepo.java │ │ │ ├── PmViewRepoImpl.java │ │ │ └── PmViewRow.java │ │ ├── pmi │ │ │ ├── PmiViewFields.java │ │ │ ├── PmiViewRepo.java │ │ │ ├── PmiViewRepoImpl.java │ │ │ └── PmiViewRow.java │ │ ├── pmpdc │ │ │ ├── PmpdcViewFields.java │ │ │ ├── PmpdcViewRepo.java │ │ │ ├── PmpdcViewRepoImpl.java │ │ │ └── PmpdcViewRow.java │ │ ├── pp │ │ │ ├── PpViewFields.java │ │ │ ├── PpViewRepo.java │ │ │ ├── PpViewRepoImpl.java │ │ │ └── PpViewRow.java │ │ ├── ppp │ │ │ ├── PppViewFields.java │ │ │ ├── PppViewRepo.java │ │ │ ├── PppViewRepoImpl.java │ │ │ └── PppViewRow.java │ │ ├── pr │ │ │ ├── PrViewFields.java │ │ │ ├── PrViewRepo.java │ │ │ ├── PrViewRepoImpl.java │ │ │ └── PrViewRow.java │ │ ├── psc │ │ │ ├── PscViewFields.java │ │ │ ├── PscViewRepo.java │ │ │ ├── PscViewRepoImpl.java │ │ │ └── PscViewRow.java │ │ ├── sr │ │ │ ├── SrViewFields.java │ │ │ ├── SrViewRepo.java │ │ │ ├── SrViewRepoImpl.java │ │ │ └── SrViewRow.java │ │ ├── th │ │ │ ├── ThViewFields.java │ │ │ ├── ThViewRepo.java │ │ │ ├── ThViewRepoImpl.java │ │ │ └── ThViewRow.java │ │ ├── tha │ │ │ ├── ThaViewFields.java │ │ │ ├── ThaViewRepo.java │ │ │ ├── ThaViewRepoImpl.java │ │ │ └── ThaViewRow.java │ │ ├── um │ │ │ ├── UmViewFields.java │ │ │ ├── UmViewRepo.java │ │ │ ├── UmViewRepoImpl.java │ │ │ └── UmViewRow.java │ │ ├── w │ │ │ ├── WViewFields.java │ │ │ ├── WViewRepo.java │ │ │ ├── WViewRepoImpl.java │ │ │ └── WViewRow.java │ │ └── wr │ │ │ ├── WrViewFields.java │ │ │ ├── WrViewRepo.java │ │ │ ├── WrViewRepoImpl.java │ │ │ └── WrViewRow.java │ │ ├── production │ │ ├── billofmaterials │ │ │ ├── BillofmaterialsFields.java │ │ │ ├── BillofmaterialsRepo.java │ │ │ ├── BillofmaterialsRepoImpl.java │ │ │ ├── BillofmaterialsRepoMock.java │ │ │ ├── BillofmaterialsRow.java │ │ │ └── BillofmaterialsRowUnsaved.java │ │ ├── culture │ │ │ ├── CultureFields.java │ │ │ ├── CultureId.java │ │ │ ├── CultureRepo.java │ │ │ ├── CultureRepoImpl.java │ │ │ ├── CultureRepoMock.java │ │ │ ├── CultureRow.java │ │ │ └── CultureRowUnsaved.java │ │ ├── document │ │ │ ├── DocumentFields.java │ │ │ ├── DocumentId.java │ │ │ ├── DocumentRepo.java │ │ │ ├── DocumentRepoImpl.java │ │ │ ├── DocumentRepoMock.java │ │ │ ├── DocumentRow.java │ │ │ └── DocumentRowUnsaved.java │ │ ├── illustration │ │ │ ├── IllustrationFields.java │ │ │ ├── IllustrationId.java │ │ │ ├── IllustrationRepo.java │ │ │ ├── IllustrationRepoImpl.java │ │ │ ├── IllustrationRepoMock.java │ │ │ ├── IllustrationRow.java │ │ │ └── IllustrationRowUnsaved.java │ │ ├── location │ │ │ ├── LocationFields.java │ │ │ ├── LocationId.java │ │ │ ├── LocationRepo.java │ │ │ ├── LocationRepoImpl.java │ │ │ ├── LocationRepoMock.java │ │ │ ├── LocationRow.java │ │ │ └── LocationRowUnsaved.java │ │ ├── product │ │ │ ├── ProductFields.java │ │ │ ├── ProductId.java │ │ │ ├── ProductRepo.java │ │ │ ├── ProductRepoImpl.java │ │ │ ├── ProductRepoMock.java │ │ │ ├── ProductRow.java │ │ │ └── ProductRowUnsaved.java │ │ ├── productcategory │ │ │ ├── ProductcategoryFields.java │ │ │ ├── ProductcategoryId.java │ │ │ ├── ProductcategoryRepo.java │ │ │ ├── ProductcategoryRepoImpl.java │ │ │ ├── ProductcategoryRepoMock.java │ │ │ ├── ProductcategoryRow.java │ │ │ └── ProductcategoryRowUnsaved.java │ │ ├── productcosthistory │ │ │ ├── ProductcosthistoryFields.java │ │ │ ├── ProductcosthistoryId.java │ │ │ ├── ProductcosthistoryRepo.java │ │ │ ├── ProductcosthistoryRepoImpl.java │ │ │ ├── ProductcosthistoryRepoMock.java │ │ │ ├── ProductcosthistoryRow.java │ │ │ └── ProductcosthistoryRowUnsaved.java │ │ ├── productdescription │ │ │ ├── ProductdescriptionFields.java │ │ │ ├── ProductdescriptionId.java │ │ │ ├── ProductdescriptionRepo.java │ │ │ ├── ProductdescriptionRepoImpl.java │ │ │ ├── ProductdescriptionRepoMock.java │ │ │ ├── ProductdescriptionRow.java │ │ │ └── ProductdescriptionRowUnsaved.java │ │ ├── productdocument │ │ │ ├── ProductdocumentFields.java │ │ │ ├── ProductdocumentId.java │ │ │ ├── ProductdocumentRepo.java │ │ │ ├── ProductdocumentRepoImpl.java │ │ │ ├── ProductdocumentRepoMock.java │ │ │ ├── ProductdocumentRow.java │ │ │ └── ProductdocumentRowUnsaved.java │ │ ├── productinventory │ │ │ ├── ProductinventoryFields.java │ │ │ ├── ProductinventoryId.java │ │ │ ├── ProductinventoryRepo.java │ │ │ ├── ProductinventoryRepoImpl.java │ │ │ ├── ProductinventoryRepoMock.java │ │ │ ├── ProductinventoryRow.java │ │ │ └── ProductinventoryRowUnsaved.java │ │ ├── productlistpricehistory │ │ │ ├── ProductlistpricehistoryFields.java │ │ │ ├── ProductlistpricehistoryId.java │ │ │ ├── ProductlistpricehistoryRepo.java │ │ │ ├── ProductlistpricehistoryRepoImpl.java │ │ │ ├── ProductlistpricehistoryRepoMock.java │ │ │ ├── ProductlistpricehistoryRow.java │ │ │ └── ProductlistpricehistoryRowUnsaved.java │ │ ├── productmodel │ │ │ ├── ProductmodelFields.java │ │ │ ├── ProductmodelId.java │ │ │ ├── ProductmodelRepo.java │ │ │ ├── ProductmodelRepoImpl.java │ │ │ ├── ProductmodelRepoMock.java │ │ │ ├── ProductmodelRow.java │ │ │ └── ProductmodelRowUnsaved.java │ │ ├── productmodelillustration │ │ │ ├── ProductmodelillustrationFields.java │ │ │ ├── ProductmodelillustrationId.java │ │ │ ├── ProductmodelillustrationRepo.java │ │ │ ├── ProductmodelillustrationRepoImpl.java │ │ │ ├── ProductmodelillustrationRepoMock.java │ │ │ ├── ProductmodelillustrationRow.java │ │ │ └── ProductmodelillustrationRowUnsaved.java │ │ ├── productmodelproductdescriptionculture │ │ │ ├── ProductmodelproductdescriptioncultureFields.java │ │ │ ├── ProductmodelproductdescriptioncultureId.java │ │ │ ├── ProductmodelproductdescriptioncultureRepo.java │ │ │ ├── ProductmodelproductdescriptioncultureRepoImpl.java │ │ │ ├── ProductmodelproductdescriptioncultureRepoMock.java │ │ │ ├── ProductmodelproductdescriptioncultureRow.java │ │ │ └── ProductmodelproductdescriptioncultureRowUnsaved.java │ │ ├── productphoto │ │ │ ├── ProductphotoFields.java │ │ │ ├── ProductphotoId.java │ │ │ ├── ProductphotoRepo.java │ │ │ ├── ProductphotoRepoImpl.java │ │ │ ├── ProductphotoRepoMock.java │ │ │ ├── ProductphotoRow.java │ │ │ └── ProductphotoRowUnsaved.java │ │ ├── productproductphoto │ │ │ ├── ProductproductphotoFields.java │ │ │ ├── ProductproductphotoId.java │ │ │ ├── ProductproductphotoRepo.java │ │ │ ├── ProductproductphotoRepoImpl.java │ │ │ ├── ProductproductphotoRepoMock.java │ │ │ ├── ProductproductphotoRow.java │ │ │ └── ProductproductphotoRowUnsaved.java │ │ ├── productreview │ │ │ ├── ProductreviewFields.java │ │ │ ├── ProductreviewId.java │ │ │ ├── ProductreviewRepo.java │ │ │ ├── ProductreviewRepoImpl.java │ │ │ ├── ProductreviewRepoMock.java │ │ │ ├── ProductreviewRow.java │ │ │ └── ProductreviewRowUnsaved.java │ │ ├── productsubcategory │ │ │ ├── ProductsubcategoryFields.java │ │ │ ├── ProductsubcategoryId.java │ │ │ ├── ProductsubcategoryRepo.java │ │ │ ├── ProductsubcategoryRepoImpl.java │ │ │ ├── ProductsubcategoryRepoMock.java │ │ │ ├── ProductsubcategoryRow.java │ │ │ └── ProductsubcategoryRowUnsaved.java │ │ ├── scrapreason │ │ │ ├── ScrapreasonFields.java │ │ │ ├── ScrapreasonId.java │ │ │ ├── ScrapreasonRepo.java │ │ │ ├── ScrapreasonRepoImpl.java │ │ │ ├── ScrapreasonRepoMock.java │ │ │ ├── ScrapreasonRow.java │ │ │ └── ScrapreasonRowUnsaved.java │ │ ├── transactionhistory │ │ │ ├── TransactionhistoryFields.java │ │ │ ├── TransactionhistoryId.java │ │ │ ├── TransactionhistoryRepo.java │ │ │ ├── TransactionhistoryRepoImpl.java │ │ │ ├── TransactionhistoryRepoMock.java │ │ │ ├── TransactionhistoryRow.java │ │ │ └── TransactionhistoryRowUnsaved.java │ │ ├── transactionhistoryarchive │ │ │ ├── TransactionhistoryarchiveFields.java │ │ │ ├── TransactionhistoryarchiveId.java │ │ │ ├── TransactionhistoryarchiveRepo.java │ │ │ ├── TransactionhistoryarchiveRepoImpl.java │ │ │ ├── TransactionhistoryarchiveRepoMock.java │ │ │ ├── TransactionhistoryarchiveRow.java │ │ │ └── TransactionhistoryarchiveRowUnsaved.java │ │ ├── unitmeasure │ │ │ ├── UnitmeasureFields.java │ │ │ ├── UnitmeasureId.java │ │ │ ├── UnitmeasureRepo.java │ │ │ ├── UnitmeasureRepoImpl.java │ │ │ ├── UnitmeasureRepoMock.java │ │ │ ├── UnitmeasureRow.java │ │ │ └── UnitmeasureRowUnsaved.java │ │ ├── vproductanddescription │ │ │ ├── VproductanddescriptionMVFields.java │ │ │ ├── VproductanddescriptionMVRepo.java │ │ │ ├── VproductanddescriptionMVRepoImpl.java │ │ │ └── VproductanddescriptionMVRow.java │ │ ├── vproductmodelcatalogdescription │ │ │ ├── VproductmodelcatalogdescriptionViewFields.java │ │ │ ├── VproductmodelcatalogdescriptionViewRepo.java │ │ │ ├── VproductmodelcatalogdescriptionViewRepoImpl.java │ │ │ └── VproductmodelcatalogdescriptionViewRow.java │ │ ├── vproductmodelinstructions │ │ │ ├── VproductmodelinstructionsViewFields.java │ │ │ ├── VproductmodelinstructionsViewRepo.java │ │ │ ├── VproductmodelinstructionsViewRepoImpl.java │ │ │ └── VproductmodelinstructionsViewRow.java │ │ ├── workorder │ │ │ ├── WorkorderFields.java │ │ │ ├── WorkorderId.java │ │ │ ├── WorkorderRepo.java │ │ │ ├── WorkorderRepoImpl.java │ │ │ ├── WorkorderRepoMock.java │ │ │ ├── WorkorderRow.java │ │ │ └── WorkorderRowUnsaved.java │ │ └── workorderrouting │ │ │ ├── WorkorderroutingFields.java │ │ │ ├── WorkorderroutingId.java │ │ │ ├── WorkorderroutingRepo.java │ │ │ ├── WorkorderroutingRepoImpl.java │ │ │ ├── WorkorderroutingRepoMock.java │ │ │ ├── WorkorderroutingRow.java │ │ │ └── WorkorderroutingRowUnsaved.java │ │ ├── pu │ │ ├── pod │ │ │ ├── PodViewFields.java │ │ │ ├── PodViewRepo.java │ │ │ ├── PodViewRepoImpl.java │ │ │ └── PodViewRow.java │ │ ├── poh │ │ │ ├── PohViewFields.java │ │ │ ├── PohViewRepo.java │ │ │ ├── PohViewRepoImpl.java │ │ │ └── PohViewRow.java │ │ ├── pv │ │ │ ├── PvViewFields.java │ │ │ ├── PvViewRepo.java │ │ │ ├── PvViewRepoImpl.java │ │ │ └── PvViewRow.java │ │ ├── sm │ │ │ ├── SmViewFields.java │ │ │ ├── SmViewRepo.java │ │ │ ├── SmViewRepoImpl.java │ │ │ └── SmViewRow.java │ │ └── v │ │ │ ├── VViewFields.java │ │ │ ├── VViewRepo.java │ │ │ ├── VViewRepoImpl.java │ │ │ └── VViewRow.java │ │ ├── public_ │ │ ├── AccountNumber.java │ │ ├── Flag.java │ │ ├── Mydomain.java │ │ ├── Myenum.java │ │ ├── Name.java │ │ ├── NameStyle.java │ │ ├── OrderNumber.java │ │ ├── Phone.java │ │ ├── ShortText.java │ │ ├── flaff │ │ │ ├── FlaffFields.java │ │ │ ├── FlaffId.java │ │ │ ├── FlaffRepo.java │ │ │ ├── FlaffRepoImpl.java │ │ │ ├── FlaffRepoMock.java │ │ │ └── FlaffRow.java │ │ ├── identity_test │ │ │ ├── IdentityTestFields.java │ │ │ ├── IdentityTestId.java │ │ │ ├── IdentityTestRepo.java │ │ │ ├── IdentityTestRepoImpl.java │ │ │ ├── IdentityTestRepoMock.java │ │ │ ├── IdentityTestRow.java │ │ │ └── IdentityTestRowUnsaved.java │ │ ├── issue142 │ │ │ ├── Issue142Fields.java │ │ │ ├── Issue142Id.java │ │ │ ├── Issue142Repo.java │ │ │ ├── Issue142RepoImpl.java │ │ │ ├── Issue142RepoMock.java │ │ │ └── Issue142Row.java │ │ ├── issue142_2 │ │ │ ├── Issue1422Fields.java │ │ │ ├── Issue1422Repo.java │ │ │ ├── Issue1422RepoImpl.java │ │ │ ├── Issue1422RepoMock.java │ │ │ └── Issue1422Row.java │ │ ├── only_pk_columns │ │ │ ├── OnlyPkColumnsFields.java │ │ │ ├── OnlyPkColumnsId.java │ │ │ ├── OnlyPkColumnsRepo.java │ │ │ ├── OnlyPkColumnsRepoImpl.java │ │ │ ├── OnlyPkColumnsRepoMock.java │ │ │ └── OnlyPkColumnsRow.java │ │ ├── pgtest │ │ │ ├── PgtestFields.java │ │ │ ├── PgtestRepo.java │ │ │ ├── PgtestRepoImpl.java │ │ │ └── PgtestRow.java │ │ ├── pgtestnull │ │ │ ├── PgtestnullFields.java │ │ │ ├── PgtestnullRepo.java │ │ │ ├── PgtestnullRepoImpl.java │ │ │ └── PgtestnullRow.java │ │ ├── table_with_generated_columns │ │ │ ├── TableWithGeneratedColumnsFields.java │ │ │ ├── TableWithGeneratedColumnsId.java │ │ │ ├── TableWithGeneratedColumnsRepo.java │ │ │ ├── TableWithGeneratedColumnsRepoImpl.java │ │ │ ├── TableWithGeneratedColumnsRepoMock.java │ │ │ ├── TableWithGeneratedColumnsRow.java │ │ │ └── TableWithGeneratedColumnsRowUnsaved.java │ │ ├── test_organisasjon │ │ │ ├── TestOrganisasjonFields.java │ │ │ ├── TestOrganisasjonId.java │ │ │ ├── TestOrganisasjonRepo.java │ │ │ ├── TestOrganisasjonRepoImpl.java │ │ │ ├── TestOrganisasjonRepoMock.java │ │ │ └── TestOrganisasjonRow.java │ │ ├── test_sak_soknadsalternativ │ │ │ ├── TestSakSoknadsalternativFields.java │ │ │ ├── TestSakSoknadsalternativId.java │ │ │ ├── TestSakSoknadsalternativRepo.java │ │ │ ├── TestSakSoknadsalternativRepoImpl.java │ │ │ ├── TestSakSoknadsalternativRepoMock.java │ │ │ └── TestSakSoknadsalternativRow.java │ │ ├── test_utdanningstilbud │ │ │ ├── TestUtdanningstilbudFields.java │ │ │ ├── TestUtdanningstilbudId.java │ │ │ ├── TestUtdanningstilbudRepo.java │ │ │ ├── TestUtdanningstilbudRepoImpl.java │ │ │ ├── TestUtdanningstilbudRepoMock.java │ │ │ └── TestUtdanningstilbudRow.java │ │ ├── title │ │ │ ├── TitleFields.java │ │ │ ├── TitleId.java │ │ │ ├── TitleRepo.java │ │ │ ├── TitleRepoImpl.java │ │ │ ├── TitleRepoMock.java │ │ │ └── TitleRow.java │ │ ├── title_domain │ │ │ ├── TitleDomainFields.java │ │ │ ├── TitleDomainId.java │ │ │ ├── TitleDomainRepo.java │ │ │ ├── TitleDomainRepoImpl.java │ │ │ ├── TitleDomainRepoMock.java │ │ │ └── TitleDomainRow.java │ │ ├── titledperson │ │ │ ├── TitledpersonFields.java │ │ │ ├── TitledpersonRepo.java │ │ │ ├── TitledpersonRepoImpl.java │ │ │ └── TitledpersonRow.java │ │ └── users │ │ │ ├── UsersFields.java │ │ │ ├── UsersId.java │ │ │ ├── UsersRepo.java │ │ │ ├── UsersRepoImpl.java │ │ │ ├── UsersRepoMock.java │ │ │ ├── UsersRow.java │ │ │ └── UsersRowUnsaved.java │ │ ├── purchasing │ │ ├── productvendor │ │ │ ├── ProductvendorFields.java │ │ │ ├── ProductvendorId.java │ │ │ ├── ProductvendorRepo.java │ │ │ ├── ProductvendorRepoImpl.java │ │ │ ├── ProductvendorRepoMock.java │ │ │ ├── ProductvendorRow.java │ │ │ └── ProductvendorRowUnsaved.java │ │ ├── purchaseorderdetail │ │ │ ├── PurchaseorderdetailFields.java │ │ │ ├── PurchaseorderdetailId.java │ │ │ ├── PurchaseorderdetailRepo.java │ │ │ ├── PurchaseorderdetailRepoImpl.java │ │ │ ├── PurchaseorderdetailRow.java │ │ │ └── PurchaseorderdetailRowUnsaved.java │ │ ├── purchaseorderheader │ │ │ ├── PurchaseorderheaderFields.java │ │ │ ├── PurchaseorderheaderId.java │ │ │ ├── PurchaseorderheaderRepo.java │ │ │ ├── PurchaseorderheaderRepoImpl.java │ │ │ ├── PurchaseorderheaderRepoMock.java │ │ │ ├── PurchaseorderheaderRow.java │ │ │ └── PurchaseorderheaderRowUnsaved.java │ │ ├── shipmethod │ │ │ ├── ShipmethodFields.java │ │ │ ├── ShipmethodId.java │ │ │ ├── ShipmethodRepo.java │ │ │ ├── ShipmethodRepoImpl.java │ │ │ ├── ShipmethodRepoMock.java │ │ │ ├── ShipmethodRow.java │ │ │ └── ShipmethodRowUnsaved.java │ │ ├── vendor │ │ │ ├── VendorFields.java │ │ │ ├── VendorRepo.java │ │ │ ├── VendorRepoImpl.java │ │ │ ├── VendorRepoMock.java │ │ │ ├── VendorRow.java │ │ │ └── VendorRowUnsaved.java │ │ ├── vvendorwithaddresses │ │ │ ├── VvendorwithaddressesViewFields.java │ │ │ ├── VvendorwithaddressesViewRepo.java │ │ │ ├── VvendorwithaddressesViewRepoImpl.java │ │ │ └── VvendorwithaddressesViewRow.java │ │ └── vvendorwithcontacts │ │ │ ├── VvendorwithcontactsViewFields.java │ │ │ ├── VvendorwithcontactsViewRepo.java │ │ │ ├── VvendorwithcontactsViewRepoImpl.java │ │ │ └── VvendorwithcontactsViewRow.java │ │ ├── sa │ │ ├── c │ │ │ ├── CViewFields.java │ │ │ ├── CViewRepo.java │ │ │ ├── CViewRepoImpl.java │ │ │ └── CViewRow.java │ │ ├── cc │ │ │ ├── CcViewFields.java │ │ │ ├── CcViewRepo.java │ │ │ ├── CcViewRepoImpl.java │ │ │ └── CcViewRow.java │ │ ├── cr │ │ │ ├── CrViewFields.java │ │ │ ├── CrViewRepo.java │ │ │ ├── CrViewRepoImpl.java │ │ │ └── CrViewRow.java │ │ ├── crc │ │ │ ├── CrcViewFields.java │ │ │ ├── CrcViewRepo.java │ │ │ ├── CrcViewRepoImpl.java │ │ │ └── CrcViewRow.java │ │ ├── cu │ │ │ ├── CuViewFields.java │ │ │ ├── CuViewRepo.java │ │ │ ├── CuViewRepoImpl.java │ │ │ └── CuViewRow.java │ │ ├── pcc │ │ │ ├── PccViewFields.java │ │ │ ├── PccViewRepo.java │ │ │ ├── PccViewRepoImpl.java │ │ │ └── PccViewRow.java │ │ ├── s │ │ │ ├── SViewFields.java │ │ │ ├── SViewRepo.java │ │ │ ├── SViewRepoImpl.java │ │ │ └── SViewRow.java │ │ ├── sci │ │ │ ├── SciViewFields.java │ │ │ ├── SciViewRepo.java │ │ │ ├── SciViewRepoImpl.java │ │ │ └── SciViewRow.java │ │ ├── so │ │ │ ├── SoViewFields.java │ │ │ ├── SoViewRepo.java │ │ │ ├── SoViewRepoImpl.java │ │ │ └── SoViewRow.java │ │ ├── sod │ │ │ ├── SodViewFields.java │ │ │ ├── SodViewRepo.java │ │ │ ├── SodViewRepoImpl.java │ │ │ └── SodViewRow.java │ │ ├── soh │ │ │ ├── SohViewFields.java │ │ │ ├── SohViewRepo.java │ │ │ ├── SohViewRepoImpl.java │ │ │ └── SohViewRow.java │ │ ├── sohsr │ │ │ ├── SohsrViewFields.java │ │ │ ├── SohsrViewRepo.java │ │ │ ├── SohsrViewRepoImpl.java │ │ │ └── SohsrViewRow.java │ │ ├── sop │ │ │ ├── SopViewFields.java │ │ │ ├── SopViewRepo.java │ │ │ ├── SopViewRepoImpl.java │ │ │ └── SopViewRow.java │ │ ├── sp │ │ │ ├── SpViewFields.java │ │ │ ├── SpViewRepo.java │ │ │ ├── SpViewRepoImpl.java │ │ │ └── SpViewRow.java │ │ ├── spqh │ │ │ ├── SpqhViewFields.java │ │ │ ├── SpqhViewRepo.java │ │ │ ├── SpqhViewRepoImpl.java │ │ │ └── SpqhViewRow.java │ │ ├── sr │ │ │ ├── SrViewFields.java │ │ │ ├── SrViewRepo.java │ │ │ ├── SrViewRepoImpl.java │ │ │ └── SrViewRow.java │ │ ├── st │ │ │ ├── StViewFields.java │ │ │ ├── StViewRepo.java │ │ │ ├── StViewRepoImpl.java │ │ │ └── StViewRow.java │ │ ├── sth │ │ │ ├── SthViewFields.java │ │ │ ├── SthViewRepo.java │ │ │ ├── SthViewRepoImpl.java │ │ │ └── SthViewRow.java │ │ └── tr │ │ │ ├── TrViewFields.java │ │ │ ├── TrViewRepo.java │ │ │ ├── TrViewRepoImpl.java │ │ │ └── TrViewRow.java │ │ ├── sales │ │ ├── countryregioncurrency │ │ │ ├── CountryregioncurrencyFields.java │ │ │ ├── CountryregioncurrencyId.java │ │ │ ├── CountryregioncurrencyRepo.java │ │ │ ├── CountryregioncurrencyRepoImpl.java │ │ │ ├── CountryregioncurrencyRepoMock.java │ │ │ ├── CountryregioncurrencyRow.java │ │ │ └── CountryregioncurrencyRowUnsaved.java │ │ ├── creditcard │ │ │ ├── CreditcardFields.java │ │ │ ├── CreditcardRepo.java │ │ │ ├── CreditcardRepoImpl.java │ │ │ ├── CreditcardRepoMock.java │ │ │ ├── CreditcardRow.java │ │ │ └── CreditcardRowUnsaved.java │ │ ├── currency │ │ │ ├── CurrencyFields.java │ │ │ ├── CurrencyId.java │ │ │ ├── CurrencyRepo.java │ │ │ ├── CurrencyRepoImpl.java │ │ │ ├── CurrencyRepoMock.java │ │ │ ├── CurrencyRow.java │ │ │ └── CurrencyRowUnsaved.java │ │ ├── currencyrate │ │ │ ├── CurrencyrateFields.java │ │ │ ├── CurrencyrateId.java │ │ │ ├── CurrencyrateRepo.java │ │ │ ├── CurrencyrateRepoImpl.java │ │ │ ├── CurrencyrateRepoMock.java │ │ │ ├── CurrencyrateRow.java │ │ │ └── CurrencyrateRowUnsaved.java │ │ ├── customer │ │ │ ├── CustomerFields.java │ │ │ ├── CustomerId.java │ │ │ ├── CustomerRepo.java │ │ │ ├── CustomerRepoImpl.java │ │ │ ├── CustomerRepoMock.java │ │ │ ├── CustomerRow.java │ │ │ └── CustomerRowUnsaved.java │ │ ├── personcreditcard │ │ │ ├── PersoncreditcardFields.java │ │ │ ├── PersoncreditcardId.java │ │ │ ├── PersoncreditcardRepo.java │ │ │ ├── PersoncreditcardRepoImpl.java │ │ │ ├── PersoncreditcardRepoMock.java │ │ │ ├── PersoncreditcardRow.java │ │ │ └── PersoncreditcardRowUnsaved.java │ │ ├── salesorderdetail │ │ │ ├── SalesorderdetailFields.java │ │ │ ├── SalesorderdetailId.java │ │ │ ├── SalesorderdetailRepo.java │ │ │ ├── SalesorderdetailRepoImpl.java │ │ │ ├── SalesorderdetailRepoMock.java │ │ │ ├── SalesorderdetailRow.java │ │ │ └── SalesorderdetailRowUnsaved.java │ │ ├── salesorderheader │ │ │ ├── SalesorderheaderFields.java │ │ │ ├── SalesorderheaderId.java │ │ │ ├── SalesorderheaderRepo.java │ │ │ ├── SalesorderheaderRepoImpl.java │ │ │ ├── SalesorderheaderRepoMock.java │ │ │ ├── SalesorderheaderRow.java │ │ │ └── SalesorderheaderRowUnsaved.java │ │ ├── salesorderheadersalesreason │ │ │ ├── SalesorderheadersalesreasonFields.java │ │ │ ├── SalesorderheadersalesreasonId.java │ │ │ ├── SalesorderheadersalesreasonRepo.java │ │ │ ├── SalesorderheadersalesreasonRepoImpl.java │ │ │ ├── SalesorderheadersalesreasonRepoMock.java │ │ │ ├── SalesorderheadersalesreasonRow.java │ │ │ └── SalesorderheadersalesreasonRowUnsaved.java │ │ ├── salesperson │ │ │ ├── SalespersonFields.java │ │ │ ├── SalespersonRepo.java │ │ │ ├── SalespersonRepoImpl.java │ │ │ ├── SalespersonRepoMock.java │ │ │ ├── SalespersonRow.java │ │ │ └── SalespersonRowUnsaved.java │ │ ├── salespersonquotahistory │ │ │ ├── SalespersonquotahistoryFields.java │ │ │ ├── SalespersonquotahistoryId.java │ │ │ ├── SalespersonquotahistoryRepo.java │ │ │ ├── SalespersonquotahistoryRepoImpl.java │ │ │ ├── SalespersonquotahistoryRepoMock.java │ │ │ ├── SalespersonquotahistoryRow.java │ │ │ └── SalespersonquotahistoryRowUnsaved.java │ │ ├── salesreason │ │ │ ├── SalesreasonFields.java │ │ │ ├── SalesreasonId.java │ │ │ ├── SalesreasonRepo.java │ │ │ ├── SalesreasonRepoImpl.java │ │ │ ├── SalesreasonRepoMock.java │ │ │ ├── SalesreasonRow.java │ │ │ └── SalesreasonRowUnsaved.java │ │ ├── salestaxrate │ │ │ ├── SalestaxrateFields.java │ │ │ ├── SalestaxrateId.java │ │ │ ├── SalestaxrateRepo.java │ │ │ ├── SalestaxrateRepoImpl.java │ │ │ ├── SalestaxrateRepoMock.java │ │ │ ├── SalestaxrateRow.java │ │ │ └── SalestaxrateRowUnsaved.java │ │ ├── salesterritory │ │ │ ├── SalesterritoryFields.java │ │ │ ├── SalesterritoryId.java │ │ │ ├── SalesterritoryRepo.java │ │ │ ├── SalesterritoryRepoImpl.java │ │ │ ├── SalesterritoryRepoMock.java │ │ │ ├── SalesterritoryRow.java │ │ │ └── SalesterritoryRowUnsaved.java │ │ ├── salesterritoryhistory │ │ │ ├── SalesterritoryhistoryFields.java │ │ │ ├── SalesterritoryhistoryId.java │ │ │ ├── SalesterritoryhistoryRepo.java │ │ │ ├── SalesterritoryhistoryRepoImpl.java │ │ │ ├── SalesterritoryhistoryRepoMock.java │ │ │ ├── SalesterritoryhistoryRow.java │ │ │ └── SalesterritoryhistoryRowUnsaved.java │ │ ├── shoppingcartitem │ │ │ ├── ShoppingcartitemFields.java │ │ │ ├── ShoppingcartitemId.java │ │ │ ├── ShoppingcartitemRepo.java │ │ │ ├── ShoppingcartitemRepoImpl.java │ │ │ ├── ShoppingcartitemRepoMock.java │ │ │ ├── ShoppingcartitemRow.java │ │ │ └── ShoppingcartitemRowUnsaved.java │ │ ├── specialoffer │ │ │ ├── SpecialofferFields.java │ │ │ ├── SpecialofferId.java │ │ │ ├── SpecialofferRepo.java │ │ │ ├── SpecialofferRepoImpl.java │ │ │ ├── SpecialofferRepoMock.java │ │ │ ├── SpecialofferRow.java │ │ │ └── SpecialofferRowUnsaved.java │ │ ├── specialofferproduct │ │ │ ├── SpecialofferproductFields.java │ │ │ ├── SpecialofferproductId.java │ │ │ ├── SpecialofferproductRepo.java │ │ │ ├── SpecialofferproductRepoImpl.java │ │ │ ├── SpecialofferproductRepoMock.java │ │ │ ├── SpecialofferproductRow.java │ │ │ └── SpecialofferproductRowUnsaved.java │ │ ├── store │ │ │ ├── StoreFields.java │ │ │ ├── StoreRepo.java │ │ │ ├── StoreRepoImpl.java │ │ │ ├── StoreRepoMock.java │ │ │ ├── StoreRow.java │ │ │ └── StoreRowUnsaved.java │ │ ├── vindividualcustomer │ │ │ ├── VindividualcustomerViewFields.java │ │ │ ├── VindividualcustomerViewRepo.java │ │ │ ├── VindividualcustomerViewRepoImpl.java │ │ │ └── VindividualcustomerViewRow.java │ │ ├── vpersondemographics │ │ │ ├── VpersondemographicsViewFields.java │ │ │ ├── VpersondemographicsViewRepo.java │ │ │ ├── VpersondemographicsViewRepoImpl.java │ │ │ └── VpersondemographicsViewRow.java │ │ ├── vsalesperson │ │ │ ├── VsalespersonViewFields.java │ │ │ ├── VsalespersonViewRepo.java │ │ │ ├── VsalespersonViewRepoImpl.java │ │ │ └── VsalespersonViewRow.java │ │ ├── vsalespersonsalesbyfiscalyears │ │ │ ├── VsalespersonsalesbyfiscalyearsViewFields.java │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepo.java │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepoImpl.java │ │ │ └── VsalespersonsalesbyfiscalyearsViewRow.java │ │ ├── vsalespersonsalesbyfiscalyearsdata │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewFields.java │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepo.java │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepoImpl.java │ │ │ └── VsalespersonsalesbyfiscalyearsdataViewRow.java │ │ ├── vstorewithaddresses │ │ │ ├── VstorewithaddressesViewFields.java │ │ │ ├── VstorewithaddressesViewRepo.java │ │ │ ├── VstorewithaddressesViewRepoImpl.java │ │ │ └── VstorewithaddressesViewRow.java │ │ ├── vstorewithcontacts │ │ │ ├── VstorewithcontactsViewFields.java │ │ │ ├── VstorewithcontactsViewRepo.java │ │ │ ├── VstorewithcontactsViewRepoImpl.java │ │ │ └── VstorewithcontactsViewRow.java │ │ └── vstorewithdemographics │ │ │ ├── VstorewithdemographicsViewFields.java │ │ │ ├── VstorewithdemographicsViewRepo.java │ │ │ ├── VstorewithdemographicsViewRepoImpl.java │ │ │ └── VstorewithdemographicsViewRow.java │ │ ├── update_person │ │ ├── UpdatePersonSqlRepo.java │ │ └── UpdatePersonSqlRepoImpl.java │ │ └── update_person_returning │ │ ├── UpdatePersonReturningSqlRepo.java │ │ ├── UpdatePersonReturningSqlRepoImpl.java │ │ └── UpdatePersonReturningSqlRow.java └── src │ └── java │ └── adventureworks │ ├── ArrayTest.java │ ├── DSLTest.java │ ├── DomainInsertImpl.java │ ├── IdentityTest.java │ ├── JsonEquals.java │ ├── RecordTest.java │ ├── SeekDbTest.java │ ├── SnapshotTest.java │ ├── UpsertTwiceTest.java │ ├── WithConnection.java │ ├── humanresources │ ├── department │ │ └── DepartmentTest.java │ └── employee │ │ └── EmployeeTest.java │ ├── person │ ├── MultiRepoTest.java │ └── businessentityaddress │ │ └── BusinessentityaddressTest.java │ ├── person_detail │ └── PersonDetailTest.java │ ├── production │ ├── product │ │ ├── ProductTest.java │ │ └── SeekTest.java │ ├── productcosthistory │ │ └── CompositeIdsTest.java │ └── unitmeasure │ │ └── RepoTest.java │ ├── public_ │ ├── OpenEnumTest.java │ └── users │ │ └── UsersRepoTest.java │ ├── update_person_returning │ └── UpdatePersonReturningSqlRepoTest.java │ └── userdefined │ ├── CustomCreditcardId.java │ └── FirstName.java ├── typo-tester-typo-kotlin ├── build.gradle.kts ├── generated-and-checked-in │ └── adventureworks │ │ ├── DefaultedDeserializer.kt │ │ ├── DefaultedSerializer.kt │ │ ├── TestDomainInsert.kt │ │ ├── TestInsert.kt │ │ ├── customtypes │ │ ├── Defaulted.kt │ │ ├── TypoBox.kt │ │ ├── TypoBytea.kt │ │ ├── TypoCircle.kt │ │ ├── TypoHStore.kt │ │ ├── TypoInet.kt │ │ ├── TypoInstant.kt │ │ ├── TypoInt2Vector.kt │ │ ├── TypoInterval.kt │ │ ├── TypoJson.kt │ │ ├── TypoJsonb.kt │ │ ├── TypoLine.kt │ │ ├── TypoLineSegment.kt │ │ ├── TypoLocalDate.kt │ │ ├── TypoLocalDateTime.kt │ │ ├── TypoLocalTime.kt │ │ ├── TypoMoney.kt │ │ ├── TypoOffsetTime.kt │ │ ├── TypoPath.kt │ │ ├── TypoPoint.kt │ │ ├── TypoPolygon.kt │ │ ├── TypoRecord.kt │ │ ├── TypoShort.kt │ │ ├── TypoUUID.kt │ │ ├── TypoUnknownCitext.kt │ │ ├── TypoVector.kt │ │ └── TypoXml.kt │ │ ├── frontpage │ │ └── Email.kt │ │ ├── hr │ │ ├── d │ │ │ ├── DViewFields.kt │ │ │ ├── DViewRepo.kt │ │ │ ├── DViewRepoImpl.kt │ │ │ └── DViewRow.kt │ │ ├── e │ │ │ ├── EViewFields.kt │ │ │ ├── EViewRepo.kt │ │ │ ├── EViewRepoImpl.kt │ │ │ └── EViewRow.kt │ │ ├── edh │ │ │ ├── EdhViewFields.kt │ │ │ ├── EdhViewRepo.kt │ │ │ ├── EdhViewRepoImpl.kt │ │ │ └── EdhViewRow.kt │ │ ├── eph │ │ │ ├── EphViewFields.kt │ │ │ ├── EphViewRepo.kt │ │ │ ├── EphViewRepoImpl.kt │ │ │ └── EphViewRow.kt │ │ ├── jc │ │ │ ├── JcViewFields.kt │ │ │ ├── JcViewRepo.kt │ │ │ ├── JcViewRepoImpl.kt │ │ │ └── JcViewRow.kt │ │ └── s │ │ │ ├── SViewFields.kt │ │ │ ├── SViewRepo.kt │ │ │ ├── SViewRepoImpl.kt │ │ │ └── SViewRow.kt │ │ ├── humanresources │ │ ├── department │ │ │ ├── DepartmentFields.kt │ │ │ ├── DepartmentId.kt │ │ │ ├── DepartmentRepo.kt │ │ │ ├── DepartmentRepoImpl.kt │ │ │ ├── DepartmentRepoMock.kt │ │ │ ├── DepartmentRow.kt │ │ │ └── DepartmentRowUnsaved.kt │ │ ├── employee │ │ │ ├── EmployeeFields.kt │ │ │ ├── EmployeeRepo.kt │ │ │ ├── EmployeeRepoImpl.kt │ │ │ ├── EmployeeRepoMock.kt │ │ │ ├── EmployeeRow.kt │ │ │ └── EmployeeRowUnsaved.kt │ │ ├── employeedepartmenthistory │ │ │ ├── EmployeedepartmenthistoryFields.kt │ │ │ ├── EmployeedepartmenthistoryId.kt │ │ │ ├── EmployeedepartmenthistoryRepo.kt │ │ │ ├── EmployeedepartmenthistoryRepoImpl.kt │ │ │ ├── EmployeedepartmenthistoryRepoMock.kt │ │ │ ├── EmployeedepartmenthistoryRow.kt │ │ │ └── EmployeedepartmenthistoryRowUnsaved.kt │ │ ├── employeepayhistory │ │ │ ├── EmployeepayhistoryFields.kt │ │ │ ├── EmployeepayhistoryId.kt │ │ │ ├── EmployeepayhistoryRepo.kt │ │ │ ├── EmployeepayhistoryRepoImpl.kt │ │ │ ├── EmployeepayhistoryRepoMock.kt │ │ │ ├── EmployeepayhistoryRow.kt │ │ │ └── EmployeepayhistoryRowUnsaved.kt │ │ ├── jobcandidate │ │ │ ├── JobcandidateFields.kt │ │ │ ├── JobcandidateId.kt │ │ │ ├── JobcandidateRepo.kt │ │ │ ├── JobcandidateRepoImpl.kt │ │ │ ├── JobcandidateRepoMock.kt │ │ │ ├── JobcandidateRow.kt │ │ │ └── JobcandidateRowUnsaved.kt │ │ ├── shift │ │ │ ├── ShiftFields.kt │ │ │ ├── ShiftId.kt │ │ │ ├── ShiftRepo.kt │ │ │ ├── ShiftRepoImpl.kt │ │ │ ├── ShiftRepoMock.kt │ │ │ ├── ShiftRow.kt │ │ │ └── ShiftRowUnsaved.kt │ │ ├── vemployee │ │ │ ├── VemployeeViewFields.kt │ │ │ ├── VemployeeViewRepo.kt │ │ │ ├── VemployeeViewRepoImpl.kt │ │ │ └── VemployeeViewRow.kt │ │ ├── vemployeedepartment │ │ │ ├── VemployeedepartmentViewFields.kt │ │ │ ├── VemployeedepartmentViewRepo.kt │ │ │ ├── VemployeedepartmentViewRepoImpl.kt │ │ │ └── VemployeedepartmentViewRow.kt │ │ ├── vemployeedepartmenthistory │ │ │ ├── VemployeedepartmenthistoryViewFields.kt │ │ │ ├── VemployeedepartmenthistoryViewRepo.kt │ │ │ ├── VemployeedepartmenthistoryViewRepoImpl.kt │ │ │ └── VemployeedepartmenthistoryViewRow.kt │ │ ├── vjobcandidate │ │ │ ├── VjobcandidateViewFields.kt │ │ │ ├── VjobcandidateViewRepo.kt │ │ │ ├── VjobcandidateViewRepoImpl.kt │ │ │ └── VjobcandidateViewRow.kt │ │ ├── vjobcandidateeducation │ │ │ ├── VjobcandidateeducationViewFields.kt │ │ │ ├── VjobcandidateeducationViewRepo.kt │ │ │ ├── VjobcandidateeducationViewRepoImpl.kt │ │ │ └── VjobcandidateeducationViewRow.kt │ │ └── vjobcandidateemployment │ │ │ ├── VjobcandidateemploymentViewFields.kt │ │ │ ├── VjobcandidateemploymentViewRepo.kt │ │ │ ├── VjobcandidateemploymentViewRepoImpl.kt │ │ │ └── VjobcandidateemploymentViewRow.kt │ │ ├── information_schema │ │ ├── CardinalNumber.kt │ │ ├── CharacterData.kt │ │ ├── SqlIdentifier.kt │ │ ├── TimeStamp.kt │ │ └── YesOrNo.kt │ │ ├── pe │ │ ├── a │ │ │ ├── AViewFields.kt │ │ │ ├── AViewRepo.kt │ │ │ ├── AViewRepoImpl.kt │ │ │ └── AViewRow.kt │ │ ├── at │ │ │ ├── AtViewFields.kt │ │ │ ├── AtViewRepo.kt │ │ │ ├── AtViewRepoImpl.kt │ │ │ └── AtViewRow.kt │ │ ├── be │ │ │ ├── BeViewFields.kt │ │ │ ├── BeViewRepo.kt │ │ │ ├── BeViewRepoImpl.kt │ │ │ └── BeViewRow.kt │ │ ├── bea │ │ │ ├── BeaViewFields.kt │ │ │ ├── BeaViewRepo.kt │ │ │ ├── BeaViewRepoImpl.kt │ │ │ └── BeaViewRow.kt │ │ ├── bec │ │ │ ├── BecViewFields.kt │ │ │ ├── BecViewRepo.kt │ │ │ ├── BecViewRepoImpl.kt │ │ │ └── BecViewRow.kt │ │ ├── cr │ │ │ ├── CrViewFields.kt │ │ │ ├── CrViewRepo.kt │ │ │ ├── CrViewRepoImpl.kt │ │ │ └── CrViewRow.kt │ │ ├── ct │ │ │ ├── CtViewFields.kt │ │ │ ├── CtViewRepo.kt │ │ │ ├── CtViewRepoImpl.kt │ │ │ └── CtViewRow.kt │ │ ├── e │ │ │ ├── EViewFields.kt │ │ │ ├── EViewRepo.kt │ │ │ ├── EViewRepoImpl.kt │ │ │ └── EViewRow.kt │ │ ├── p │ │ │ ├── PViewFields.kt │ │ │ ├── PViewRepo.kt │ │ │ ├── PViewRepoImpl.kt │ │ │ └── PViewRow.kt │ │ ├── pa │ │ │ ├── PaViewFields.kt │ │ │ ├── PaViewRepo.kt │ │ │ ├── PaViewRepoImpl.kt │ │ │ └── PaViewRow.kt │ │ ├── pnt │ │ │ ├── PntViewFields.kt │ │ │ ├── PntViewRepo.kt │ │ │ ├── PntViewRepoImpl.kt │ │ │ └── PntViewRow.kt │ │ ├── pp │ │ │ ├── PpViewFields.kt │ │ │ ├── PpViewRepo.kt │ │ │ ├── PpViewRepoImpl.kt │ │ │ └── PpViewRow.kt │ │ └── sp │ │ │ ├── SpViewFields.kt │ │ │ ├── SpViewRepo.kt │ │ │ ├── SpViewRepoImpl.kt │ │ │ └── SpViewRow.kt │ │ ├── person │ │ ├── address │ │ │ ├── AddressFields.kt │ │ │ ├── AddressId.kt │ │ │ ├── AddressRepo.kt │ │ │ ├── AddressRepoImpl.kt │ │ │ ├── AddressRepoMock.kt │ │ │ ├── AddressRow.kt │ │ │ └── AddressRowUnsaved.kt │ │ ├── addresstype │ │ │ ├── AddresstypeFields.kt │ │ │ ├── AddresstypeId.kt │ │ │ ├── AddresstypeRepo.kt │ │ │ ├── AddresstypeRepoImpl.kt │ │ │ ├── AddresstypeRepoMock.kt │ │ │ ├── AddresstypeRow.kt │ │ │ └── AddresstypeRowUnsaved.kt │ │ ├── businessentity │ │ │ ├── BusinessentityFields.kt │ │ │ ├── BusinessentityId.kt │ │ │ ├── BusinessentityRepo.kt │ │ │ ├── BusinessentityRepoImpl.kt │ │ │ ├── BusinessentityRepoMock.kt │ │ │ ├── BusinessentityRow.kt │ │ │ └── BusinessentityRowUnsaved.kt │ │ ├── businessentityaddress │ │ │ ├── BusinessentityaddressFields.kt │ │ │ ├── BusinessentityaddressId.kt │ │ │ ├── BusinessentityaddressRepo.kt │ │ │ ├── BusinessentityaddressRepoImpl.kt │ │ │ ├── BusinessentityaddressRepoMock.kt │ │ │ ├── BusinessentityaddressRow.kt │ │ │ └── BusinessentityaddressRowUnsaved.kt │ │ ├── businessentitycontact │ │ │ ├── BusinessentitycontactFields.kt │ │ │ ├── BusinessentitycontactId.kt │ │ │ ├── BusinessentitycontactRepo.kt │ │ │ ├── BusinessentitycontactRepoImpl.kt │ │ │ ├── BusinessentitycontactRepoMock.kt │ │ │ ├── BusinessentitycontactRow.kt │ │ │ └── BusinessentitycontactRowUnsaved.kt │ │ ├── contacttype │ │ │ ├── ContacttypeFields.kt │ │ │ ├── ContacttypeId.kt │ │ │ ├── ContacttypeRepo.kt │ │ │ ├── ContacttypeRepoImpl.kt │ │ │ ├── ContacttypeRepoMock.kt │ │ │ ├── ContacttypeRow.kt │ │ │ └── ContacttypeRowUnsaved.kt │ │ ├── countryregion │ │ │ ├── CountryregionFields.kt │ │ │ ├── CountryregionId.kt │ │ │ ├── CountryregionRepo.kt │ │ │ ├── CountryregionRepoImpl.kt │ │ │ ├── CountryregionRepoMock.kt │ │ │ ├── CountryregionRow.kt │ │ │ └── CountryregionRowUnsaved.kt │ │ ├── emailaddress │ │ │ ├── EmailaddressFields.kt │ │ │ ├── EmailaddressId.kt │ │ │ ├── EmailaddressRepo.kt │ │ │ ├── EmailaddressRepoImpl.kt │ │ │ ├── EmailaddressRepoMock.kt │ │ │ ├── EmailaddressRow.kt │ │ │ └── EmailaddressRowUnsaved.kt │ │ ├── password │ │ │ ├── PasswordFields.kt │ │ │ ├── PasswordRepo.kt │ │ │ ├── PasswordRepoImpl.kt │ │ │ ├── PasswordRepoMock.kt │ │ │ ├── PasswordRow.kt │ │ │ └── PasswordRowUnsaved.kt │ │ ├── person │ │ │ ├── PersonFields.kt │ │ │ ├── PersonRepo.kt │ │ │ ├── PersonRepoImpl.kt │ │ │ ├── PersonRepoMock.kt │ │ │ ├── PersonRow.kt │ │ │ └── PersonRowUnsaved.kt │ │ ├── personphone │ │ │ ├── PersonphoneFields.kt │ │ │ ├── PersonphoneId.kt │ │ │ ├── PersonphoneRepo.kt │ │ │ ├── PersonphoneRepoImpl.kt │ │ │ ├── PersonphoneRepoMock.kt │ │ │ ├── PersonphoneRow.kt │ │ │ └── PersonphoneRowUnsaved.kt │ │ ├── phonenumbertype │ │ │ ├── PhonenumbertypeFields.kt │ │ │ ├── PhonenumbertypeId.kt │ │ │ ├── PhonenumbertypeRepo.kt │ │ │ ├── PhonenumbertypeRepoImpl.kt │ │ │ ├── PhonenumbertypeRepoMock.kt │ │ │ ├── PhonenumbertypeRow.kt │ │ │ └── PhonenumbertypeRowUnsaved.kt │ │ ├── stateprovince │ │ │ ├── StateprovinceFields.kt │ │ │ ├── StateprovinceId.kt │ │ │ ├── StateprovinceRepo.kt │ │ │ ├── StateprovinceRepoImpl.kt │ │ │ ├── StateprovinceRepoMock.kt │ │ │ ├── StateprovinceRow.kt │ │ │ └── StateprovinceRowUnsaved.kt │ │ ├── vadditionalcontactinfo │ │ │ ├── VadditionalcontactinfoViewFields.kt │ │ │ ├── VadditionalcontactinfoViewRepo.kt │ │ │ ├── VadditionalcontactinfoViewRepoImpl.kt │ │ │ └── VadditionalcontactinfoViewRow.kt │ │ └── vstateprovincecountryregion │ │ │ ├── VstateprovincecountryregionMVFields.kt │ │ │ ├── VstateprovincecountryregionMVRepo.kt │ │ │ ├── VstateprovincecountryregionMVRepoImpl.kt │ │ │ └── VstateprovincecountryregionMVRow.kt │ │ ├── person_detail │ │ ├── PersonDetailSqlRepo.kt │ │ ├── PersonDetailSqlRepoImpl.kt │ │ └── PersonDetailSqlRow.kt │ │ ├── person_dynamic │ │ ├── PersonDynamicSqlRepo.kt │ │ ├── PersonDynamicSqlRepoImpl.kt │ │ └── PersonDynamicSqlRow.kt │ │ ├── person_row_join │ │ ├── PersonRowJoinSqlRepo.kt │ │ ├── PersonRowJoinSqlRepoImpl.kt │ │ └── PersonRowJoinSqlRow.kt │ │ ├── pr │ │ ├── bom │ │ │ ├── BomViewFields.kt │ │ │ ├── BomViewRepo.kt │ │ │ ├── BomViewRepoImpl.kt │ │ │ └── BomViewRow.kt │ │ ├── c │ │ │ ├── CViewFields.kt │ │ │ ├── CViewRepo.kt │ │ │ ├── CViewRepoImpl.kt │ │ │ └── CViewRow.kt │ │ ├── d │ │ │ ├── DViewFields.kt │ │ │ ├── DViewRepo.kt │ │ │ ├── DViewRepoImpl.kt │ │ │ └── DViewRow.kt │ │ ├── i │ │ │ ├── IViewFields.kt │ │ │ ├── IViewRepo.kt │ │ │ ├── IViewRepoImpl.kt │ │ │ └── IViewRow.kt │ │ ├── l │ │ │ ├── LViewFields.kt │ │ │ ├── LViewRepo.kt │ │ │ ├── LViewRepoImpl.kt │ │ │ └── LViewRow.kt │ │ ├── p │ │ │ ├── PViewFields.kt │ │ │ ├── PViewRepo.kt │ │ │ ├── PViewRepoImpl.kt │ │ │ └── PViewRow.kt │ │ ├── pc │ │ │ ├── PcViewFields.kt │ │ │ ├── PcViewRepo.kt │ │ │ ├── PcViewRepoImpl.kt │ │ │ └── PcViewRow.kt │ │ ├── pch │ │ │ ├── PchViewFields.kt │ │ │ ├── PchViewRepo.kt │ │ │ ├── PchViewRepoImpl.kt │ │ │ └── PchViewRow.kt │ │ ├── pd │ │ │ ├── PdViewFields.kt │ │ │ ├── PdViewRepo.kt │ │ │ ├── PdViewRepoImpl.kt │ │ │ └── PdViewRow.kt │ │ ├── pdoc │ │ │ ├── PdocViewFields.kt │ │ │ ├── PdocViewRepo.kt │ │ │ ├── PdocViewRepoImpl.kt │ │ │ └── PdocViewRow.kt │ │ ├── pi │ │ │ ├── PiViewFields.kt │ │ │ ├── PiViewRepo.kt │ │ │ ├── PiViewRepoImpl.kt │ │ │ └── PiViewRow.kt │ │ ├── plph │ │ │ ├── PlphViewFields.kt │ │ │ ├── PlphViewRepo.kt │ │ │ ├── PlphViewRepoImpl.kt │ │ │ └── PlphViewRow.kt │ │ ├── pm │ │ │ ├── PmViewFields.kt │ │ │ ├── PmViewRepo.kt │ │ │ ├── PmViewRepoImpl.kt │ │ │ └── PmViewRow.kt │ │ ├── pmi │ │ │ ├── PmiViewFields.kt │ │ │ ├── PmiViewRepo.kt │ │ │ ├── PmiViewRepoImpl.kt │ │ │ └── PmiViewRow.kt │ │ ├── pmpdc │ │ │ ├── PmpdcViewFields.kt │ │ │ ├── PmpdcViewRepo.kt │ │ │ ├── PmpdcViewRepoImpl.kt │ │ │ └── PmpdcViewRow.kt │ │ ├── pp │ │ │ ├── PpViewFields.kt │ │ │ ├── PpViewRepo.kt │ │ │ ├── PpViewRepoImpl.kt │ │ │ └── PpViewRow.kt │ │ ├── ppp │ │ │ ├── PppViewFields.kt │ │ │ ├── PppViewRepo.kt │ │ │ ├── PppViewRepoImpl.kt │ │ │ └── PppViewRow.kt │ │ ├── pr │ │ │ ├── PrViewFields.kt │ │ │ ├── PrViewRepo.kt │ │ │ ├── PrViewRepoImpl.kt │ │ │ └── PrViewRow.kt │ │ ├── psc │ │ │ ├── PscViewFields.kt │ │ │ ├── PscViewRepo.kt │ │ │ ├── PscViewRepoImpl.kt │ │ │ └── PscViewRow.kt │ │ ├── sr │ │ │ ├── SrViewFields.kt │ │ │ ├── SrViewRepo.kt │ │ │ ├── SrViewRepoImpl.kt │ │ │ └── SrViewRow.kt │ │ ├── th │ │ │ ├── ThViewFields.kt │ │ │ ├── ThViewRepo.kt │ │ │ ├── ThViewRepoImpl.kt │ │ │ └── ThViewRow.kt │ │ ├── tha │ │ │ ├── ThaViewFields.kt │ │ │ ├── ThaViewRepo.kt │ │ │ ├── ThaViewRepoImpl.kt │ │ │ └── ThaViewRow.kt │ │ ├── um │ │ │ ├── UmViewFields.kt │ │ │ ├── UmViewRepo.kt │ │ │ ├── UmViewRepoImpl.kt │ │ │ └── UmViewRow.kt │ │ ├── w │ │ │ ├── WViewFields.kt │ │ │ ├── WViewRepo.kt │ │ │ ├── WViewRepoImpl.kt │ │ │ └── WViewRow.kt │ │ └── wr │ │ │ ├── WrViewFields.kt │ │ │ ├── WrViewRepo.kt │ │ │ ├── WrViewRepoImpl.kt │ │ │ └── WrViewRow.kt │ │ ├── production │ │ ├── billofmaterials │ │ │ ├── BillofmaterialsFields.kt │ │ │ ├── BillofmaterialsRepo.kt │ │ │ ├── BillofmaterialsRepoImpl.kt │ │ │ ├── BillofmaterialsRepoMock.kt │ │ │ ├── BillofmaterialsRow.kt │ │ │ └── BillofmaterialsRowUnsaved.kt │ │ ├── culture │ │ │ ├── CultureFields.kt │ │ │ ├── CultureId.kt │ │ │ ├── CultureRepo.kt │ │ │ ├── CultureRepoImpl.kt │ │ │ ├── CultureRepoMock.kt │ │ │ ├── CultureRow.kt │ │ │ └── CultureRowUnsaved.kt │ │ ├── document │ │ │ ├── DocumentFields.kt │ │ │ ├── DocumentId.kt │ │ │ ├── DocumentRepo.kt │ │ │ ├── DocumentRepoImpl.kt │ │ │ ├── DocumentRepoMock.kt │ │ │ ├── DocumentRow.kt │ │ │ └── DocumentRowUnsaved.kt │ │ ├── illustration │ │ │ ├── IllustrationFields.kt │ │ │ ├── IllustrationId.kt │ │ │ ├── IllustrationRepo.kt │ │ │ ├── IllustrationRepoImpl.kt │ │ │ ├── IllustrationRepoMock.kt │ │ │ ├── IllustrationRow.kt │ │ │ └── IllustrationRowUnsaved.kt │ │ ├── location │ │ │ ├── LocationFields.kt │ │ │ ├── LocationId.kt │ │ │ ├── LocationRepo.kt │ │ │ ├── LocationRepoImpl.kt │ │ │ ├── LocationRepoMock.kt │ │ │ ├── LocationRow.kt │ │ │ └── LocationRowUnsaved.kt │ │ ├── product │ │ │ ├── ProductFields.kt │ │ │ ├── ProductId.kt │ │ │ ├── ProductRepo.kt │ │ │ ├── ProductRepoImpl.kt │ │ │ ├── ProductRepoMock.kt │ │ │ ├── ProductRow.kt │ │ │ └── ProductRowUnsaved.kt │ │ ├── productcategory │ │ │ ├── ProductcategoryFields.kt │ │ │ ├── ProductcategoryId.kt │ │ │ ├── ProductcategoryRepo.kt │ │ │ ├── ProductcategoryRepoImpl.kt │ │ │ ├── ProductcategoryRepoMock.kt │ │ │ ├── ProductcategoryRow.kt │ │ │ └── ProductcategoryRowUnsaved.kt │ │ ├── productcosthistory │ │ │ ├── ProductcosthistoryFields.kt │ │ │ ├── ProductcosthistoryId.kt │ │ │ ├── ProductcosthistoryRepo.kt │ │ │ ├── ProductcosthistoryRepoImpl.kt │ │ │ ├── ProductcosthistoryRepoMock.kt │ │ │ ├── ProductcosthistoryRow.kt │ │ │ └── ProductcosthistoryRowUnsaved.kt │ │ ├── productdescription │ │ │ ├── ProductdescriptionFields.kt │ │ │ ├── ProductdescriptionId.kt │ │ │ ├── ProductdescriptionRepo.kt │ │ │ ├── ProductdescriptionRepoImpl.kt │ │ │ ├── ProductdescriptionRepoMock.kt │ │ │ ├── ProductdescriptionRow.kt │ │ │ └── ProductdescriptionRowUnsaved.kt │ │ ├── productdocument │ │ │ ├── ProductdocumentFields.kt │ │ │ ├── ProductdocumentId.kt │ │ │ ├── ProductdocumentRepo.kt │ │ │ ├── ProductdocumentRepoImpl.kt │ │ │ ├── ProductdocumentRepoMock.kt │ │ │ ├── ProductdocumentRow.kt │ │ │ └── ProductdocumentRowUnsaved.kt │ │ ├── productinventory │ │ │ ├── ProductinventoryFields.kt │ │ │ ├── ProductinventoryId.kt │ │ │ ├── ProductinventoryRepo.kt │ │ │ ├── ProductinventoryRepoImpl.kt │ │ │ ├── ProductinventoryRepoMock.kt │ │ │ ├── ProductinventoryRow.kt │ │ │ └── ProductinventoryRowUnsaved.kt │ │ ├── productlistpricehistory │ │ │ ├── ProductlistpricehistoryFields.kt │ │ │ ├── ProductlistpricehistoryId.kt │ │ │ ├── ProductlistpricehistoryRepo.kt │ │ │ ├── ProductlistpricehistoryRepoImpl.kt │ │ │ ├── ProductlistpricehistoryRepoMock.kt │ │ │ ├── ProductlistpricehistoryRow.kt │ │ │ └── ProductlistpricehistoryRowUnsaved.kt │ │ ├── productmodel │ │ │ ├── ProductmodelFields.kt │ │ │ ├── ProductmodelId.kt │ │ │ ├── ProductmodelRepo.kt │ │ │ ├── ProductmodelRepoImpl.kt │ │ │ ├── ProductmodelRepoMock.kt │ │ │ ├── ProductmodelRow.kt │ │ │ └── ProductmodelRowUnsaved.kt │ │ ├── productmodelillustration │ │ │ ├── ProductmodelillustrationFields.kt │ │ │ ├── ProductmodelillustrationId.kt │ │ │ ├── ProductmodelillustrationRepo.kt │ │ │ ├── ProductmodelillustrationRepoImpl.kt │ │ │ ├── ProductmodelillustrationRepoMock.kt │ │ │ ├── ProductmodelillustrationRow.kt │ │ │ └── ProductmodelillustrationRowUnsaved.kt │ │ ├── productmodelproductdescriptionculture │ │ │ ├── ProductmodelproductdescriptioncultureFields.kt │ │ │ ├── ProductmodelproductdescriptioncultureId.kt │ │ │ ├── ProductmodelproductdescriptioncultureRepo.kt │ │ │ ├── ProductmodelproductdescriptioncultureRepoImpl.kt │ │ │ ├── ProductmodelproductdescriptioncultureRepoMock.kt │ │ │ ├── ProductmodelproductdescriptioncultureRow.kt │ │ │ └── ProductmodelproductdescriptioncultureRowUnsaved.kt │ │ ├── productphoto │ │ │ ├── ProductphotoFields.kt │ │ │ ├── ProductphotoId.kt │ │ │ ├── ProductphotoRepo.kt │ │ │ ├── ProductphotoRepoImpl.kt │ │ │ ├── ProductphotoRepoMock.kt │ │ │ ├── ProductphotoRow.kt │ │ │ └── ProductphotoRowUnsaved.kt │ │ ├── productproductphoto │ │ │ ├── ProductproductphotoFields.kt │ │ │ ├── ProductproductphotoId.kt │ │ │ ├── ProductproductphotoRepo.kt │ │ │ ├── ProductproductphotoRepoImpl.kt │ │ │ ├── ProductproductphotoRepoMock.kt │ │ │ ├── ProductproductphotoRow.kt │ │ │ └── ProductproductphotoRowUnsaved.kt │ │ ├── productreview │ │ │ ├── ProductreviewFields.kt │ │ │ ├── ProductreviewId.kt │ │ │ ├── ProductreviewRepo.kt │ │ │ ├── ProductreviewRepoImpl.kt │ │ │ ├── ProductreviewRepoMock.kt │ │ │ ├── ProductreviewRow.kt │ │ │ └── ProductreviewRowUnsaved.kt │ │ ├── productsubcategory │ │ │ ├── ProductsubcategoryFields.kt │ │ │ ├── ProductsubcategoryId.kt │ │ │ ├── ProductsubcategoryRepo.kt │ │ │ ├── ProductsubcategoryRepoImpl.kt │ │ │ ├── ProductsubcategoryRepoMock.kt │ │ │ ├── ProductsubcategoryRow.kt │ │ │ └── ProductsubcategoryRowUnsaved.kt │ │ ├── scrapreason │ │ │ ├── ScrapreasonFields.kt │ │ │ ├── ScrapreasonId.kt │ │ │ ├── ScrapreasonRepo.kt │ │ │ ├── ScrapreasonRepoImpl.kt │ │ │ ├── ScrapreasonRepoMock.kt │ │ │ ├── ScrapreasonRow.kt │ │ │ └── ScrapreasonRowUnsaved.kt │ │ ├── transactionhistory │ │ │ ├── TransactionhistoryFields.kt │ │ │ ├── TransactionhistoryId.kt │ │ │ ├── TransactionhistoryRepo.kt │ │ │ ├── TransactionhistoryRepoImpl.kt │ │ │ ├── TransactionhistoryRepoMock.kt │ │ │ ├── TransactionhistoryRow.kt │ │ │ └── TransactionhistoryRowUnsaved.kt │ │ ├── transactionhistoryarchive │ │ │ ├── TransactionhistoryarchiveFields.kt │ │ │ ├── TransactionhistoryarchiveId.kt │ │ │ ├── TransactionhistoryarchiveRepo.kt │ │ │ ├── TransactionhistoryarchiveRepoImpl.kt │ │ │ ├── TransactionhistoryarchiveRepoMock.kt │ │ │ ├── TransactionhistoryarchiveRow.kt │ │ │ └── TransactionhistoryarchiveRowUnsaved.kt │ │ ├── unitmeasure │ │ │ ├── UnitmeasureFields.kt │ │ │ ├── UnitmeasureId.kt │ │ │ ├── UnitmeasureRepo.kt │ │ │ ├── UnitmeasureRepoImpl.kt │ │ │ ├── UnitmeasureRepoMock.kt │ │ │ ├── UnitmeasureRow.kt │ │ │ └── UnitmeasureRowUnsaved.kt │ │ ├── vproductanddescription │ │ │ ├── VproductanddescriptionMVFields.kt │ │ │ ├── VproductanddescriptionMVRepo.kt │ │ │ ├── VproductanddescriptionMVRepoImpl.kt │ │ │ └── VproductanddescriptionMVRow.kt │ │ ├── vproductmodelcatalogdescription │ │ │ ├── VproductmodelcatalogdescriptionViewFields.kt │ │ │ ├── VproductmodelcatalogdescriptionViewRepo.kt │ │ │ ├── VproductmodelcatalogdescriptionViewRepoImpl.kt │ │ │ └── VproductmodelcatalogdescriptionViewRow.kt │ │ ├── vproductmodelinstructions │ │ │ ├── VproductmodelinstructionsViewFields.kt │ │ │ ├── VproductmodelinstructionsViewRepo.kt │ │ │ ├── VproductmodelinstructionsViewRepoImpl.kt │ │ │ └── VproductmodelinstructionsViewRow.kt │ │ ├── workorder │ │ │ ├── WorkorderFields.kt │ │ │ ├── WorkorderId.kt │ │ │ ├── WorkorderRepo.kt │ │ │ ├── WorkorderRepoImpl.kt │ │ │ ├── WorkorderRepoMock.kt │ │ │ ├── WorkorderRow.kt │ │ │ └── WorkorderRowUnsaved.kt │ │ └── workorderrouting │ │ │ ├── WorkorderroutingFields.kt │ │ │ ├── WorkorderroutingId.kt │ │ │ ├── WorkorderroutingRepo.kt │ │ │ ├── WorkorderroutingRepoImpl.kt │ │ │ ├── WorkorderroutingRepoMock.kt │ │ │ ├── WorkorderroutingRow.kt │ │ │ └── WorkorderroutingRowUnsaved.kt │ │ ├── pu │ │ ├── pod │ │ │ ├── PodViewFields.kt │ │ │ ├── PodViewRepo.kt │ │ │ ├── PodViewRepoImpl.kt │ │ │ └── PodViewRow.kt │ │ ├── poh │ │ │ ├── PohViewFields.kt │ │ │ ├── PohViewRepo.kt │ │ │ ├── PohViewRepoImpl.kt │ │ │ └── PohViewRow.kt │ │ ├── pv │ │ │ ├── PvViewFields.kt │ │ │ ├── PvViewRepo.kt │ │ │ ├── PvViewRepoImpl.kt │ │ │ └── PvViewRow.kt │ │ ├── sm │ │ │ ├── SmViewFields.kt │ │ │ ├── SmViewRepo.kt │ │ │ ├── SmViewRepoImpl.kt │ │ │ └── SmViewRow.kt │ │ └── v │ │ │ ├── VViewFields.kt │ │ │ ├── VViewRepo.kt │ │ │ ├── VViewRepoImpl.kt │ │ │ └── VViewRow.kt │ │ ├── public │ │ ├── AccountNumber.kt │ │ ├── Flag.kt │ │ ├── Mydomain.kt │ │ ├── Myenum.kt │ │ ├── Name.kt │ │ ├── NameStyle.kt │ │ ├── OrderNumber.kt │ │ ├── Phone.kt │ │ ├── ShortText.kt │ │ ├── flaff │ │ │ ├── FlaffFields.kt │ │ │ ├── FlaffId.kt │ │ │ ├── FlaffRepo.kt │ │ │ ├── FlaffRepoImpl.kt │ │ │ ├── FlaffRepoMock.kt │ │ │ └── FlaffRow.kt │ │ ├── identity_test │ │ │ ├── IdentityTestFields.kt │ │ │ ├── IdentityTestId.kt │ │ │ ├── IdentityTestRepo.kt │ │ │ ├── IdentityTestRepoImpl.kt │ │ │ ├── IdentityTestRepoMock.kt │ │ │ ├── IdentityTestRow.kt │ │ │ └── IdentityTestRowUnsaved.kt │ │ ├── issue142 │ │ │ ├── Issue142Fields.kt │ │ │ ├── Issue142Id.kt │ │ │ ├── Issue142Repo.kt │ │ │ ├── Issue142RepoImpl.kt │ │ │ ├── Issue142RepoMock.kt │ │ │ └── Issue142Row.kt │ │ ├── issue142_2 │ │ │ ├── Issue1422Fields.kt │ │ │ ├── Issue1422Repo.kt │ │ │ ├── Issue1422RepoImpl.kt │ │ │ ├── Issue1422RepoMock.kt │ │ │ └── Issue1422Row.kt │ │ ├── only_pk_columns │ │ │ ├── OnlyPkColumnsFields.kt │ │ │ ├── OnlyPkColumnsId.kt │ │ │ ├── OnlyPkColumnsRepo.kt │ │ │ ├── OnlyPkColumnsRepoImpl.kt │ │ │ ├── OnlyPkColumnsRepoMock.kt │ │ │ └── OnlyPkColumnsRow.kt │ │ ├── pgtest │ │ │ ├── PgtestFields.kt │ │ │ ├── PgtestRepo.kt │ │ │ ├── PgtestRepoImpl.kt │ │ │ └── PgtestRow.kt │ │ ├── pgtestnull │ │ │ ├── PgtestnullFields.kt │ │ │ ├── PgtestnullRepo.kt │ │ │ ├── PgtestnullRepoImpl.kt │ │ │ └── PgtestnullRow.kt │ │ ├── table_with_generated_columns │ │ │ ├── TableWithGeneratedColumnsFields.kt │ │ │ ├── TableWithGeneratedColumnsId.kt │ │ │ ├── TableWithGeneratedColumnsRepo.kt │ │ │ ├── TableWithGeneratedColumnsRepoImpl.kt │ │ │ ├── TableWithGeneratedColumnsRepoMock.kt │ │ │ ├── TableWithGeneratedColumnsRow.kt │ │ │ └── TableWithGeneratedColumnsRowUnsaved.kt │ │ ├── test_organisasjon │ │ │ ├── TestOrganisasjonFields.kt │ │ │ ├── TestOrganisasjonId.kt │ │ │ ├── TestOrganisasjonRepo.kt │ │ │ ├── TestOrganisasjonRepoImpl.kt │ │ │ ├── TestOrganisasjonRepoMock.kt │ │ │ └── TestOrganisasjonRow.kt │ │ ├── test_sak_soknadsalternativ │ │ │ ├── TestSakSoknadsalternativFields.kt │ │ │ ├── TestSakSoknadsalternativId.kt │ │ │ ├── TestSakSoknadsalternativRepo.kt │ │ │ ├── TestSakSoknadsalternativRepoImpl.kt │ │ │ ├── TestSakSoknadsalternativRepoMock.kt │ │ │ └── TestSakSoknadsalternativRow.kt │ │ ├── test_utdanningstilbud │ │ │ ├── TestUtdanningstilbudFields.kt │ │ │ ├── TestUtdanningstilbudId.kt │ │ │ ├── TestUtdanningstilbudRepo.kt │ │ │ ├── TestUtdanningstilbudRepoImpl.kt │ │ │ ├── TestUtdanningstilbudRepoMock.kt │ │ │ └── TestUtdanningstilbudRow.kt │ │ ├── title │ │ │ ├── TitleFields.kt │ │ │ ├── TitleId.kt │ │ │ ├── TitleRepo.kt │ │ │ ├── TitleRepoImpl.kt │ │ │ ├── TitleRepoMock.kt │ │ │ └── TitleRow.kt │ │ ├── title_domain │ │ │ ├── TitleDomainFields.kt │ │ │ ├── TitleDomainId.kt │ │ │ ├── TitleDomainRepo.kt │ │ │ ├── TitleDomainRepoImpl.kt │ │ │ ├── TitleDomainRepoMock.kt │ │ │ └── TitleDomainRow.kt │ │ ├── titledperson │ │ │ ├── TitledpersonFields.kt │ │ │ ├── TitledpersonRepo.kt │ │ │ ├── TitledpersonRepoImpl.kt │ │ │ └── TitledpersonRow.kt │ │ └── users │ │ │ ├── UsersFields.kt │ │ │ ├── UsersId.kt │ │ │ ├── UsersRepo.kt │ │ │ ├── UsersRepoImpl.kt │ │ │ ├── UsersRepoMock.kt │ │ │ ├── UsersRow.kt │ │ │ └── UsersRowUnsaved.kt │ │ ├── purchasing │ │ ├── productvendor │ │ │ ├── ProductvendorFields.kt │ │ │ ├── ProductvendorId.kt │ │ │ ├── ProductvendorRepo.kt │ │ │ ├── ProductvendorRepoImpl.kt │ │ │ ├── ProductvendorRepoMock.kt │ │ │ ├── ProductvendorRow.kt │ │ │ └── ProductvendorRowUnsaved.kt │ │ ├── purchaseorderdetail │ │ │ ├── PurchaseorderdetailFields.kt │ │ │ ├── PurchaseorderdetailId.kt │ │ │ ├── PurchaseorderdetailRepo.kt │ │ │ ├── PurchaseorderdetailRepoImpl.kt │ │ │ ├── PurchaseorderdetailRow.kt │ │ │ └── PurchaseorderdetailRowUnsaved.kt │ │ ├── purchaseorderheader │ │ │ ├── PurchaseorderheaderFields.kt │ │ │ ├── PurchaseorderheaderId.kt │ │ │ ├── PurchaseorderheaderRepo.kt │ │ │ ├── PurchaseorderheaderRepoImpl.kt │ │ │ ├── PurchaseorderheaderRepoMock.kt │ │ │ ├── PurchaseorderheaderRow.kt │ │ │ └── PurchaseorderheaderRowUnsaved.kt │ │ ├── shipmethod │ │ │ ├── ShipmethodFields.kt │ │ │ ├── ShipmethodId.kt │ │ │ ├── ShipmethodRepo.kt │ │ │ ├── ShipmethodRepoImpl.kt │ │ │ ├── ShipmethodRepoMock.kt │ │ │ ├── ShipmethodRow.kt │ │ │ └── ShipmethodRowUnsaved.kt │ │ ├── vendor │ │ │ ├── VendorFields.kt │ │ │ ├── VendorRepo.kt │ │ │ ├── VendorRepoImpl.kt │ │ │ ├── VendorRepoMock.kt │ │ │ ├── VendorRow.kt │ │ │ └── VendorRowUnsaved.kt │ │ ├── vvendorwithaddresses │ │ │ ├── VvendorwithaddressesViewFields.kt │ │ │ ├── VvendorwithaddressesViewRepo.kt │ │ │ ├── VvendorwithaddressesViewRepoImpl.kt │ │ │ └── VvendorwithaddressesViewRow.kt │ │ └── vvendorwithcontacts │ │ │ ├── VvendorwithcontactsViewFields.kt │ │ │ ├── VvendorwithcontactsViewRepo.kt │ │ │ ├── VvendorwithcontactsViewRepoImpl.kt │ │ │ └── VvendorwithcontactsViewRow.kt │ │ ├── sa │ │ ├── c │ │ │ ├── CViewFields.kt │ │ │ ├── CViewRepo.kt │ │ │ ├── CViewRepoImpl.kt │ │ │ └── CViewRow.kt │ │ ├── cc │ │ │ ├── CcViewFields.kt │ │ │ ├── CcViewRepo.kt │ │ │ ├── CcViewRepoImpl.kt │ │ │ └── CcViewRow.kt │ │ ├── cr │ │ │ ├── CrViewFields.kt │ │ │ ├── CrViewRepo.kt │ │ │ ├── CrViewRepoImpl.kt │ │ │ └── CrViewRow.kt │ │ ├── crc │ │ │ ├── CrcViewFields.kt │ │ │ ├── CrcViewRepo.kt │ │ │ ├── CrcViewRepoImpl.kt │ │ │ └── CrcViewRow.kt │ │ ├── cu │ │ │ ├── CuViewFields.kt │ │ │ ├── CuViewRepo.kt │ │ │ ├── CuViewRepoImpl.kt │ │ │ └── CuViewRow.kt │ │ ├── pcc │ │ │ ├── PccViewFields.kt │ │ │ ├── PccViewRepo.kt │ │ │ ├── PccViewRepoImpl.kt │ │ │ └── PccViewRow.kt │ │ ├── s │ │ │ ├── SViewFields.kt │ │ │ ├── SViewRepo.kt │ │ │ ├── SViewRepoImpl.kt │ │ │ └── SViewRow.kt │ │ ├── sci │ │ │ ├── SciViewFields.kt │ │ │ ├── SciViewRepo.kt │ │ │ ├── SciViewRepoImpl.kt │ │ │ └── SciViewRow.kt │ │ ├── so │ │ │ ├── SoViewFields.kt │ │ │ ├── SoViewRepo.kt │ │ │ ├── SoViewRepoImpl.kt │ │ │ └── SoViewRow.kt │ │ ├── sod │ │ │ ├── SodViewFields.kt │ │ │ ├── SodViewRepo.kt │ │ │ ├── SodViewRepoImpl.kt │ │ │ └── SodViewRow.kt │ │ ├── soh │ │ │ ├── SohViewFields.kt │ │ │ ├── SohViewRepo.kt │ │ │ ├── SohViewRepoImpl.kt │ │ │ └── SohViewRow.kt │ │ ├── sohsr │ │ │ ├── SohsrViewFields.kt │ │ │ ├── SohsrViewRepo.kt │ │ │ ├── SohsrViewRepoImpl.kt │ │ │ └── SohsrViewRow.kt │ │ ├── sop │ │ │ ├── SopViewFields.kt │ │ │ ├── SopViewRepo.kt │ │ │ ├── SopViewRepoImpl.kt │ │ │ └── SopViewRow.kt │ │ ├── sp │ │ │ ├── SpViewFields.kt │ │ │ ├── SpViewRepo.kt │ │ │ ├── SpViewRepoImpl.kt │ │ │ └── SpViewRow.kt │ │ ├── spqh │ │ │ ├── SpqhViewFields.kt │ │ │ ├── SpqhViewRepo.kt │ │ │ ├── SpqhViewRepoImpl.kt │ │ │ └── SpqhViewRow.kt │ │ ├── sr │ │ │ ├── SrViewFields.kt │ │ │ ├── SrViewRepo.kt │ │ │ ├── SrViewRepoImpl.kt │ │ │ └── SrViewRow.kt │ │ ├── st │ │ │ ├── StViewFields.kt │ │ │ ├── StViewRepo.kt │ │ │ ├── StViewRepoImpl.kt │ │ │ └── StViewRow.kt │ │ ├── sth │ │ │ ├── SthViewFields.kt │ │ │ ├── SthViewRepo.kt │ │ │ ├── SthViewRepoImpl.kt │ │ │ └── SthViewRow.kt │ │ └── tr │ │ │ ├── TrViewFields.kt │ │ │ ├── TrViewRepo.kt │ │ │ ├── TrViewRepoImpl.kt │ │ │ └── TrViewRow.kt │ │ ├── sales │ │ ├── countryregioncurrency │ │ │ ├── CountryregioncurrencyFields.kt │ │ │ ├── CountryregioncurrencyId.kt │ │ │ ├── CountryregioncurrencyRepo.kt │ │ │ ├── CountryregioncurrencyRepoImpl.kt │ │ │ ├── CountryregioncurrencyRepoMock.kt │ │ │ ├── CountryregioncurrencyRow.kt │ │ │ └── CountryregioncurrencyRowUnsaved.kt │ │ ├── creditcard │ │ │ ├── CreditcardFields.kt │ │ │ ├── CreditcardRepo.kt │ │ │ ├── CreditcardRepoImpl.kt │ │ │ ├── CreditcardRepoMock.kt │ │ │ ├── CreditcardRow.kt │ │ │ └── CreditcardRowUnsaved.kt │ │ ├── currency │ │ │ ├── CurrencyFields.kt │ │ │ ├── CurrencyId.kt │ │ │ ├── CurrencyRepo.kt │ │ │ ├── CurrencyRepoImpl.kt │ │ │ ├── CurrencyRepoMock.kt │ │ │ ├── CurrencyRow.kt │ │ │ └── CurrencyRowUnsaved.kt │ │ ├── currencyrate │ │ │ ├── CurrencyrateFields.kt │ │ │ ├── CurrencyrateId.kt │ │ │ ├── CurrencyrateRepo.kt │ │ │ ├── CurrencyrateRepoImpl.kt │ │ │ ├── CurrencyrateRepoMock.kt │ │ │ ├── CurrencyrateRow.kt │ │ │ └── CurrencyrateRowUnsaved.kt │ │ ├── customer │ │ │ ├── CustomerFields.kt │ │ │ ├── CustomerId.kt │ │ │ ├── CustomerRepo.kt │ │ │ ├── CustomerRepoImpl.kt │ │ │ ├── CustomerRepoMock.kt │ │ │ ├── CustomerRow.kt │ │ │ └── CustomerRowUnsaved.kt │ │ ├── personcreditcard │ │ │ ├── PersoncreditcardFields.kt │ │ │ ├── PersoncreditcardId.kt │ │ │ ├── PersoncreditcardRepo.kt │ │ │ ├── PersoncreditcardRepoImpl.kt │ │ │ ├── PersoncreditcardRepoMock.kt │ │ │ ├── PersoncreditcardRow.kt │ │ │ └── PersoncreditcardRowUnsaved.kt │ │ ├── salesorderdetail │ │ │ ├── SalesorderdetailFields.kt │ │ │ ├── SalesorderdetailId.kt │ │ │ ├── SalesorderdetailRepo.kt │ │ │ ├── SalesorderdetailRepoImpl.kt │ │ │ ├── SalesorderdetailRepoMock.kt │ │ │ ├── SalesorderdetailRow.kt │ │ │ └── SalesorderdetailRowUnsaved.kt │ │ ├── salesorderheader │ │ │ ├── SalesorderheaderFields.kt │ │ │ ├── SalesorderheaderId.kt │ │ │ ├── SalesorderheaderRepo.kt │ │ │ ├── SalesorderheaderRepoImpl.kt │ │ │ ├── SalesorderheaderRepoMock.kt │ │ │ ├── SalesorderheaderRow.kt │ │ │ └── SalesorderheaderRowUnsaved.kt │ │ ├── salesorderheadersalesreason │ │ │ ├── SalesorderheadersalesreasonFields.kt │ │ │ ├── SalesorderheadersalesreasonId.kt │ │ │ ├── SalesorderheadersalesreasonRepo.kt │ │ │ ├── SalesorderheadersalesreasonRepoImpl.kt │ │ │ ├── SalesorderheadersalesreasonRepoMock.kt │ │ │ ├── SalesorderheadersalesreasonRow.kt │ │ │ └── SalesorderheadersalesreasonRowUnsaved.kt │ │ ├── salesperson │ │ │ ├── SalespersonFields.kt │ │ │ ├── SalespersonRepo.kt │ │ │ ├── SalespersonRepoImpl.kt │ │ │ ├── SalespersonRepoMock.kt │ │ │ ├── SalespersonRow.kt │ │ │ └── SalespersonRowUnsaved.kt │ │ ├── salespersonquotahistory │ │ │ ├── SalespersonquotahistoryFields.kt │ │ │ ├── SalespersonquotahistoryId.kt │ │ │ ├── SalespersonquotahistoryRepo.kt │ │ │ ├── SalespersonquotahistoryRepoImpl.kt │ │ │ ├── SalespersonquotahistoryRepoMock.kt │ │ │ ├── SalespersonquotahistoryRow.kt │ │ │ └── SalespersonquotahistoryRowUnsaved.kt │ │ ├── salesreason │ │ │ ├── SalesreasonFields.kt │ │ │ ├── SalesreasonId.kt │ │ │ ├── SalesreasonRepo.kt │ │ │ ├── SalesreasonRepoImpl.kt │ │ │ ├── SalesreasonRepoMock.kt │ │ │ ├── SalesreasonRow.kt │ │ │ └── SalesreasonRowUnsaved.kt │ │ ├── salestaxrate │ │ │ ├── SalestaxrateFields.kt │ │ │ ├── SalestaxrateId.kt │ │ │ ├── SalestaxrateRepo.kt │ │ │ ├── SalestaxrateRepoImpl.kt │ │ │ ├── SalestaxrateRepoMock.kt │ │ │ ├── SalestaxrateRow.kt │ │ │ └── SalestaxrateRowUnsaved.kt │ │ ├── salesterritory │ │ │ ├── SalesterritoryFields.kt │ │ │ ├── SalesterritoryId.kt │ │ │ ├── SalesterritoryRepo.kt │ │ │ ├── SalesterritoryRepoImpl.kt │ │ │ ├── SalesterritoryRepoMock.kt │ │ │ ├── SalesterritoryRow.kt │ │ │ └── SalesterritoryRowUnsaved.kt │ │ ├── salesterritoryhistory │ │ │ ├── SalesterritoryhistoryFields.kt │ │ │ ├── SalesterritoryhistoryId.kt │ │ │ ├── SalesterritoryhistoryRepo.kt │ │ │ ├── SalesterritoryhistoryRepoImpl.kt │ │ │ ├── SalesterritoryhistoryRepoMock.kt │ │ │ ├── SalesterritoryhistoryRow.kt │ │ │ └── SalesterritoryhistoryRowUnsaved.kt │ │ ├── shoppingcartitem │ │ │ ├── ShoppingcartitemFields.kt │ │ │ ├── ShoppingcartitemId.kt │ │ │ ├── ShoppingcartitemRepo.kt │ │ │ ├── ShoppingcartitemRepoImpl.kt │ │ │ ├── ShoppingcartitemRepoMock.kt │ │ │ ├── ShoppingcartitemRow.kt │ │ │ └── ShoppingcartitemRowUnsaved.kt │ │ ├── specialoffer │ │ │ ├── SpecialofferFields.kt │ │ │ ├── SpecialofferId.kt │ │ │ ├── SpecialofferRepo.kt │ │ │ ├── SpecialofferRepoImpl.kt │ │ │ ├── SpecialofferRepoMock.kt │ │ │ ├── SpecialofferRow.kt │ │ │ └── SpecialofferRowUnsaved.kt │ │ ├── specialofferproduct │ │ │ ├── SpecialofferproductFields.kt │ │ │ ├── SpecialofferproductId.kt │ │ │ ├── SpecialofferproductRepo.kt │ │ │ ├── SpecialofferproductRepoImpl.kt │ │ │ ├── SpecialofferproductRepoMock.kt │ │ │ ├── SpecialofferproductRow.kt │ │ │ └── SpecialofferproductRowUnsaved.kt │ │ ├── store │ │ │ ├── StoreFields.kt │ │ │ ├── StoreRepo.kt │ │ │ ├── StoreRepoImpl.kt │ │ │ ├── StoreRepoMock.kt │ │ │ ├── StoreRow.kt │ │ │ └── StoreRowUnsaved.kt │ │ ├── vindividualcustomer │ │ │ ├── VindividualcustomerViewFields.kt │ │ │ ├── VindividualcustomerViewRepo.kt │ │ │ ├── VindividualcustomerViewRepoImpl.kt │ │ │ └── VindividualcustomerViewRow.kt │ │ ├── vpersondemographics │ │ │ ├── VpersondemographicsViewFields.kt │ │ │ ├── VpersondemographicsViewRepo.kt │ │ │ ├── VpersondemographicsViewRepoImpl.kt │ │ │ └── VpersondemographicsViewRow.kt │ │ ├── vsalesperson │ │ │ ├── VsalespersonViewFields.kt │ │ │ ├── VsalespersonViewRepo.kt │ │ │ ├── VsalespersonViewRepoImpl.kt │ │ │ └── VsalespersonViewRow.kt │ │ ├── vsalespersonsalesbyfiscalyears │ │ │ ├── VsalespersonsalesbyfiscalyearsViewFields.kt │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepo.kt │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepoImpl.kt │ │ │ └── VsalespersonsalesbyfiscalyearsViewRow.kt │ │ ├── vsalespersonsalesbyfiscalyearsdata │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewFields.kt │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepo.kt │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepoImpl.kt │ │ │ └── VsalespersonsalesbyfiscalyearsdataViewRow.kt │ │ ├── vstorewithaddresses │ │ │ ├── VstorewithaddressesViewFields.kt │ │ │ ├── VstorewithaddressesViewRepo.kt │ │ │ ├── VstorewithaddressesViewRepoImpl.kt │ │ │ └── VstorewithaddressesViewRow.kt │ │ ├── vstorewithcontacts │ │ │ ├── VstorewithcontactsViewFields.kt │ │ │ ├── VstorewithcontactsViewRepo.kt │ │ │ ├── VstorewithcontactsViewRepoImpl.kt │ │ │ └── VstorewithcontactsViewRow.kt │ │ └── vstorewithdemographics │ │ │ ├── VstorewithdemographicsViewFields.kt │ │ │ ├── VstorewithdemographicsViewRepo.kt │ │ │ ├── VstorewithdemographicsViewRepoImpl.kt │ │ │ └── VstorewithdemographicsViewRow.kt │ │ ├── update_person │ │ ├── UpdatePersonSqlRepo.kt │ │ └── UpdatePersonSqlRepoImpl.kt │ │ └── update_person_returning │ │ ├── UpdatePersonReturningSqlRepo.kt │ │ ├── UpdatePersonReturningSqlRepoImpl.kt │ │ └── UpdatePersonReturningSqlRow.kt ├── gradle.properties ├── settings.gradle.kts └── src │ └── kotlin │ └── adventureworks │ └── userdefined │ ├── CustomCreditcardId.kt │ └── FirstName.kt ├── typo-tester-typo-scala ├── generated-and-checked-in │ └── adventureworks │ │ ├── DefaultedDeserializer.scala │ │ ├── DefaultedSerializer.scala │ │ ├── TestDomainInsert.scala │ │ ├── TestInsert.scala │ │ ├── customtypes │ │ ├── Defaulted.scala │ │ ├── TypoBox.scala │ │ ├── TypoBytea.scala │ │ ├── TypoCircle.scala │ │ ├── TypoHStore.scala │ │ ├── TypoInet.scala │ │ ├── TypoInstant.scala │ │ ├── TypoInt2Vector.scala │ │ ├── TypoInterval.scala │ │ ├── TypoJson.scala │ │ ├── TypoJsonb.scala │ │ ├── TypoLine.scala │ │ ├── TypoLineSegment.scala │ │ ├── TypoLocalDate.scala │ │ ├── TypoLocalDateTime.scala │ │ ├── TypoLocalTime.scala │ │ ├── TypoMoney.scala │ │ ├── TypoOffsetTime.scala │ │ ├── TypoPath.scala │ │ ├── TypoPoint.scala │ │ ├── TypoPolygon.scala │ │ ├── TypoRecord.scala │ │ ├── TypoShort.scala │ │ ├── TypoUUID.scala │ │ ├── TypoUnknownCitext.scala │ │ ├── TypoVector.scala │ │ └── TypoXml.scala │ │ ├── frontpage │ │ └── Email.scala │ │ ├── hr │ │ ├── d │ │ │ ├── DViewFields.scala │ │ │ ├── DViewRepo.scala │ │ │ ├── DViewRepoImpl.scala │ │ │ └── DViewRow.scala │ │ ├── e │ │ │ ├── EViewFields.scala │ │ │ ├── EViewRepo.scala │ │ │ ├── EViewRepoImpl.scala │ │ │ └── EViewRow.scala │ │ ├── edh │ │ │ ├── EdhViewFields.scala │ │ │ ├── EdhViewRepo.scala │ │ │ ├── EdhViewRepoImpl.scala │ │ │ └── EdhViewRow.scala │ │ ├── eph │ │ │ ├── EphViewFields.scala │ │ │ ├── EphViewRepo.scala │ │ │ ├── EphViewRepoImpl.scala │ │ │ └── EphViewRow.scala │ │ ├── jc │ │ │ ├── JcViewFields.scala │ │ │ ├── JcViewRepo.scala │ │ │ ├── JcViewRepoImpl.scala │ │ │ └── JcViewRow.scala │ │ └── s │ │ │ ├── SViewFields.scala │ │ │ ├── SViewRepo.scala │ │ │ ├── SViewRepoImpl.scala │ │ │ └── SViewRow.scala │ │ ├── humanresources │ │ ├── department │ │ │ ├── DepartmentFields.scala │ │ │ ├── DepartmentId.scala │ │ │ ├── DepartmentRepo.scala │ │ │ ├── DepartmentRepoImpl.scala │ │ │ ├── DepartmentRepoMock.scala │ │ │ ├── DepartmentRow.scala │ │ │ └── DepartmentRowUnsaved.scala │ │ ├── employee │ │ │ ├── EmployeeFields.scala │ │ │ ├── EmployeeRepo.scala │ │ │ ├── EmployeeRepoImpl.scala │ │ │ ├── EmployeeRepoMock.scala │ │ │ ├── EmployeeRow.scala │ │ │ └── EmployeeRowUnsaved.scala │ │ ├── employeedepartmenthistory │ │ │ ├── EmployeedepartmenthistoryFields.scala │ │ │ ├── EmployeedepartmenthistoryId.scala │ │ │ ├── EmployeedepartmenthistoryRepo.scala │ │ │ ├── EmployeedepartmenthistoryRepoImpl.scala │ │ │ ├── EmployeedepartmenthistoryRepoMock.scala │ │ │ ├── EmployeedepartmenthistoryRow.scala │ │ │ └── EmployeedepartmenthistoryRowUnsaved.scala │ │ ├── employeepayhistory │ │ │ ├── EmployeepayhistoryFields.scala │ │ │ ├── EmployeepayhistoryId.scala │ │ │ ├── EmployeepayhistoryRepo.scala │ │ │ ├── EmployeepayhistoryRepoImpl.scala │ │ │ ├── EmployeepayhistoryRepoMock.scala │ │ │ ├── EmployeepayhistoryRow.scala │ │ │ └── EmployeepayhistoryRowUnsaved.scala │ │ ├── jobcandidate │ │ │ ├── JobcandidateFields.scala │ │ │ ├── JobcandidateId.scala │ │ │ ├── JobcandidateRepo.scala │ │ │ ├── JobcandidateRepoImpl.scala │ │ │ ├── JobcandidateRepoMock.scala │ │ │ ├── JobcandidateRow.scala │ │ │ └── JobcandidateRowUnsaved.scala │ │ ├── shift │ │ │ ├── ShiftFields.scala │ │ │ ├── ShiftId.scala │ │ │ ├── ShiftRepo.scala │ │ │ ├── ShiftRepoImpl.scala │ │ │ ├── ShiftRepoMock.scala │ │ │ ├── ShiftRow.scala │ │ │ └── ShiftRowUnsaved.scala │ │ ├── vemployee │ │ │ ├── VemployeeViewFields.scala │ │ │ ├── VemployeeViewRepo.scala │ │ │ ├── VemployeeViewRepoImpl.scala │ │ │ └── VemployeeViewRow.scala │ │ ├── vemployeedepartment │ │ │ ├── VemployeedepartmentViewFields.scala │ │ │ ├── VemployeedepartmentViewRepo.scala │ │ │ ├── VemployeedepartmentViewRepoImpl.scala │ │ │ └── VemployeedepartmentViewRow.scala │ │ ├── vemployeedepartmenthistory │ │ │ ├── VemployeedepartmenthistoryViewFields.scala │ │ │ ├── VemployeedepartmenthistoryViewRepo.scala │ │ │ ├── VemployeedepartmenthistoryViewRepoImpl.scala │ │ │ └── VemployeedepartmenthistoryViewRow.scala │ │ ├── vjobcandidate │ │ │ ├── VjobcandidateViewFields.scala │ │ │ ├── VjobcandidateViewRepo.scala │ │ │ ├── VjobcandidateViewRepoImpl.scala │ │ │ └── VjobcandidateViewRow.scala │ │ ├── vjobcandidateeducation │ │ │ ├── VjobcandidateeducationViewFields.scala │ │ │ ├── VjobcandidateeducationViewRepo.scala │ │ │ ├── VjobcandidateeducationViewRepoImpl.scala │ │ │ └── VjobcandidateeducationViewRow.scala │ │ └── vjobcandidateemployment │ │ │ ├── VjobcandidateemploymentViewFields.scala │ │ │ ├── VjobcandidateemploymentViewRepo.scala │ │ │ ├── VjobcandidateemploymentViewRepoImpl.scala │ │ │ └── VjobcandidateemploymentViewRow.scala │ │ ├── information_schema │ │ ├── CardinalNumber.scala │ │ ├── CharacterData.scala │ │ ├── SqlIdentifier.scala │ │ ├── TimeStamp.scala │ │ └── YesOrNo.scala │ │ ├── pe │ │ ├── a │ │ │ ├── AViewFields.scala │ │ │ ├── AViewRepo.scala │ │ │ ├── AViewRepoImpl.scala │ │ │ └── AViewRow.scala │ │ ├── at │ │ │ ├── AtViewFields.scala │ │ │ ├── AtViewRepo.scala │ │ │ ├── AtViewRepoImpl.scala │ │ │ └── AtViewRow.scala │ │ ├── be │ │ │ ├── BeViewFields.scala │ │ │ ├── BeViewRepo.scala │ │ │ ├── BeViewRepoImpl.scala │ │ │ └── BeViewRow.scala │ │ ├── bea │ │ │ ├── BeaViewFields.scala │ │ │ ├── BeaViewRepo.scala │ │ │ ├── BeaViewRepoImpl.scala │ │ │ └── BeaViewRow.scala │ │ ├── bec │ │ │ ├── BecViewFields.scala │ │ │ ├── BecViewRepo.scala │ │ │ ├── BecViewRepoImpl.scala │ │ │ └── BecViewRow.scala │ │ ├── cr │ │ │ ├── CrViewFields.scala │ │ │ ├── CrViewRepo.scala │ │ │ ├── CrViewRepoImpl.scala │ │ │ └── CrViewRow.scala │ │ ├── ct │ │ │ ├── CtViewFields.scala │ │ │ ├── CtViewRepo.scala │ │ │ ├── CtViewRepoImpl.scala │ │ │ └── CtViewRow.scala │ │ ├── e │ │ │ ├── EViewFields.scala │ │ │ ├── EViewRepo.scala │ │ │ ├── EViewRepoImpl.scala │ │ │ └── EViewRow.scala │ │ ├── p │ │ │ ├── PViewFields.scala │ │ │ ├── PViewRepo.scala │ │ │ ├── PViewRepoImpl.scala │ │ │ └── PViewRow.scala │ │ ├── pa │ │ │ ├── PaViewFields.scala │ │ │ ├── PaViewRepo.scala │ │ │ ├── PaViewRepoImpl.scala │ │ │ └── PaViewRow.scala │ │ ├── pnt │ │ │ ├── PntViewFields.scala │ │ │ ├── PntViewRepo.scala │ │ │ ├── PntViewRepoImpl.scala │ │ │ └── PntViewRow.scala │ │ ├── pp │ │ │ ├── PpViewFields.scala │ │ │ ├── PpViewRepo.scala │ │ │ ├── PpViewRepoImpl.scala │ │ │ └── PpViewRow.scala │ │ └── sp │ │ │ ├── SpViewFields.scala │ │ │ ├── SpViewRepo.scala │ │ │ ├── SpViewRepoImpl.scala │ │ │ └── SpViewRow.scala │ │ ├── person │ │ ├── address │ │ │ ├── AddressFields.scala │ │ │ ├── AddressId.scala │ │ │ ├── AddressRepo.scala │ │ │ ├── AddressRepoImpl.scala │ │ │ ├── AddressRepoMock.scala │ │ │ ├── AddressRow.scala │ │ │ └── AddressRowUnsaved.scala │ │ ├── addresstype │ │ │ ├── AddresstypeFields.scala │ │ │ ├── AddresstypeId.scala │ │ │ ├── AddresstypeRepo.scala │ │ │ ├── AddresstypeRepoImpl.scala │ │ │ ├── AddresstypeRepoMock.scala │ │ │ ├── AddresstypeRow.scala │ │ │ └── AddresstypeRowUnsaved.scala │ │ ├── businessentity │ │ │ ├── BusinessentityFields.scala │ │ │ ├── BusinessentityId.scala │ │ │ ├── BusinessentityRepo.scala │ │ │ ├── BusinessentityRepoImpl.scala │ │ │ ├── BusinessentityRepoMock.scala │ │ │ ├── BusinessentityRow.scala │ │ │ └── BusinessentityRowUnsaved.scala │ │ ├── businessentityaddress │ │ │ ├── BusinessentityaddressFields.scala │ │ │ ├── BusinessentityaddressId.scala │ │ │ ├── BusinessentityaddressRepo.scala │ │ │ ├── BusinessentityaddressRepoImpl.scala │ │ │ ├── BusinessentityaddressRepoMock.scala │ │ │ ├── BusinessentityaddressRow.scala │ │ │ └── BusinessentityaddressRowUnsaved.scala │ │ ├── businessentitycontact │ │ │ ├── BusinessentitycontactFields.scala │ │ │ ├── BusinessentitycontactId.scala │ │ │ ├── BusinessentitycontactRepo.scala │ │ │ ├── BusinessentitycontactRepoImpl.scala │ │ │ ├── BusinessentitycontactRepoMock.scala │ │ │ ├── BusinessentitycontactRow.scala │ │ │ └── BusinessentitycontactRowUnsaved.scala │ │ ├── contacttype │ │ │ ├── ContacttypeFields.scala │ │ │ ├── ContacttypeId.scala │ │ │ ├── ContacttypeRepo.scala │ │ │ ├── ContacttypeRepoImpl.scala │ │ │ ├── ContacttypeRepoMock.scala │ │ │ ├── ContacttypeRow.scala │ │ │ └── ContacttypeRowUnsaved.scala │ │ ├── countryregion │ │ │ ├── CountryregionFields.scala │ │ │ ├── CountryregionId.scala │ │ │ ├── CountryregionRepo.scala │ │ │ ├── CountryregionRepoImpl.scala │ │ │ ├── CountryregionRepoMock.scala │ │ │ ├── CountryregionRow.scala │ │ │ └── CountryregionRowUnsaved.scala │ │ ├── emailaddress │ │ │ ├── EmailaddressFields.scala │ │ │ ├── EmailaddressId.scala │ │ │ ├── EmailaddressRepo.scala │ │ │ ├── EmailaddressRepoImpl.scala │ │ │ ├── EmailaddressRepoMock.scala │ │ │ ├── EmailaddressRow.scala │ │ │ └── EmailaddressRowUnsaved.scala │ │ ├── password │ │ │ ├── PasswordFields.scala │ │ │ ├── PasswordRepo.scala │ │ │ ├── PasswordRepoImpl.scala │ │ │ ├── PasswordRepoMock.scala │ │ │ ├── PasswordRow.scala │ │ │ └── PasswordRowUnsaved.scala │ │ ├── person │ │ │ ├── PersonFields.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── personphone │ │ │ ├── PersonphoneFields.scala │ │ │ ├── PersonphoneId.scala │ │ │ ├── PersonphoneRepo.scala │ │ │ ├── PersonphoneRepoImpl.scala │ │ │ ├── PersonphoneRepoMock.scala │ │ │ ├── PersonphoneRow.scala │ │ │ └── PersonphoneRowUnsaved.scala │ │ ├── phonenumbertype │ │ │ ├── PhonenumbertypeFields.scala │ │ │ ├── PhonenumbertypeId.scala │ │ │ ├── PhonenumbertypeRepo.scala │ │ │ ├── PhonenumbertypeRepoImpl.scala │ │ │ ├── PhonenumbertypeRepoMock.scala │ │ │ ├── PhonenumbertypeRow.scala │ │ │ └── PhonenumbertypeRowUnsaved.scala │ │ ├── stateprovince │ │ │ ├── StateprovinceFields.scala │ │ │ ├── StateprovinceId.scala │ │ │ ├── StateprovinceRepo.scala │ │ │ ├── StateprovinceRepoImpl.scala │ │ │ ├── StateprovinceRepoMock.scala │ │ │ ├── StateprovinceRow.scala │ │ │ └── StateprovinceRowUnsaved.scala │ │ ├── vadditionalcontactinfo │ │ │ ├── VadditionalcontactinfoViewFields.scala │ │ │ ├── VadditionalcontactinfoViewRepo.scala │ │ │ ├── VadditionalcontactinfoViewRepoImpl.scala │ │ │ └── VadditionalcontactinfoViewRow.scala │ │ └── vstateprovincecountryregion │ │ │ ├── VstateprovincecountryregionMVFields.scala │ │ │ ├── VstateprovincecountryregionMVRepo.scala │ │ │ ├── VstateprovincecountryregionMVRepoImpl.scala │ │ │ └── VstateprovincecountryregionMVRow.scala │ │ ├── person_detail │ │ ├── PersonDetailSqlRepo.scala │ │ ├── PersonDetailSqlRepoImpl.scala │ │ └── PersonDetailSqlRow.scala │ │ ├── person_dynamic │ │ ├── PersonDynamicSqlRepo.scala │ │ ├── PersonDynamicSqlRepoImpl.scala │ │ └── PersonDynamicSqlRow.scala │ │ ├── person_row_join │ │ ├── PersonRowJoinSqlRepo.scala │ │ ├── PersonRowJoinSqlRepoImpl.scala │ │ └── PersonRowJoinSqlRow.scala │ │ ├── pr │ │ ├── bom │ │ │ ├── BomViewFields.scala │ │ │ ├── BomViewRepo.scala │ │ │ ├── BomViewRepoImpl.scala │ │ │ └── BomViewRow.scala │ │ ├── c │ │ │ ├── CViewFields.scala │ │ │ ├── CViewRepo.scala │ │ │ ├── CViewRepoImpl.scala │ │ │ └── CViewRow.scala │ │ ├── d │ │ │ ├── DViewFields.scala │ │ │ ├── DViewRepo.scala │ │ │ ├── DViewRepoImpl.scala │ │ │ └── DViewRow.scala │ │ ├── i │ │ │ ├── IViewFields.scala │ │ │ ├── IViewRepo.scala │ │ │ ├── IViewRepoImpl.scala │ │ │ └── IViewRow.scala │ │ ├── l │ │ │ ├── LViewFields.scala │ │ │ ├── LViewRepo.scala │ │ │ ├── LViewRepoImpl.scala │ │ │ └── LViewRow.scala │ │ ├── p │ │ │ ├── PViewFields.scala │ │ │ ├── PViewRepo.scala │ │ │ ├── PViewRepoImpl.scala │ │ │ └── PViewRow.scala │ │ ├── pc │ │ │ ├── PcViewFields.scala │ │ │ ├── PcViewRepo.scala │ │ │ ├── PcViewRepoImpl.scala │ │ │ └── PcViewRow.scala │ │ ├── pch │ │ │ ├── PchViewFields.scala │ │ │ ├── PchViewRepo.scala │ │ │ ├── PchViewRepoImpl.scala │ │ │ └── PchViewRow.scala │ │ ├── pd │ │ │ ├── PdViewFields.scala │ │ │ ├── PdViewRepo.scala │ │ │ ├── PdViewRepoImpl.scala │ │ │ └── PdViewRow.scala │ │ ├── pdoc │ │ │ ├── PdocViewFields.scala │ │ │ ├── PdocViewRepo.scala │ │ │ ├── PdocViewRepoImpl.scala │ │ │ └── PdocViewRow.scala │ │ ├── pi │ │ │ ├── PiViewFields.scala │ │ │ ├── PiViewRepo.scala │ │ │ ├── PiViewRepoImpl.scala │ │ │ └── PiViewRow.scala │ │ ├── plph │ │ │ ├── PlphViewFields.scala │ │ │ ├── PlphViewRepo.scala │ │ │ ├── PlphViewRepoImpl.scala │ │ │ └── PlphViewRow.scala │ │ ├── pm │ │ │ ├── PmViewFields.scala │ │ │ ├── PmViewRepo.scala │ │ │ ├── PmViewRepoImpl.scala │ │ │ └── PmViewRow.scala │ │ ├── pmi │ │ │ ├── PmiViewFields.scala │ │ │ ├── PmiViewRepo.scala │ │ │ ├── PmiViewRepoImpl.scala │ │ │ └── PmiViewRow.scala │ │ ├── pmpdc │ │ │ ├── PmpdcViewFields.scala │ │ │ ├── PmpdcViewRepo.scala │ │ │ ├── PmpdcViewRepoImpl.scala │ │ │ └── PmpdcViewRow.scala │ │ ├── pp │ │ │ ├── PpViewFields.scala │ │ │ ├── PpViewRepo.scala │ │ │ ├── PpViewRepoImpl.scala │ │ │ └── PpViewRow.scala │ │ ├── ppp │ │ │ ├── PppViewFields.scala │ │ │ ├── PppViewRepo.scala │ │ │ ├── PppViewRepoImpl.scala │ │ │ └── PppViewRow.scala │ │ ├── pr │ │ │ ├── PrViewFields.scala │ │ │ ├── PrViewRepo.scala │ │ │ ├── PrViewRepoImpl.scala │ │ │ └── PrViewRow.scala │ │ ├── psc │ │ │ ├── PscViewFields.scala │ │ │ ├── PscViewRepo.scala │ │ │ ├── PscViewRepoImpl.scala │ │ │ └── PscViewRow.scala │ │ ├── sr │ │ │ ├── SrViewFields.scala │ │ │ ├── SrViewRepo.scala │ │ │ ├── SrViewRepoImpl.scala │ │ │ └── SrViewRow.scala │ │ ├── th │ │ │ ├── ThViewFields.scala │ │ │ ├── ThViewRepo.scala │ │ │ ├── ThViewRepoImpl.scala │ │ │ └── ThViewRow.scala │ │ ├── tha │ │ │ ├── ThaViewFields.scala │ │ │ ├── ThaViewRepo.scala │ │ │ ├── ThaViewRepoImpl.scala │ │ │ └── ThaViewRow.scala │ │ ├── um │ │ │ ├── UmViewFields.scala │ │ │ ├── UmViewRepo.scala │ │ │ ├── UmViewRepoImpl.scala │ │ │ └── UmViewRow.scala │ │ ├── w │ │ │ ├── WViewFields.scala │ │ │ ├── WViewRepo.scala │ │ │ ├── WViewRepoImpl.scala │ │ │ └── WViewRow.scala │ │ └── wr │ │ │ ├── WrViewFields.scala │ │ │ ├── WrViewRepo.scala │ │ │ ├── WrViewRepoImpl.scala │ │ │ └── WrViewRow.scala │ │ ├── production │ │ ├── billofmaterials │ │ │ ├── BillofmaterialsFields.scala │ │ │ ├── BillofmaterialsRepo.scala │ │ │ ├── BillofmaterialsRepoImpl.scala │ │ │ ├── BillofmaterialsRepoMock.scala │ │ │ ├── BillofmaterialsRow.scala │ │ │ └── BillofmaterialsRowUnsaved.scala │ │ ├── culture │ │ │ ├── CultureFields.scala │ │ │ ├── CultureId.scala │ │ │ ├── CultureRepo.scala │ │ │ ├── CultureRepoImpl.scala │ │ │ ├── CultureRepoMock.scala │ │ │ ├── CultureRow.scala │ │ │ └── CultureRowUnsaved.scala │ │ ├── document │ │ │ ├── DocumentFields.scala │ │ │ ├── DocumentId.scala │ │ │ ├── DocumentRepo.scala │ │ │ ├── DocumentRepoImpl.scala │ │ │ ├── DocumentRepoMock.scala │ │ │ ├── DocumentRow.scala │ │ │ └── DocumentRowUnsaved.scala │ │ ├── illustration │ │ │ ├── IllustrationFields.scala │ │ │ ├── IllustrationId.scala │ │ │ ├── IllustrationRepo.scala │ │ │ ├── IllustrationRepoImpl.scala │ │ │ ├── IllustrationRepoMock.scala │ │ │ ├── IllustrationRow.scala │ │ │ └── IllustrationRowUnsaved.scala │ │ ├── location │ │ │ ├── LocationFields.scala │ │ │ ├── LocationId.scala │ │ │ ├── LocationRepo.scala │ │ │ ├── LocationRepoImpl.scala │ │ │ ├── LocationRepoMock.scala │ │ │ ├── LocationRow.scala │ │ │ └── LocationRowUnsaved.scala │ │ ├── product │ │ │ ├── ProductFields.scala │ │ │ ├── ProductId.scala │ │ │ ├── ProductRepo.scala │ │ │ ├── ProductRepoImpl.scala │ │ │ ├── ProductRepoMock.scala │ │ │ ├── ProductRow.scala │ │ │ └── ProductRowUnsaved.scala │ │ ├── productcategory │ │ │ ├── ProductcategoryFields.scala │ │ │ ├── ProductcategoryId.scala │ │ │ ├── ProductcategoryRepo.scala │ │ │ ├── ProductcategoryRepoImpl.scala │ │ │ ├── ProductcategoryRepoMock.scala │ │ │ ├── ProductcategoryRow.scala │ │ │ └── ProductcategoryRowUnsaved.scala │ │ ├── productcosthistory │ │ │ ├── ProductcosthistoryFields.scala │ │ │ ├── ProductcosthistoryId.scala │ │ │ ├── ProductcosthistoryRepo.scala │ │ │ ├── ProductcosthistoryRepoImpl.scala │ │ │ ├── ProductcosthistoryRepoMock.scala │ │ │ ├── ProductcosthistoryRow.scala │ │ │ └── ProductcosthistoryRowUnsaved.scala │ │ ├── productdescription │ │ │ ├── ProductdescriptionFields.scala │ │ │ ├── ProductdescriptionId.scala │ │ │ ├── ProductdescriptionRepo.scala │ │ │ ├── ProductdescriptionRepoImpl.scala │ │ │ ├── ProductdescriptionRepoMock.scala │ │ │ ├── ProductdescriptionRow.scala │ │ │ └── ProductdescriptionRowUnsaved.scala │ │ ├── productdocument │ │ │ ├── ProductdocumentFields.scala │ │ │ ├── ProductdocumentId.scala │ │ │ ├── ProductdocumentRepo.scala │ │ │ ├── ProductdocumentRepoImpl.scala │ │ │ ├── ProductdocumentRepoMock.scala │ │ │ ├── ProductdocumentRow.scala │ │ │ └── ProductdocumentRowUnsaved.scala │ │ ├── productinventory │ │ │ ├── ProductinventoryFields.scala │ │ │ ├── ProductinventoryId.scala │ │ │ ├── ProductinventoryRepo.scala │ │ │ ├── ProductinventoryRepoImpl.scala │ │ │ ├── ProductinventoryRepoMock.scala │ │ │ ├── ProductinventoryRow.scala │ │ │ └── ProductinventoryRowUnsaved.scala │ │ ├── productlistpricehistory │ │ │ ├── ProductlistpricehistoryFields.scala │ │ │ ├── ProductlistpricehistoryId.scala │ │ │ ├── ProductlistpricehistoryRepo.scala │ │ │ ├── ProductlistpricehistoryRepoImpl.scala │ │ │ ├── ProductlistpricehistoryRepoMock.scala │ │ │ ├── ProductlistpricehistoryRow.scala │ │ │ └── ProductlistpricehistoryRowUnsaved.scala │ │ ├── productmodel │ │ │ ├── ProductmodelFields.scala │ │ │ ├── ProductmodelId.scala │ │ │ ├── ProductmodelRepo.scala │ │ │ ├── ProductmodelRepoImpl.scala │ │ │ ├── ProductmodelRepoMock.scala │ │ │ ├── ProductmodelRow.scala │ │ │ └── ProductmodelRowUnsaved.scala │ │ ├── productmodelillustration │ │ │ ├── ProductmodelillustrationFields.scala │ │ │ ├── ProductmodelillustrationId.scala │ │ │ ├── ProductmodelillustrationRepo.scala │ │ │ ├── ProductmodelillustrationRepoImpl.scala │ │ │ ├── ProductmodelillustrationRepoMock.scala │ │ │ ├── ProductmodelillustrationRow.scala │ │ │ └── ProductmodelillustrationRowUnsaved.scala │ │ ├── productmodelproductdescriptionculture │ │ │ ├── ProductmodelproductdescriptioncultureFields.scala │ │ │ ├── ProductmodelproductdescriptioncultureId.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepo.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepoImpl.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepoMock.scala │ │ │ ├── ProductmodelproductdescriptioncultureRow.scala │ │ │ └── ProductmodelproductdescriptioncultureRowUnsaved.scala │ │ ├── productphoto │ │ │ ├── ProductphotoFields.scala │ │ │ ├── ProductphotoId.scala │ │ │ ├── ProductphotoRepo.scala │ │ │ ├── ProductphotoRepoImpl.scala │ │ │ ├── ProductphotoRepoMock.scala │ │ │ ├── ProductphotoRow.scala │ │ │ └── ProductphotoRowUnsaved.scala │ │ ├── productproductphoto │ │ │ ├── ProductproductphotoFields.scala │ │ │ ├── ProductproductphotoId.scala │ │ │ ├── ProductproductphotoRepo.scala │ │ │ ├── ProductproductphotoRepoImpl.scala │ │ │ ├── ProductproductphotoRepoMock.scala │ │ │ ├── ProductproductphotoRow.scala │ │ │ └── ProductproductphotoRowUnsaved.scala │ │ ├── productreview │ │ │ ├── ProductreviewFields.scala │ │ │ ├── ProductreviewId.scala │ │ │ ├── ProductreviewRepo.scala │ │ │ ├── ProductreviewRepoImpl.scala │ │ │ ├── ProductreviewRepoMock.scala │ │ │ ├── ProductreviewRow.scala │ │ │ └── ProductreviewRowUnsaved.scala │ │ ├── productsubcategory │ │ │ ├── ProductsubcategoryFields.scala │ │ │ ├── ProductsubcategoryId.scala │ │ │ ├── ProductsubcategoryRepo.scala │ │ │ ├── ProductsubcategoryRepoImpl.scala │ │ │ ├── ProductsubcategoryRepoMock.scala │ │ │ ├── ProductsubcategoryRow.scala │ │ │ └── ProductsubcategoryRowUnsaved.scala │ │ ├── scrapreason │ │ │ ├── ScrapreasonFields.scala │ │ │ ├── ScrapreasonId.scala │ │ │ ├── ScrapreasonRepo.scala │ │ │ ├── ScrapreasonRepoImpl.scala │ │ │ ├── ScrapreasonRepoMock.scala │ │ │ ├── ScrapreasonRow.scala │ │ │ └── ScrapreasonRowUnsaved.scala │ │ ├── transactionhistory │ │ │ ├── TransactionhistoryFields.scala │ │ │ ├── TransactionhistoryId.scala │ │ │ ├── TransactionhistoryRepo.scala │ │ │ ├── TransactionhistoryRepoImpl.scala │ │ │ ├── TransactionhistoryRepoMock.scala │ │ │ ├── TransactionhistoryRow.scala │ │ │ └── TransactionhistoryRowUnsaved.scala │ │ ├── transactionhistoryarchive │ │ │ ├── TransactionhistoryarchiveFields.scala │ │ │ ├── TransactionhistoryarchiveId.scala │ │ │ ├── TransactionhistoryarchiveRepo.scala │ │ │ ├── TransactionhistoryarchiveRepoImpl.scala │ │ │ ├── TransactionhistoryarchiveRepoMock.scala │ │ │ ├── TransactionhistoryarchiveRow.scala │ │ │ └── TransactionhistoryarchiveRowUnsaved.scala │ │ ├── unitmeasure │ │ │ ├── UnitmeasureFields.scala │ │ │ ├── UnitmeasureId.scala │ │ │ ├── UnitmeasureRepo.scala │ │ │ ├── UnitmeasureRepoImpl.scala │ │ │ ├── UnitmeasureRepoMock.scala │ │ │ ├── UnitmeasureRow.scala │ │ │ └── UnitmeasureRowUnsaved.scala │ │ ├── vproductanddescription │ │ │ ├── VproductanddescriptionMVFields.scala │ │ │ ├── VproductanddescriptionMVRepo.scala │ │ │ ├── VproductanddescriptionMVRepoImpl.scala │ │ │ └── VproductanddescriptionMVRow.scala │ │ ├── vproductmodelcatalogdescription │ │ │ ├── VproductmodelcatalogdescriptionViewFields.scala │ │ │ ├── VproductmodelcatalogdescriptionViewRepo.scala │ │ │ ├── VproductmodelcatalogdescriptionViewRepoImpl.scala │ │ │ └── VproductmodelcatalogdescriptionViewRow.scala │ │ ├── vproductmodelinstructions │ │ │ ├── VproductmodelinstructionsViewFields.scala │ │ │ ├── VproductmodelinstructionsViewRepo.scala │ │ │ ├── VproductmodelinstructionsViewRepoImpl.scala │ │ │ └── VproductmodelinstructionsViewRow.scala │ │ ├── workorder │ │ │ ├── WorkorderFields.scala │ │ │ ├── WorkorderId.scala │ │ │ ├── WorkorderRepo.scala │ │ │ ├── WorkorderRepoImpl.scala │ │ │ ├── WorkorderRepoMock.scala │ │ │ ├── WorkorderRow.scala │ │ │ └── WorkorderRowUnsaved.scala │ │ └── workorderrouting │ │ │ ├── WorkorderroutingFields.scala │ │ │ ├── WorkorderroutingId.scala │ │ │ ├── WorkorderroutingRepo.scala │ │ │ ├── WorkorderroutingRepoImpl.scala │ │ │ ├── WorkorderroutingRepoMock.scala │ │ │ ├── WorkorderroutingRow.scala │ │ │ └── WorkorderroutingRowUnsaved.scala │ │ ├── pu │ │ ├── pod │ │ │ ├── PodViewFields.scala │ │ │ ├── PodViewRepo.scala │ │ │ ├── PodViewRepoImpl.scala │ │ │ └── PodViewRow.scala │ │ ├── poh │ │ │ ├── PohViewFields.scala │ │ │ ├── PohViewRepo.scala │ │ │ ├── PohViewRepoImpl.scala │ │ │ └── PohViewRow.scala │ │ ├── pv │ │ │ ├── PvViewFields.scala │ │ │ ├── PvViewRepo.scala │ │ │ ├── PvViewRepoImpl.scala │ │ │ └── PvViewRow.scala │ │ ├── sm │ │ │ ├── SmViewFields.scala │ │ │ ├── SmViewRepo.scala │ │ │ ├── SmViewRepoImpl.scala │ │ │ └── SmViewRow.scala │ │ └── v │ │ │ ├── VViewFields.scala │ │ │ ├── VViewRepo.scala │ │ │ ├── VViewRepoImpl.scala │ │ │ └── VViewRow.scala │ │ ├── public │ │ ├── AccountNumber.scala │ │ ├── Flag.scala │ │ ├── Mydomain.scala │ │ ├── Myenum.scala │ │ ├── Name.scala │ │ ├── NameStyle.scala │ │ ├── OrderNumber.scala │ │ ├── Phone.scala │ │ ├── ShortText.scala │ │ ├── flaff │ │ │ ├── FlaffFields.scala │ │ │ ├── FlaffId.scala │ │ │ ├── FlaffRepo.scala │ │ │ ├── FlaffRepoImpl.scala │ │ │ ├── FlaffRepoMock.scala │ │ │ └── FlaffRow.scala │ │ ├── identity_test │ │ │ ├── IdentityTestFields.scala │ │ │ ├── IdentityTestId.scala │ │ │ ├── IdentityTestRepo.scala │ │ │ ├── IdentityTestRepoImpl.scala │ │ │ ├── IdentityTestRepoMock.scala │ │ │ ├── IdentityTestRow.scala │ │ │ └── IdentityTestRowUnsaved.scala │ │ ├── issue142 │ │ │ ├── Issue142Fields.scala │ │ │ ├── Issue142Id.scala │ │ │ ├── Issue142Repo.scala │ │ │ ├── Issue142RepoImpl.scala │ │ │ ├── Issue142RepoMock.scala │ │ │ └── Issue142Row.scala │ │ ├── issue142_2 │ │ │ ├── Issue1422Fields.scala │ │ │ ├── Issue1422Repo.scala │ │ │ ├── Issue1422RepoImpl.scala │ │ │ ├── Issue1422RepoMock.scala │ │ │ └── Issue1422Row.scala │ │ ├── only_pk_columns │ │ │ ├── OnlyPkColumnsFields.scala │ │ │ ├── OnlyPkColumnsId.scala │ │ │ ├── OnlyPkColumnsRepo.scala │ │ │ ├── OnlyPkColumnsRepoImpl.scala │ │ │ ├── OnlyPkColumnsRepoMock.scala │ │ │ └── OnlyPkColumnsRow.scala │ │ ├── pgtest │ │ │ ├── PgtestFields.scala │ │ │ ├── PgtestRepo.scala │ │ │ ├── PgtestRepoImpl.scala │ │ │ └── PgtestRow.scala │ │ ├── pgtestnull │ │ │ ├── PgtestnullFields.scala │ │ │ ├── PgtestnullRepo.scala │ │ │ ├── PgtestnullRepoImpl.scala │ │ │ └── PgtestnullRow.scala │ │ ├── table_with_generated_columns │ │ │ ├── TableWithGeneratedColumnsFields.scala │ │ │ ├── TableWithGeneratedColumnsId.scala │ │ │ ├── TableWithGeneratedColumnsRepo.scala │ │ │ ├── TableWithGeneratedColumnsRepoImpl.scala │ │ │ ├── TableWithGeneratedColumnsRepoMock.scala │ │ │ ├── TableWithGeneratedColumnsRow.scala │ │ │ └── TableWithGeneratedColumnsRowUnsaved.scala │ │ ├── test_organisasjon │ │ │ ├── TestOrganisasjonFields.scala │ │ │ ├── TestOrganisasjonId.scala │ │ │ ├── TestOrganisasjonRepo.scala │ │ │ ├── TestOrganisasjonRepoImpl.scala │ │ │ ├── TestOrganisasjonRepoMock.scala │ │ │ └── TestOrganisasjonRow.scala │ │ ├── test_sak_soknadsalternativ │ │ │ ├── TestSakSoknadsalternativFields.scala │ │ │ ├── TestSakSoknadsalternativId.scala │ │ │ ├── TestSakSoknadsalternativRepo.scala │ │ │ ├── TestSakSoknadsalternativRepoImpl.scala │ │ │ ├── TestSakSoknadsalternativRepoMock.scala │ │ │ └── TestSakSoknadsalternativRow.scala │ │ ├── test_utdanningstilbud │ │ │ ├── TestUtdanningstilbudFields.scala │ │ │ ├── TestUtdanningstilbudId.scala │ │ │ ├── TestUtdanningstilbudRepo.scala │ │ │ ├── TestUtdanningstilbudRepoImpl.scala │ │ │ ├── TestUtdanningstilbudRepoMock.scala │ │ │ └── TestUtdanningstilbudRow.scala │ │ ├── title │ │ │ ├── TitleFields.scala │ │ │ ├── TitleId.scala │ │ │ ├── TitleRepo.scala │ │ │ ├── TitleRepoImpl.scala │ │ │ ├── TitleRepoMock.scala │ │ │ └── TitleRow.scala │ │ ├── title_domain │ │ │ ├── TitleDomainFields.scala │ │ │ ├── TitleDomainId.scala │ │ │ ├── TitleDomainRepo.scala │ │ │ ├── TitleDomainRepoImpl.scala │ │ │ ├── TitleDomainRepoMock.scala │ │ │ └── TitleDomainRow.scala │ │ ├── titledperson │ │ │ ├── TitledpersonFields.scala │ │ │ ├── TitledpersonRepo.scala │ │ │ ├── TitledpersonRepoImpl.scala │ │ │ └── TitledpersonRow.scala │ │ └── users │ │ │ ├── UsersFields.scala │ │ │ ├── UsersId.scala │ │ │ ├── UsersRepo.scala │ │ │ ├── UsersRepoImpl.scala │ │ │ ├── UsersRepoMock.scala │ │ │ ├── UsersRow.scala │ │ │ └── UsersRowUnsaved.scala │ │ ├── purchasing │ │ ├── productvendor │ │ │ ├── ProductvendorFields.scala │ │ │ ├── ProductvendorId.scala │ │ │ ├── ProductvendorRepo.scala │ │ │ ├── ProductvendorRepoImpl.scala │ │ │ ├── ProductvendorRepoMock.scala │ │ │ ├── ProductvendorRow.scala │ │ │ └── ProductvendorRowUnsaved.scala │ │ ├── purchaseorderdetail │ │ │ ├── PurchaseorderdetailFields.scala │ │ │ ├── PurchaseorderdetailId.scala │ │ │ ├── PurchaseorderdetailRepo.scala │ │ │ ├── PurchaseorderdetailRepoImpl.scala │ │ │ ├── PurchaseorderdetailRow.scala │ │ │ └── PurchaseorderdetailRowUnsaved.scala │ │ ├── purchaseorderheader │ │ │ ├── PurchaseorderheaderFields.scala │ │ │ ├── PurchaseorderheaderId.scala │ │ │ ├── PurchaseorderheaderRepo.scala │ │ │ ├── PurchaseorderheaderRepoImpl.scala │ │ │ ├── PurchaseorderheaderRepoMock.scala │ │ │ ├── PurchaseorderheaderRow.scala │ │ │ └── PurchaseorderheaderRowUnsaved.scala │ │ ├── shipmethod │ │ │ ├── ShipmethodFields.scala │ │ │ ├── ShipmethodId.scala │ │ │ ├── ShipmethodRepo.scala │ │ │ ├── ShipmethodRepoImpl.scala │ │ │ ├── ShipmethodRepoMock.scala │ │ │ ├── ShipmethodRow.scala │ │ │ └── ShipmethodRowUnsaved.scala │ │ ├── vendor │ │ │ ├── VendorFields.scala │ │ │ ├── VendorRepo.scala │ │ │ ├── VendorRepoImpl.scala │ │ │ ├── VendorRepoMock.scala │ │ │ ├── VendorRow.scala │ │ │ └── VendorRowUnsaved.scala │ │ ├── vvendorwithaddresses │ │ │ ├── VvendorwithaddressesViewFields.scala │ │ │ ├── VvendorwithaddressesViewRepo.scala │ │ │ ├── VvendorwithaddressesViewRepoImpl.scala │ │ │ └── VvendorwithaddressesViewRow.scala │ │ └── vvendorwithcontacts │ │ │ ├── VvendorwithcontactsViewFields.scala │ │ │ ├── VvendorwithcontactsViewRepo.scala │ │ │ ├── VvendorwithcontactsViewRepoImpl.scala │ │ │ └── VvendorwithcontactsViewRow.scala │ │ ├── sa │ │ ├── c │ │ │ ├── CViewFields.scala │ │ │ ├── CViewRepo.scala │ │ │ ├── CViewRepoImpl.scala │ │ │ └── CViewRow.scala │ │ ├── cc │ │ │ ├── CcViewFields.scala │ │ │ ├── CcViewRepo.scala │ │ │ ├── CcViewRepoImpl.scala │ │ │ └── CcViewRow.scala │ │ ├── cr │ │ │ ├── CrViewFields.scala │ │ │ ├── CrViewRepo.scala │ │ │ ├── CrViewRepoImpl.scala │ │ │ └── CrViewRow.scala │ │ ├── crc │ │ │ ├── CrcViewFields.scala │ │ │ ├── CrcViewRepo.scala │ │ │ ├── CrcViewRepoImpl.scala │ │ │ └── CrcViewRow.scala │ │ ├── cu │ │ │ ├── CuViewFields.scala │ │ │ ├── CuViewRepo.scala │ │ │ ├── CuViewRepoImpl.scala │ │ │ └── CuViewRow.scala │ │ ├── pcc │ │ │ ├── PccViewFields.scala │ │ │ ├── PccViewRepo.scala │ │ │ ├── PccViewRepoImpl.scala │ │ │ └── PccViewRow.scala │ │ ├── s │ │ │ ├── SViewFields.scala │ │ │ ├── SViewRepo.scala │ │ │ ├── SViewRepoImpl.scala │ │ │ └── SViewRow.scala │ │ ├── sci │ │ │ ├── SciViewFields.scala │ │ │ ├── SciViewRepo.scala │ │ │ ├── SciViewRepoImpl.scala │ │ │ └── SciViewRow.scala │ │ ├── so │ │ │ ├── SoViewFields.scala │ │ │ ├── SoViewRepo.scala │ │ │ ├── SoViewRepoImpl.scala │ │ │ └── SoViewRow.scala │ │ ├── sod │ │ │ ├── SodViewFields.scala │ │ │ ├── SodViewRepo.scala │ │ │ ├── SodViewRepoImpl.scala │ │ │ └── SodViewRow.scala │ │ ├── soh │ │ │ ├── SohViewFields.scala │ │ │ ├── SohViewRepo.scala │ │ │ ├── SohViewRepoImpl.scala │ │ │ └── SohViewRow.scala │ │ ├── sohsr │ │ │ ├── SohsrViewFields.scala │ │ │ ├── SohsrViewRepo.scala │ │ │ ├── SohsrViewRepoImpl.scala │ │ │ └── SohsrViewRow.scala │ │ ├── sop │ │ │ ├── SopViewFields.scala │ │ │ ├── SopViewRepo.scala │ │ │ ├── SopViewRepoImpl.scala │ │ │ └── SopViewRow.scala │ │ ├── sp │ │ │ ├── SpViewFields.scala │ │ │ ├── SpViewRepo.scala │ │ │ ├── SpViewRepoImpl.scala │ │ │ └── SpViewRow.scala │ │ ├── spqh │ │ │ ├── SpqhViewFields.scala │ │ │ ├── SpqhViewRepo.scala │ │ │ ├── SpqhViewRepoImpl.scala │ │ │ └── SpqhViewRow.scala │ │ ├── sr │ │ │ ├── SrViewFields.scala │ │ │ ├── SrViewRepo.scala │ │ │ ├── SrViewRepoImpl.scala │ │ │ └── SrViewRow.scala │ │ ├── st │ │ │ ├── StViewFields.scala │ │ │ ├── StViewRepo.scala │ │ │ ├── StViewRepoImpl.scala │ │ │ └── StViewRow.scala │ │ ├── sth │ │ │ ├── SthViewFields.scala │ │ │ ├── SthViewRepo.scala │ │ │ ├── SthViewRepoImpl.scala │ │ │ └── SthViewRow.scala │ │ └── tr │ │ │ ├── TrViewFields.scala │ │ │ ├── TrViewRepo.scala │ │ │ ├── TrViewRepoImpl.scala │ │ │ └── TrViewRow.scala │ │ ├── sales │ │ ├── countryregioncurrency │ │ │ ├── CountryregioncurrencyFields.scala │ │ │ ├── CountryregioncurrencyId.scala │ │ │ ├── CountryregioncurrencyRepo.scala │ │ │ ├── CountryregioncurrencyRepoImpl.scala │ │ │ ├── CountryregioncurrencyRepoMock.scala │ │ │ ├── CountryregioncurrencyRow.scala │ │ │ └── CountryregioncurrencyRowUnsaved.scala │ │ ├── creditcard │ │ │ ├── CreditcardFields.scala │ │ │ ├── CreditcardRepo.scala │ │ │ ├── CreditcardRepoImpl.scala │ │ │ ├── CreditcardRepoMock.scala │ │ │ ├── CreditcardRow.scala │ │ │ └── CreditcardRowUnsaved.scala │ │ ├── currency │ │ │ ├── CurrencyFields.scala │ │ │ ├── CurrencyId.scala │ │ │ ├── CurrencyRepo.scala │ │ │ ├── CurrencyRepoImpl.scala │ │ │ ├── CurrencyRepoMock.scala │ │ │ ├── CurrencyRow.scala │ │ │ └── CurrencyRowUnsaved.scala │ │ ├── currencyrate │ │ │ ├── CurrencyrateFields.scala │ │ │ ├── CurrencyrateId.scala │ │ │ ├── CurrencyrateRepo.scala │ │ │ ├── CurrencyrateRepoImpl.scala │ │ │ ├── CurrencyrateRepoMock.scala │ │ │ ├── CurrencyrateRow.scala │ │ │ └── CurrencyrateRowUnsaved.scala │ │ ├── customer │ │ │ ├── CustomerFields.scala │ │ │ ├── CustomerId.scala │ │ │ ├── CustomerRepo.scala │ │ │ ├── CustomerRepoImpl.scala │ │ │ ├── CustomerRepoMock.scala │ │ │ ├── CustomerRow.scala │ │ │ └── CustomerRowUnsaved.scala │ │ ├── personcreditcard │ │ │ ├── PersoncreditcardFields.scala │ │ │ ├── PersoncreditcardId.scala │ │ │ ├── PersoncreditcardRepo.scala │ │ │ ├── PersoncreditcardRepoImpl.scala │ │ │ ├── PersoncreditcardRepoMock.scala │ │ │ ├── PersoncreditcardRow.scala │ │ │ └── PersoncreditcardRowUnsaved.scala │ │ ├── salesorderdetail │ │ │ ├── SalesorderdetailFields.scala │ │ │ ├── SalesorderdetailId.scala │ │ │ ├── SalesorderdetailRepo.scala │ │ │ ├── SalesorderdetailRepoImpl.scala │ │ │ ├── SalesorderdetailRepoMock.scala │ │ │ ├── SalesorderdetailRow.scala │ │ │ └── SalesorderdetailRowUnsaved.scala │ │ ├── salesorderheader │ │ │ ├── SalesorderheaderFields.scala │ │ │ ├── SalesorderheaderId.scala │ │ │ ├── SalesorderheaderRepo.scala │ │ │ ├── SalesorderheaderRepoImpl.scala │ │ │ ├── SalesorderheaderRepoMock.scala │ │ │ ├── SalesorderheaderRow.scala │ │ │ └── SalesorderheaderRowUnsaved.scala │ │ ├── salesorderheadersalesreason │ │ │ ├── SalesorderheadersalesreasonFields.scala │ │ │ ├── SalesorderheadersalesreasonId.scala │ │ │ ├── SalesorderheadersalesreasonRepo.scala │ │ │ ├── SalesorderheadersalesreasonRepoImpl.scala │ │ │ ├── SalesorderheadersalesreasonRepoMock.scala │ │ │ ├── SalesorderheadersalesreasonRow.scala │ │ │ └── SalesorderheadersalesreasonRowUnsaved.scala │ │ ├── salesperson │ │ │ ├── SalespersonFields.scala │ │ │ ├── SalespersonRepo.scala │ │ │ ├── SalespersonRepoImpl.scala │ │ │ ├── SalespersonRepoMock.scala │ │ │ ├── SalespersonRow.scala │ │ │ └── SalespersonRowUnsaved.scala │ │ ├── salespersonquotahistory │ │ │ ├── SalespersonquotahistoryFields.scala │ │ │ ├── SalespersonquotahistoryId.scala │ │ │ ├── SalespersonquotahistoryRepo.scala │ │ │ ├── SalespersonquotahistoryRepoImpl.scala │ │ │ ├── SalespersonquotahistoryRepoMock.scala │ │ │ ├── SalespersonquotahistoryRow.scala │ │ │ └── SalespersonquotahistoryRowUnsaved.scala │ │ ├── salesreason │ │ │ ├── SalesreasonFields.scala │ │ │ ├── SalesreasonId.scala │ │ │ ├── SalesreasonRepo.scala │ │ │ ├── SalesreasonRepoImpl.scala │ │ │ ├── SalesreasonRepoMock.scala │ │ │ ├── SalesreasonRow.scala │ │ │ └── SalesreasonRowUnsaved.scala │ │ ├── salestaxrate │ │ │ ├── SalestaxrateFields.scala │ │ │ ├── SalestaxrateId.scala │ │ │ ├── SalestaxrateRepo.scala │ │ │ ├── SalestaxrateRepoImpl.scala │ │ │ ├── SalestaxrateRepoMock.scala │ │ │ ├── SalestaxrateRow.scala │ │ │ └── SalestaxrateRowUnsaved.scala │ │ ├── salesterritory │ │ │ ├── SalesterritoryFields.scala │ │ │ ├── SalesterritoryId.scala │ │ │ ├── SalesterritoryRepo.scala │ │ │ ├── SalesterritoryRepoImpl.scala │ │ │ ├── SalesterritoryRepoMock.scala │ │ │ ├── SalesterritoryRow.scala │ │ │ └── SalesterritoryRowUnsaved.scala │ │ ├── salesterritoryhistory │ │ │ ├── SalesterritoryhistoryFields.scala │ │ │ ├── SalesterritoryhistoryId.scala │ │ │ ├── SalesterritoryhistoryRepo.scala │ │ │ ├── SalesterritoryhistoryRepoImpl.scala │ │ │ ├── SalesterritoryhistoryRepoMock.scala │ │ │ ├── SalesterritoryhistoryRow.scala │ │ │ └── SalesterritoryhistoryRowUnsaved.scala │ │ ├── shoppingcartitem │ │ │ ├── ShoppingcartitemFields.scala │ │ │ ├── ShoppingcartitemId.scala │ │ │ ├── ShoppingcartitemRepo.scala │ │ │ ├── ShoppingcartitemRepoImpl.scala │ │ │ ├── ShoppingcartitemRepoMock.scala │ │ │ ├── ShoppingcartitemRow.scala │ │ │ └── ShoppingcartitemRowUnsaved.scala │ │ ├── specialoffer │ │ │ ├── SpecialofferFields.scala │ │ │ ├── SpecialofferId.scala │ │ │ ├── SpecialofferRepo.scala │ │ │ ├── SpecialofferRepoImpl.scala │ │ │ ├── SpecialofferRepoMock.scala │ │ │ ├── SpecialofferRow.scala │ │ │ └── SpecialofferRowUnsaved.scala │ │ ├── specialofferproduct │ │ │ ├── SpecialofferproductFields.scala │ │ │ ├── SpecialofferproductId.scala │ │ │ ├── SpecialofferproductRepo.scala │ │ │ ├── SpecialofferproductRepoImpl.scala │ │ │ ├── SpecialofferproductRepoMock.scala │ │ │ ├── SpecialofferproductRow.scala │ │ │ └── SpecialofferproductRowUnsaved.scala │ │ ├── store │ │ │ ├── StoreFields.scala │ │ │ ├── StoreRepo.scala │ │ │ ├── StoreRepoImpl.scala │ │ │ ├── StoreRepoMock.scala │ │ │ ├── StoreRow.scala │ │ │ └── StoreRowUnsaved.scala │ │ ├── vindividualcustomer │ │ │ ├── VindividualcustomerViewFields.scala │ │ │ ├── VindividualcustomerViewRepo.scala │ │ │ ├── VindividualcustomerViewRepoImpl.scala │ │ │ └── VindividualcustomerViewRow.scala │ │ ├── vpersondemographics │ │ │ ├── VpersondemographicsViewFields.scala │ │ │ ├── VpersondemographicsViewRepo.scala │ │ │ ├── VpersondemographicsViewRepoImpl.scala │ │ │ └── VpersondemographicsViewRow.scala │ │ ├── vsalesperson │ │ │ ├── VsalespersonViewFields.scala │ │ │ ├── VsalespersonViewRepo.scala │ │ │ ├── VsalespersonViewRepoImpl.scala │ │ │ └── VsalespersonViewRow.scala │ │ ├── vsalespersonsalesbyfiscalyears │ │ │ ├── VsalespersonsalesbyfiscalyearsViewFields.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepo.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepoImpl.scala │ │ │ └── VsalespersonsalesbyfiscalyearsViewRow.scala │ │ ├── vsalespersonsalesbyfiscalyearsdata │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewFields.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepo.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepoImpl.scala │ │ │ └── VsalespersonsalesbyfiscalyearsdataViewRow.scala │ │ ├── vstorewithaddresses │ │ │ ├── VstorewithaddressesViewFields.scala │ │ │ ├── VstorewithaddressesViewRepo.scala │ │ │ ├── VstorewithaddressesViewRepoImpl.scala │ │ │ └── VstorewithaddressesViewRow.scala │ │ ├── vstorewithcontacts │ │ │ ├── VstorewithcontactsViewFields.scala │ │ │ ├── VstorewithcontactsViewRepo.scala │ │ │ ├── VstorewithcontactsViewRepoImpl.scala │ │ │ └── VstorewithcontactsViewRow.scala │ │ └── vstorewithdemographics │ │ │ ├── VstorewithdemographicsViewFields.scala │ │ │ ├── VstorewithdemographicsViewRepo.scala │ │ │ ├── VstorewithdemographicsViewRepoImpl.scala │ │ │ └── VstorewithdemographicsViewRow.scala │ │ ├── update_person │ │ ├── UpdatePersonSqlRepo.scala │ │ └── UpdatePersonSqlRepoImpl.scala │ │ └── update_person_returning │ │ ├── UpdatePersonReturningSqlRepo.scala │ │ ├── UpdatePersonReturningSqlRepoImpl.scala │ │ └── UpdatePersonReturningSqlRow.scala └── src │ └── scala │ └── adventureworks │ └── userdefined │ ├── CustomCreditcardId.scala │ └── FirstName.scala ├── typo-tester-zio-jdbc ├── generated-and-checked-in-2.13 │ └── adventureworks │ │ ├── TestDomainInsert.scala │ │ ├── TestInsert.scala │ │ ├── Text.scala │ │ ├── customtypes │ │ ├── Defaulted.scala │ │ ├── TypoBox.scala │ │ ├── TypoBytea.scala │ │ ├── TypoCircle.scala │ │ ├── TypoHStore.scala │ │ ├── TypoInet.scala │ │ ├── TypoInstant.scala │ │ ├── TypoInt2Vector.scala │ │ ├── TypoInterval.scala │ │ ├── TypoJson.scala │ │ ├── TypoJsonb.scala │ │ ├── TypoLine.scala │ │ ├── TypoLineSegment.scala │ │ ├── TypoLocalDate.scala │ │ ├── TypoLocalDateTime.scala │ │ ├── TypoLocalTime.scala │ │ ├── TypoMoney.scala │ │ ├── TypoOffsetTime.scala │ │ ├── TypoPath.scala │ │ ├── TypoPoint.scala │ │ ├── TypoPolygon.scala │ │ ├── TypoRecord.scala │ │ ├── TypoShort.scala │ │ ├── TypoUUID.scala │ │ ├── TypoUnknownCitext.scala │ │ ├── TypoVector.scala │ │ └── TypoXml.scala │ │ ├── frontpage │ │ └── Email.scala │ │ ├── hr │ │ ├── d │ │ │ ├── DViewFields.scala │ │ │ ├── DViewRepo.scala │ │ │ ├── DViewRepoImpl.scala │ │ │ └── DViewRow.scala │ │ ├── e │ │ │ ├── EViewFields.scala │ │ │ ├── EViewRepo.scala │ │ │ ├── EViewRepoImpl.scala │ │ │ └── EViewRow.scala │ │ ├── edh │ │ │ ├── EdhViewFields.scala │ │ │ ├── EdhViewRepo.scala │ │ │ ├── EdhViewRepoImpl.scala │ │ │ └── EdhViewRow.scala │ │ ├── eph │ │ │ ├── EphViewFields.scala │ │ │ ├── EphViewRepo.scala │ │ │ ├── EphViewRepoImpl.scala │ │ │ └── EphViewRow.scala │ │ ├── jc │ │ │ ├── JcViewFields.scala │ │ │ ├── JcViewRepo.scala │ │ │ ├── JcViewRepoImpl.scala │ │ │ └── JcViewRow.scala │ │ └── s │ │ │ ├── SViewFields.scala │ │ │ ├── SViewRepo.scala │ │ │ ├── SViewRepoImpl.scala │ │ │ └── SViewRow.scala │ │ ├── humanresources │ │ ├── department │ │ │ ├── DepartmentFields.scala │ │ │ ├── DepartmentId.scala │ │ │ ├── DepartmentRepo.scala │ │ │ ├── DepartmentRepoImpl.scala │ │ │ ├── DepartmentRepoMock.scala │ │ │ ├── DepartmentRow.scala │ │ │ └── DepartmentRowUnsaved.scala │ │ ├── employee │ │ │ ├── EmployeeFields.scala │ │ │ ├── EmployeeRepo.scala │ │ │ ├── EmployeeRepoImpl.scala │ │ │ ├── EmployeeRepoMock.scala │ │ │ ├── EmployeeRow.scala │ │ │ └── EmployeeRowUnsaved.scala │ │ ├── employeedepartmenthistory │ │ │ ├── EmployeedepartmenthistoryFields.scala │ │ │ ├── EmployeedepartmenthistoryId.scala │ │ │ ├── EmployeedepartmenthistoryRepo.scala │ │ │ ├── EmployeedepartmenthistoryRepoImpl.scala │ │ │ ├── EmployeedepartmenthistoryRepoMock.scala │ │ │ ├── EmployeedepartmenthistoryRow.scala │ │ │ └── EmployeedepartmenthistoryRowUnsaved.scala │ │ ├── employeepayhistory │ │ │ ├── EmployeepayhistoryFields.scala │ │ │ ├── EmployeepayhistoryId.scala │ │ │ ├── EmployeepayhistoryRepo.scala │ │ │ ├── EmployeepayhistoryRepoImpl.scala │ │ │ ├── EmployeepayhistoryRepoMock.scala │ │ │ ├── EmployeepayhistoryRow.scala │ │ │ └── EmployeepayhistoryRowUnsaved.scala │ │ ├── jobcandidate │ │ │ ├── JobcandidateFields.scala │ │ │ ├── JobcandidateId.scala │ │ │ ├── JobcandidateRepo.scala │ │ │ ├── JobcandidateRepoImpl.scala │ │ │ ├── JobcandidateRepoMock.scala │ │ │ ├── JobcandidateRow.scala │ │ │ └── JobcandidateRowUnsaved.scala │ │ ├── shift │ │ │ ├── ShiftFields.scala │ │ │ ├── ShiftId.scala │ │ │ ├── ShiftRepo.scala │ │ │ ├── ShiftRepoImpl.scala │ │ │ ├── ShiftRepoMock.scala │ │ │ ├── ShiftRow.scala │ │ │ └── ShiftRowUnsaved.scala │ │ ├── vemployee │ │ │ ├── VemployeeViewFields.scala │ │ │ ├── VemployeeViewRepo.scala │ │ │ ├── VemployeeViewRepoImpl.scala │ │ │ └── VemployeeViewRow.scala │ │ ├── vemployeedepartment │ │ │ ├── VemployeedepartmentViewFields.scala │ │ │ ├── VemployeedepartmentViewRepo.scala │ │ │ ├── VemployeedepartmentViewRepoImpl.scala │ │ │ └── VemployeedepartmentViewRow.scala │ │ ├── vemployeedepartmenthistory │ │ │ ├── VemployeedepartmenthistoryViewFields.scala │ │ │ ├── VemployeedepartmenthistoryViewRepo.scala │ │ │ ├── VemployeedepartmenthistoryViewRepoImpl.scala │ │ │ └── VemployeedepartmenthistoryViewRow.scala │ │ ├── vjobcandidate │ │ │ ├── VjobcandidateViewFields.scala │ │ │ ├── VjobcandidateViewRepo.scala │ │ │ ├── VjobcandidateViewRepoImpl.scala │ │ │ └── VjobcandidateViewRow.scala │ │ ├── vjobcandidateeducation │ │ │ ├── VjobcandidateeducationViewFields.scala │ │ │ ├── VjobcandidateeducationViewRepo.scala │ │ │ ├── VjobcandidateeducationViewRepoImpl.scala │ │ │ └── VjobcandidateeducationViewRow.scala │ │ └── vjobcandidateemployment │ │ │ ├── VjobcandidateemploymentViewFields.scala │ │ │ ├── VjobcandidateemploymentViewRepo.scala │ │ │ ├── VjobcandidateemploymentViewRepoImpl.scala │ │ │ └── VjobcandidateemploymentViewRow.scala │ │ ├── information_schema │ │ ├── CardinalNumber.scala │ │ ├── CharacterData.scala │ │ ├── SqlIdentifier.scala │ │ ├── TimeStamp.scala │ │ └── YesOrNo.scala │ │ ├── package.scala │ │ ├── pe │ │ ├── a │ │ │ ├── AViewFields.scala │ │ │ ├── AViewRepo.scala │ │ │ ├── AViewRepoImpl.scala │ │ │ └── AViewRow.scala │ │ ├── at │ │ │ ├── AtViewFields.scala │ │ │ ├── AtViewRepo.scala │ │ │ ├── AtViewRepoImpl.scala │ │ │ └── AtViewRow.scala │ │ ├── be │ │ │ ├── BeViewFields.scala │ │ │ ├── BeViewRepo.scala │ │ │ ├── BeViewRepoImpl.scala │ │ │ └── BeViewRow.scala │ │ ├── bea │ │ │ ├── BeaViewFields.scala │ │ │ ├── BeaViewRepo.scala │ │ │ ├── BeaViewRepoImpl.scala │ │ │ └── BeaViewRow.scala │ │ ├── bec │ │ │ ├── BecViewFields.scala │ │ │ ├── BecViewRepo.scala │ │ │ ├── BecViewRepoImpl.scala │ │ │ └── BecViewRow.scala │ │ ├── cr │ │ │ ├── CrViewFields.scala │ │ │ ├── CrViewRepo.scala │ │ │ ├── CrViewRepoImpl.scala │ │ │ └── CrViewRow.scala │ │ ├── ct │ │ │ ├── CtViewFields.scala │ │ │ ├── CtViewRepo.scala │ │ │ ├── CtViewRepoImpl.scala │ │ │ └── CtViewRow.scala │ │ ├── e │ │ │ ├── EViewFields.scala │ │ │ ├── EViewRepo.scala │ │ │ ├── EViewRepoImpl.scala │ │ │ └── EViewRow.scala │ │ ├── p │ │ │ ├── PViewFields.scala │ │ │ ├── PViewRepo.scala │ │ │ ├── PViewRepoImpl.scala │ │ │ └── PViewRow.scala │ │ ├── pa │ │ │ ├── PaViewFields.scala │ │ │ ├── PaViewRepo.scala │ │ │ ├── PaViewRepoImpl.scala │ │ │ └── PaViewRow.scala │ │ ├── pnt │ │ │ ├── PntViewFields.scala │ │ │ ├── PntViewRepo.scala │ │ │ ├── PntViewRepoImpl.scala │ │ │ └── PntViewRow.scala │ │ ├── pp │ │ │ ├── PpViewFields.scala │ │ │ ├── PpViewRepo.scala │ │ │ ├── PpViewRepoImpl.scala │ │ │ └── PpViewRow.scala │ │ └── sp │ │ │ ├── SpViewFields.scala │ │ │ ├── SpViewRepo.scala │ │ │ ├── SpViewRepoImpl.scala │ │ │ └── SpViewRow.scala │ │ ├── person │ │ ├── address │ │ │ ├── AddressFields.scala │ │ │ ├── AddressId.scala │ │ │ ├── AddressRepo.scala │ │ │ ├── AddressRepoImpl.scala │ │ │ ├── AddressRepoMock.scala │ │ │ ├── AddressRow.scala │ │ │ └── AddressRowUnsaved.scala │ │ ├── addresstype │ │ │ ├── AddresstypeFields.scala │ │ │ ├── AddresstypeId.scala │ │ │ ├── AddresstypeRepo.scala │ │ │ ├── AddresstypeRepoImpl.scala │ │ │ ├── AddresstypeRepoMock.scala │ │ │ ├── AddresstypeRow.scala │ │ │ └── AddresstypeRowUnsaved.scala │ │ ├── businessentity │ │ │ ├── BusinessentityFields.scala │ │ │ ├── BusinessentityId.scala │ │ │ ├── BusinessentityRepo.scala │ │ │ ├── BusinessentityRepoImpl.scala │ │ │ ├── BusinessentityRepoMock.scala │ │ │ ├── BusinessentityRow.scala │ │ │ └── BusinessentityRowUnsaved.scala │ │ ├── businessentityaddress │ │ │ ├── BusinessentityaddressFields.scala │ │ │ ├── BusinessentityaddressId.scala │ │ │ ├── BusinessentityaddressRepo.scala │ │ │ ├── BusinessentityaddressRepoImpl.scala │ │ │ ├── BusinessentityaddressRepoMock.scala │ │ │ ├── BusinessentityaddressRow.scala │ │ │ └── BusinessentityaddressRowUnsaved.scala │ │ ├── businessentitycontact │ │ │ ├── BusinessentitycontactFields.scala │ │ │ ├── BusinessentitycontactId.scala │ │ │ ├── BusinessentitycontactRepo.scala │ │ │ ├── BusinessentitycontactRepoImpl.scala │ │ │ ├── BusinessentitycontactRepoMock.scala │ │ │ ├── BusinessentitycontactRow.scala │ │ │ └── BusinessentitycontactRowUnsaved.scala │ │ ├── contacttype │ │ │ ├── ContacttypeFields.scala │ │ │ ├── ContacttypeId.scala │ │ │ ├── ContacttypeRepo.scala │ │ │ ├── ContacttypeRepoImpl.scala │ │ │ ├── ContacttypeRepoMock.scala │ │ │ ├── ContacttypeRow.scala │ │ │ └── ContacttypeRowUnsaved.scala │ │ ├── countryregion │ │ │ ├── CountryregionFields.scala │ │ │ ├── CountryregionId.scala │ │ │ ├── CountryregionRepo.scala │ │ │ ├── CountryregionRepoImpl.scala │ │ │ ├── CountryregionRepoMock.scala │ │ │ ├── CountryregionRow.scala │ │ │ └── CountryregionRowUnsaved.scala │ │ ├── emailaddress │ │ │ ├── EmailaddressFields.scala │ │ │ ├── EmailaddressId.scala │ │ │ ├── EmailaddressRepo.scala │ │ │ ├── EmailaddressRepoImpl.scala │ │ │ ├── EmailaddressRepoMock.scala │ │ │ ├── EmailaddressRow.scala │ │ │ └── EmailaddressRowUnsaved.scala │ │ ├── password │ │ │ ├── PasswordFields.scala │ │ │ ├── PasswordRepo.scala │ │ │ ├── PasswordRepoImpl.scala │ │ │ ├── PasswordRepoMock.scala │ │ │ ├── PasswordRow.scala │ │ │ └── PasswordRowUnsaved.scala │ │ ├── person │ │ │ ├── PersonFields.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── personphone │ │ │ ├── PersonphoneFields.scala │ │ │ ├── PersonphoneId.scala │ │ │ ├── PersonphoneRepo.scala │ │ │ ├── PersonphoneRepoImpl.scala │ │ │ ├── PersonphoneRepoMock.scala │ │ │ ├── PersonphoneRow.scala │ │ │ └── PersonphoneRowUnsaved.scala │ │ ├── phonenumbertype │ │ │ ├── PhonenumbertypeFields.scala │ │ │ ├── PhonenumbertypeId.scala │ │ │ ├── PhonenumbertypeRepo.scala │ │ │ ├── PhonenumbertypeRepoImpl.scala │ │ │ ├── PhonenumbertypeRepoMock.scala │ │ │ ├── PhonenumbertypeRow.scala │ │ │ └── PhonenumbertypeRowUnsaved.scala │ │ ├── stateprovince │ │ │ ├── StateprovinceFields.scala │ │ │ ├── StateprovinceId.scala │ │ │ ├── StateprovinceRepo.scala │ │ │ ├── StateprovinceRepoImpl.scala │ │ │ ├── StateprovinceRepoMock.scala │ │ │ ├── StateprovinceRow.scala │ │ │ └── StateprovinceRowUnsaved.scala │ │ ├── vadditionalcontactinfo │ │ │ ├── VadditionalcontactinfoViewFields.scala │ │ │ ├── VadditionalcontactinfoViewRepo.scala │ │ │ ├── VadditionalcontactinfoViewRepoImpl.scala │ │ │ └── VadditionalcontactinfoViewRow.scala │ │ └── vstateprovincecountryregion │ │ │ ├── VstateprovincecountryregionMVFields.scala │ │ │ ├── VstateprovincecountryregionMVRepo.scala │ │ │ ├── VstateprovincecountryregionMVRepoImpl.scala │ │ │ └── VstateprovincecountryregionMVRow.scala │ │ ├── person_detail │ │ ├── PersonDetailSqlRepo.scala │ │ ├── PersonDetailSqlRepoImpl.scala │ │ └── PersonDetailSqlRow.scala │ │ ├── person_dynamic │ │ ├── PersonDynamicSqlRepo.scala │ │ ├── PersonDynamicSqlRepoImpl.scala │ │ └── PersonDynamicSqlRow.scala │ │ ├── person_row_join │ │ ├── PersonRowJoinSqlRepo.scala │ │ ├── PersonRowJoinSqlRepoImpl.scala │ │ └── PersonRowJoinSqlRow.scala │ │ ├── pr │ │ ├── bom │ │ │ ├── BomViewFields.scala │ │ │ ├── BomViewRepo.scala │ │ │ ├── BomViewRepoImpl.scala │ │ │ └── BomViewRow.scala │ │ ├── c │ │ │ ├── CViewFields.scala │ │ │ ├── CViewRepo.scala │ │ │ ├── CViewRepoImpl.scala │ │ │ └── CViewRow.scala │ │ ├── d │ │ │ ├── DViewFields.scala │ │ │ ├── DViewRepo.scala │ │ │ ├── DViewRepoImpl.scala │ │ │ └── DViewRow.scala │ │ ├── i │ │ │ ├── IViewFields.scala │ │ │ ├── IViewRepo.scala │ │ │ ├── IViewRepoImpl.scala │ │ │ └── IViewRow.scala │ │ ├── l │ │ │ ├── LViewFields.scala │ │ │ ├── LViewRepo.scala │ │ │ ├── LViewRepoImpl.scala │ │ │ └── LViewRow.scala │ │ ├── p │ │ │ ├── PViewFields.scala │ │ │ ├── PViewRepo.scala │ │ │ ├── PViewRepoImpl.scala │ │ │ └── PViewRow.scala │ │ ├── pc │ │ │ ├── PcViewFields.scala │ │ │ ├── PcViewRepo.scala │ │ │ ├── PcViewRepoImpl.scala │ │ │ └── PcViewRow.scala │ │ ├── pch │ │ │ ├── PchViewFields.scala │ │ │ ├── PchViewRepo.scala │ │ │ ├── PchViewRepoImpl.scala │ │ │ └── PchViewRow.scala │ │ ├── pd │ │ │ ├── PdViewFields.scala │ │ │ ├── PdViewRepo.scala │ │ │ ├── PdViewRepoImpl.scala │ │ │ └── PdViewRow.scala │ │ ├── pdoc │ │ │ ├── PdocViewFields.scala │ │ │ ├── PdocViewRepo.scala │ │ │ ├── PdocViewRepoImpl.scala │ │ │ └── PdocViewRow.scala │ │ ├── pi │ │ │ ├── PiViewFields.scala │ │ │ ├── PiViewRepo.scala │ │ │ ├── PiViewRepoImpl.scala │ │ │ └── PiViewRow.scala │ │ ├── plph │ │ │ ├── PlphViewFields.scala │ │ │ ├── PlphViewRepo.scala │ │ │ ├── PlphViewRepoImpl.scala │ │ │ └── PlphViewRow.scala │ │ ├── pm │ │ │ ├── PmViewFields.scala │ │ │ ├── PmViewRepo.scala │ │ │ ├── PmViewRepoImpl.scala │ │ │ └── PmViewRow.scala │ │ ├── pmi │ │ │ ├── PmiViewFields.scala │ │ │ ├── PmiViewRepo.scala │ │ │ ├── PmiViewRepoImpl.scala │ │ │ └── PmiViewRow.scala │ │ ├── pmpdc │ │ │ ├── PmpdcViewFields.scala │ │ │ ├── PmpdcViewRepo.scala │ │ │ ├── PmpdcViewRepoImpl.scala │ │ │ └── PmpdcViewRow.scala │ │ ├── pp │ │ │ ├── PpViewFields.scala │ │ │ ├── PpViewRepo.scala │ │ │ ├── PpViewRepoImpl.scala │ │ │ └── PpViewRow.scala │ │ ├── ppp │ │ │ ├── PppViewFields.scala │ │ │ ├── PppViewRepo.scala │ │ │ ├── PppViewRepoImpl.scala │ │ │ └── PppViewRow.scala │ │ ├── pr │ │ │ ├── PrViewFields.scala │ │ │ ├── PrViewRepo.scala │ │ │ ├── PrViewRepoImpl.scala │ │ │ └── PrViewRow.scala │ │ ├── psc │ │ │ ├── PscViewFields.scala │ │ │ ├── PscViewRepo.scala │ │ │ ├── PscViewRepoImpl.scala │ │ │ └── PscViewRow.scala │ │ ├── sr │ │ │ ├── SrViewFields.scala │ │ │ ├── SrViewRepo.scala │ │ │ ├── SrViewRepoImpl.scala │ │ │ └── SrViewRow.scala │ │ ├── th │ │ │ ├── ThViewFields.scala │ │ │ ├── ThViewRepo.scala │ │ │ ├── ThViewRepoImpl.scala │ │ │ └── ThViewRow.scala │ │ ├── tha │ │ │ ├── ThaViewFields.scala │ │ │ ├── ThaViewRepo.scala │ │ │ ├── ThaViewRepoImpl.scala │ │ │ └── ThaViewRow.scala │ │ ├── um │ │ │ ├── UmViewFields.scala │ │ │ ├── UmViewRepo.scala │ │ │ ├── UmViewRepoImpl.scala │ │ │ └── UmViewRow.scala │ │ ├── w │ │ │ ├── WViewFields.scala │ │ │ ├── WViewRepo.scala │ │ │ ├── WViewRepoImpl.scala │ │ │ └── WViewRow.scala │ │ └── wr │ │ │ ├── WrViewFields.scala │ │ │ ├── WrViewRepo.scala │ │ │ ├── WrViewRepoImpl.scala │ │ │ └── WrViewRow.scala │ │ ├── production │ │ ├── billofmaterials │ │ │ ├── BillofmaterialsFields.scala │ │ │ ├── BillofmaterialsRepo.scala │ │ │ ├── BillofmaterialsRepoImpl.scala │ │ │ ├── BillofmaterialsRepoMock.scala │ │ │ ├── BillofmaterialsRow.scala │ │ │ └── BillofmaterialsRowUnsaved.scala │ │ ├── culture │ │ │ ├── CultureFields.scala │ │ │ ├── CultureId.scala │ │ │ ├── CultureRepo.scala │ │ │ ├── CultureRepoImpl.scala │ │ │ ├── CultureRepoMock.scala │ │ │ ├── CultureRow.scala │ │ │ └── CultureRowUnsaved.scala │ │ ├── document │ │ │ ├── DocumentFields.scala │ │ │ ├── DocumentId.scala │ │ │ ├── DocumentRepo.scala │ │ │ ├── DocumentRepoImpl.scala │ │ │ ├── DocumentRepoMock.scala │ │ │ ├── DocumentRow.scala │ │ │ └── DocumentRowUnsaved.scala │ │ ├── illustration │ │ │ ├── IllustrationFields.scala │ │ │ ├── IllustrationId.scala │ │ │ ├── IllustrationRepo.scala │ │ │ ├── IllustrationRepoImpl.scala │ │ │ ├── IllustrationRepoMock.scala │ │ │ ├── IllustrationRow.scala │ │ │ └── IllustrationRowUnsaved.scala │ │ ├── location │ │ │ ├── LocationFields.scala │ │ │ ├── LocationId.scala │ │ │ ├── LocationRepo.scala │ │ │ ├── LocationRepoImpl.scala │ │ │ ├── LocationRepoMock.scala │ │ │ ├── LocationRow.scala │ │ │ └── LocationRowUnsaved.scala │ │ ├── product │ │ │ ├── ProductFields.scala │ │ │ ├── ProductId.scala │ │ │ ├── ProductRepo.scala │ │ │ ├── ProductRepoImpl.scala │ │ │ ├── ProductRepoMock.scala │ │ │ ├── ProductRow.scala │ │ │ └── ProductRowUnsaved.scala │ │ ├── productcategory │ │ │ ├── ProductcategoryFields.scala │ │ │ ├── ProductcategoryId.scala │ │ │ ├── ProductcategoryRepo.scala │ │ │ ├── ProductcategoryRepoImpl.scala │ │ │ ├── ProductcategoryRepoMock.scala │ │ │ ├── ProductcategoryRow.scala │ │ │ └── ProductcategoryRowUnsaved.scala │ │ ├── productcosthistory │ │ │ ├── ProductcosthistoryFields.scala │ │ │ ├── ProductcosthistoryId.scala │ │ │ ├── ProductcosthistoryRepo.scala │ │ │ ├── ProductcosthistoryRepoImpl.scala │ │ │ ├── ProductcosthistoryRepoMock.scala │ │ │ ├── ProductcosthistoryRow.scala │ │ │ └── ProductcosthistoryRowUnsaved.scala │ │ ├── productdescription │ │ │ ├── ProductdescriptionFields.scala │ │ │ ├── ProductdescriptionId.scala │ │ │ ├── ProductdescriptionRepo.scala │ │ │ ├── ProductdescriptionRepoImpl.scala │ │ │ ├── ProductdescriptionRepoMock.scala │ │ │ ├── ProductdescriptionRow.scala │ │ │ └── ProductdescriptionRowUnsaved.scala │ │ ├── productdocument │ │ │ ├── ProductdocumentFields.scala │ │ │ ├── ProductdocumentId.scala │ │ │ ├── ProductdocumentRepo.scala │ │ │ ├── ProductdocumentRepoImpl.scala │ │ │ ├── ProductdocumentRepoMock.scala │ │ │ ├── ProductdocumentRow.scala │ │ │ └── ProductdocumentRowUnsaved.scala │ │ ├── productinventory │ │ │ ├── ProductinventoryFields.scala │ │ │ ├── ProductinventoryId.scala │ │ │ ├── ProductinventoryRepo.scala │ │ │ ├── ProductinventoryRepoImpl.scala │ │ │ ├── ProductinventoryRepoMock.scala │ │ │ ├── ProductinventoryRow.scala │ │ │ └── ProductinventoryRowUnsaved.scala │ │ ├── productlistpricehistory │ │ │ ├── ProductlistpricehistoryFields.scala │ │ │ ├── ProductlistpricehistoryId.scala │ │ │ ├── ProductlistpricehistoryRepo.scala │ │ │ ├── ProductlistpricehistoryRepoImpl.scala │ │ │ ├── ProductlistpricehistoryRepoMock.scala │ │ │ ├── ProductlistpricehistoryRow.scala │ │ │ └── ProductlistpricehistoryRowUnsaved.scala │ │ ├── productmodel │ │ │ ├── ProductmodelFields.scala │ │ │ ├── ProductmodelId.scala │ │ │ ├── ProductmodelRepo.scala │ │ │ ├── ProductmodelRepoImpl.scala │ │ │ ├── ProductmodelRepoMock.scala │ │ │ ├── ProductmodelRow.scala │ │ │ └── ProductmodelRowUnsaved.scala │ │ ├── productmodelillustration │ │ │ ├── ProductmodelillustrationFields.scala │ │ │ ├── ProductmodelillustrationId.scala │ │ │ ├── ProductmodelillustrationRepo.scala │ │ │ ├── ProductmodelillustrationRepoImpl.scala │ │ │ ├── ProductmodelillustrationRepoMock.scala │ │ │ ├── ProductmodelillustrationRow.scala │ │ │ └── ProductmodelillustrationRowUnsaved.scala │ │ ├── productmodelproductdescriptionculture │ │ │ ├── ProductmodelproductdescriptioncultureFields.scala │ │ │ ├── ProductmodelproductdescriptioncultureId.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepo.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepoImpl.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepoMock.scala │ │ │ ├── ProductmodelproductdescriptioncultureRow.scala │ │ │ └── ProductmodelproductdescriptioncultureRowUnsaved.scala │ │ ├── productphoto │ │ │ ├── ProductphotoFields.scala │ │ │ ├── ProductphotoId.scala │ │ │ ├── ProductphotoRepo.scala │ │ │ ├── ProductphotoRepoImpl.scala │ │ │ ├── ProductphotoRepoMock.scala │ │ │ ├── ProductphotoRow.scala │ │ │ └── ProductphotoRowUnsaved.scala │ │ ├── productproductphoto │ │ │ ├── ProductproductphotoFields.scala │ │ │ ├── ProductproductphotoId.scala │ │ │ ├── ProductproductphotoRepo.scala │ │ │ ├── ProductproductphotoRepoImpl.scala │ │ │ ├── ProductproductphotoRepoMock.scala │ │ │ ├── ProductproductphotoRow.scala │ │ │ └── ProductproductphotoRowUnsaved.scala │ │ ├── productreview │ │ │ ├── ProductreviewFields.scala │ │ │ ├── ProductreviewId.scala │ │ │ ├── ProductreviewRepo.scala │ │ │ ├── ProductreviewRepoImpl.scala │ │ │ ├── ProductreviewRepoMock.scala │ │ │ ├── ProductreviewRow.scala │ │ │ └── ProductreviewRowUnsaved.scala │ │ ├── productsubcategory │ │ │ ├── ProductsubcategoryFields.scala │ │ │ ├── ProductsubcategoryId.scala │ │ │ ├── ProductsubcategoryRepo.scala │ │ │ ├── ProductsubcategoryRepoImpl.scala │ │ │ ├── ProductsubcategoryRepoMock.scala │ │ │ ├── ProductsubcategoryRow.scala │ │ │ └── ProductsubcategoryRowUnsaved.scala │ │ ├── scrapreason │ │ │ ├── ScrapreasonFields.scala │ │ │ ├── ScrapreasonId.scala │ │ │ ├── ScrapreasonRepo.scala │ │ │ ├── ScrapreasonRepoImpl.scala │ │ │ ├── ScrapreasonRepoMock.scala │ │ │ ├── ScrapreasonRow.scala │ │ │ └── ScrapreasonRowUnsaved.scala │ │ ├── transactionhistory │ │ │ ├── TransactionhistoryFields.scala │ │ │ ├── TransactionhistoryId.scala │ │ │ ├── TransactionhistoryRepo.scala │ │ │ ├── TransactionhistoryRepoImpl.scala │ │ │ ├── TransactionhistoryRepoMock.scala │ │ │ ├── TransactionhistoryRow.scala │ │ │ └── TransactionhistoryRowUnsaved.scala │ │ ├── transactionhistoryarchive │ │ │ ├── TransactionhistoryarchiveFields.scala │ │ │ ├── TransactionhistoryarchiveId.scala │ │ │ ├── TransactionhistoryarchiveRepo.scala │ │ │ ├── TransactionhistoryarchiveRepoImpl.scala │ │ │ ├── TransactionhistoryarchiveRepoMock.scala │ │ │ ├── TransactionhistoryarchiveRow.scala │ │ │ └── TransactionhistoryarchiveRowUnsaved.scala │ │ ├── unitmeasure │ │ │ ├── UnitmeasureFields.scala │ │ │ ├── UnitmeasureId.scala │ │ │ ├── UnitmeasureRepo.scala │ │ │ ├── UnitmeasureRepoImpl.scala │ │ │ ├── UnitmeasureRepoMock.scala │ │ │ ├── UnitmeasureRow.scala │ │ │ └── UnitmeasureRowUnsaved.scala │ │ ├── vproductanddescription │ │ │ ├── VproductanddescriptionMVFields.scala │ │ │ ├── VproductanddescriptionMVRepo.scala │ │ │ ├── VproductanddescriptionMVRepoImpl.scala │ │ │ └── VproductanddescriptionMVRow.scala │ │ ├── vproductmodelcatalogdescription │ │ │ ├── VproductmodelcatalogdescriptionViewFields.scala │ │ │ ├── VproductmodelcatalogdescriptionViewRepo.scala │ │ │ ├── VproductmodelcatalogdescriptionViewRepoImpl.scala │ │ │ └── VproductmodelcatalogdescriptionViewRow.scala │ │ ├── vproductmodelinstructions │ │ │ ├── VproductmodelinstructionsViewFields.scala │ │ │ ├── VproductmodelinstructionsViewRepo.scala │ │ │ ├── VproductmodelinstructionsViewRepoImpl.scala │ │ │ └── VproductmodelinstructionsViewRow.scala │ │ ├── workorder │ │ │ ├── WorkorderFields.scala │ │ │ ├── WorkorderId.scala │ │ │ ├── WorkorderRepo.scala │ │ │ ├── WorkorderRepoImpl.scala │ │ │ ├── WorkorderRepoMock.scala │ │ │ ├── WorkorderRow.scala │ │ │ └── WorkorderRowUnsaved.scala │ │ └── workorderrouting │ │ │ ├── WorkorderroutingFields.scala │ │ │ ├── WorkorderroutingId.scala │ │ │ ├── WorkorderroutingRepo.scala │ │ │ ├── WorkorderroutingRepoImpl.scala │ │ │ ├── WorkorderroutingRepoMock.scala │ │ │ ├── WorkorderroutingRow.scala │ │ │ └── WorkorderroutingRowUnsaved.scala │ │ ├── pu │ │ ├── pod │ │ │ ├── PodViewFields.scala │ │ │ ├── PodViewRepo.scala │ │ │ ├── PodViewRepoImpl.scala │ │ │ └── PodViewRow.scala │ │ ├── poh │ │ │ ├── PohViewFields.scala │ │ │ ├── PohViewRepo.scala │ │ │ ├── PohViewRepoImpl.scala │ │ │ └── PohViewRow.scala │ │ ├── pv │ │ │ ├── PvViewFields.scala │ │ │ ├── PvViewRepo.scala │ │ │ ├── PvViewRepoImpl.scala │ │ │ └── PvViewRow.scala │ │ ├── sm │ │ │ ├── SmViewFields.scala │ │ │ ├── SmViewRepo.scala │ │ │ ├── SmViewRepoImpl.scala │ │ │ └── SmViewRow.scala │ │ └── v │ │ │ ├── VViewFields.scala │ │ │ ├── VViewRepo.scala │ │ │ ├── VViewRepoImpl.scala │ │ │ └── VViewRow.scala │ │ ├── public │ │ ├── AccountNumber.scala │ │ ├── Flag.scala │ │ ├── Mydomain.scala │ │ ├── Myenum.scala │ │ ├── Name.scala │ │ ├── NameStyle.scala │ │ ├── OrderNumber.scala │ │ ├── Phone.scala │ │ ├── ShortText.scala │ │ ├── flaff │ │ │ ├── FlaffFields.scala │ │ │ ├── FlaffId.scala │ │ │ ├── FlaffRepo.scala │ │ │ ├── FlaffRepoImpl.scala │ │ │ ├── FlaffRepoMock.scala │ │ │ └── FlaffRow.scala │ │ ├── identity_test │ │ │ ├── IdentityTestFields.scala │ │ │ ├── IdentityTestId.scala │ │ │ ├── IdentityTestRepo.scala │ │ │ ├── IdentityTestRepoImpl.scala │ │ │ ├── IdentityTestRepoMock.scala │ │ │ ├── IdentityTestRow.scala │ │ │ └── IdentityTestRowUnsaved.scala │ │ ├── issue142 │ │ │ ├── Issue142Fields.scala │ │ │ ├── Issue142Id.scala │ │ │ ├── Issue142Repo.scala │ │ │ ├── Issue142RepoImpl.scala │ │ │ ├── Issue142RepoMock.scala │ │ │ └── Issue142Row.scala │ │ ├── issue142_2 │ │ │ ├── Issue1422Fields.scala │ │ │ ├── Issue1422Repo.scala │ │ │ ├── Issue1422RepoImpl.scala │ │ │ ├── Issue1422RepoMock.scala │ │ │ └── Issue1422Row.scala │ │ ├── only_pk_columns │ │ │ ├── OnlyPkColumnsFields.scala │ │ │ ├── OnlyPkColumnsId.scala │ │ │ ├── OnlyPkColumnsRepo.scala │ │ │ ├── OnlyPkColumnsRepoImpl.scala │ │ │ ├── OnlyPkColumnsRepoMock.scala │ │ │ └── OnlyPkColumnsRow.scala │ │ ├── pgtest │ │ │ ├── PgtestFields.scala │ │ │ ├── PgtestRepo.scala │ │ │ ├── PgtestRepoImpl.scala │ │ │ └── PgtestRow.scala │ │ ├── pgtestnull │ │ │ ├── PgtestnullFields.scala │ │ │ ├── PgtestnullRepo.scala │ │ │ ├── PgtestnullRepoImpl.scala │ │ │ └── PgtestnullRow.scala │ │ ├── table_with_generated_columns │ │ │ ├── TableWithGeneratedColumnsFields.scala │ │ │ ├── TableWithGeneratedColumnsId.scala │ │ │ ├── TableWithGeneratedColumnsRepo.scala │ │ │ ├── TableWithGeneratedColumnsRepoImpl.scala │ │ │ ├── TableWithGeneratedColumnsRepoMock.scala │ │ │ ├── TableWithGeneratedColumnsRow.scala │ │ │ └── TableWithGeneratedColumnsRowUnsaved.scala │ │ ├── test_organisasjon │ │ │ ├── TestOrganisasjonFields.scala │ │ │ ├── TestOrganisasjonId.scala │ │ │ ├── TestOrganisasjonRepo.scala │ │ │ ├── TestOrganisasjonRepoImpl.scala │ │ │ ├── TestOrganisasjonRepoMock.scala │ │ │ └── TestOrganisasjonRow.scala │ │ ├── test_sak_soknadsalternativ │ │ │ ├── TestSakSoknadsalternativFields.scala │ │ │ ├── TestSakSoknadsalternativId.scala │ │ │ ├── TestSakSoknadsalternativRepo.scala │ │ │ ├── TestSakSoknadsalternativRepoImpl.scala │ │ │ ├── TestSakSoknadsalternativRepoMock.scala │ │ │ └── TestSakSoknadsalternativRow.scala │ │ ├── test_utdanningstilbud │ │ │ ├── TestUtdanningstilbudFields.scala │ │ │ ├── TestUtdanningstilbudId.scala │ │ │ ├── TestUtdanningstilbudRepo.scala │ │ │ ├── TestUtdanningstilbudRepoImpl.scala │ │ │ ├── TestUtdanningstilbudRepoMock.scala │ │ │ └── TestUtdanningstilbudRow.scala │ │ ├── title │ │ │ ├── TitleFields.scala │ │ │ ├── TitleId.scala │ │ │ ├── TitleRepo.scala │ │ │ ├── TitleRepoImpl.scala │ │ │ ├── TitleRepoMock.scala │ │ │ └── TitleRow.scala │ │ ├── title_domain │ │ │ ├── TitleDomainFields.scala │ │ │ ├── TitleDomainId.scala │ │ │ ├── TitleDomainRepo.scala │ │ │ ├── TitleDomainRepoImpl.scala │ │ │ ├── TitleDomainRepoMock.scala │ │ │ └── TitleDomainRow.scala │ │ ├── titledperson │ │ │ ├── TitledpersonFields.scala │ │ │ ├── TitledpersonRepo.scala │ │ │ ├── TitledpersonRepoImpl.scala │ │ │ └── TitledpersonRow.scala │ │ └── users │ │ │ ├── UsersFields.scala │ │ │ ├── UsersId.scala │ │ │ ├── UsersRepo.scala │ │ │ ├── UsersRepoImpl.scala │ │ │ ├── UsersRepoMock.scala │ │ │ ├── UsersRow.scala │ │ │ └── UsersRowUnsaved.scala │ │ ├── purchasing │ │ ├── productvendor │ │ │ ├── ProductvendorFields.scala │ │ │ ├── ProductvendorId.scala │ │ │ ├── ProductvendorRepo.scala │ │ │ ├── ProductvendorRepoImpl.scala │ │ │ ├── ProductvendorRepoMock.scala │ │ │ ├── ProductvendorRow.scala │ │ │ └── ProductvendorRowUnsaved.scala │ │ ├── purchaseorderdetail │ │ │ ├── PurchaseorderdetailFields.scala │ │ │ ├── PurchaseorderdetailId.scala │ │ │ ├── PurchaseorderdetailRepo.scala │ │ │ ├── PurchaseorderdetailRepoImpl.scala │ │ │ ├── PurchaseorderdetailRow.scala │ │ │ └── PurchaseorderdetailRowUnsaved.scala │ │ ├── purchaseorderheader │ │ │ ├── PurchaseorderheaderFields.scala │ │ │ ├── PurchaseorderheaderId.scala │ │ │ ├── PurchaseorderheaderRepo.scala │ │ │ ├── PurchaseorderheaderRepoImpl.scala │ │ │ ├── PurchaseorderheaderRepoMock.scala │ │ │ ├── PurchaseorderheaderRow.scala │ │ │ └── PurchaseorderheaderRowUnsaved.scala │ │ ├── shipmethod │ │ │ ├── ShipmethodFields.scala │ │ │ ├── ShipmethodId.scala │ │ │ ├── ShipmethodRepo.scala │ │ │ ├── ShipmethodRepoImpl.scala │ │ │ ├── ShipmethodRepoMock.scala │ │ │ ├── ShipmethodRow.scala │ │ │ └── ShipmethodRowUnsaved.scala │ │ ├── vendor │ │ │ ├── VendorFields.scala │ │ │ ├── VendorRepo.scala │ │ │ ├── VendorRepoImpl.scala │ │ │ ├── VendorRepoMock.scala │ │ │ ├── VendorRow.scala │ │ │ └── VendorRowUnsaved.scala │ │ ├── vvendorwithaddresses │ │ │ ├── VvendorwithaddressesViewFields.scala │ │ │ ├── VvendorwithaddressesViewRepo.scala │ │ │ ├── VvendorwithaddressesViewRepoImpl.scala │ │ │ └── VvendorwithaddressesViewRow.scala │ │ └── vvendorwithcontacts │ │ │ ├── VvendorwithcontactsViewFields.scala │ │ │ ├── VvendorwithcontactsViewRepo.scala │ │ │ ├── VvendorwithcontactsViewRepoImpl.scala │ │ │ └── VvendorwithcontactsViewRow.scala │ │ ├── sa │ │ ├── c │ │ │ ├── CViewFields.scala │ │ │ ├── CViewRepo.scala │ │ │ ├── CViewRepoImpl.scala │ │ │ └── CViewRow.scala │ │ ├── cc │ │ │ ├── CcViewFields.scala │ │ │ ├── CcViewRepo.scala │ │ │ ├── CcViewRepoImpl.scala │ │ │ └── CcViewRow.scala │ │ ├── cr │ │ │ ├── CrViewFields.scala │ │ │ ├── CrViewRepo.scala │ │ │ ├── CrViewRepoImpl.scala │ │ │ └── CrViewRow.scala │ │ ├── crc │ │ │ ├── CrcViewFields.scala │ │ │ ├── CrcViewRepo.scala │ │ │ ├── CrcViewRepoImpl.scala │ │ │ └── CrcViewRow.scala │ │ ├── cu │ │ │ ├── CuViewFields.scala │ │ │ ├── CuViewRepo.scala │ │ │ ├── CuViewRepoImpl.scala │ │ │ └── CuViewRow.scala │ │ ├── pcc │ │ │ ├── PccViewFields.scala │ │ │ ├── PccViewRepo.scala │ │ │ ├── PccViewRepoImpl.scala │ │ │ └── PccViewRow.scala │ │ ├── s │ │ │ ├── SViewFields.scala │ │ │ ├── SViewRepo.scala │ │ │ ├── SViewRepoImpl.scala │ │ │ └── SViewRow.scala │ │ ├── sci │ │ │ ├── SciViewFields.scala │ │ │ ├── SciViewRepo.scala │ │ │ ├── SciViewRepoImpl.scala │ │ │ └── SciViewRow.scala │ │ ├── so │ │ │ ├── SoViewFields.scala │ │ │ ├── SoViewRepo.scala │ │ │ ├── SoViewRepoImpl.scala │ │ │ └── SoViewRow.scala │ │ ├── sod │ │ │ ├── SodViewFields.scala │ │ │ ├── SodViewRepo.scala │ │ │ ├── SodViewRepoImpl.scala │ │ │ └── SodViewRow.scala │ │ ├── soh │ │ │ ├── SohViewFields.scala │ │ │ ├── SohViewRepo.scala │ │ │ ├── SohViewRepoImpl.scala │ │ │ └── SohViewRow.scala │ │ ├── sohsr │ │ │ ├── SohsrViewFields.scala │ │ │ ├── SohsrViewRepo.scala │ │ │ ├── SohsrViewRepoImpl.scala │ │ │ └── SohsrViewRow.scala │ │ ├── sop │ │ │ ├── SopViewFields.scala │ │ │ ├── SopViewRepo.scala │ │ │ ├── SopViewRepoImpl.scala │ │ │ └── SopViewRow.scala │ │ ├── sp │ │ │ ├── SpViewFields.scala │ │ │ ├── SpViewRepo.scala │ │ │ ├── SpViewRepoImpl.scala │ │ │ └── SpViewRow.scala │ │ ├── spqh │ │ │ ├── SpqhViewFields.scala │ │ │ ├── SpqhViewRepo.scala │ │ │ ├── SpqhViewRepoImpl.scala │ │ │ └── SpqhViewRow.scala │ │ ├── sr │ │ │ ├── SrViewFields.scala │ │ │ ├── SrViewRepo.scala │ │ │ ├── SrViewRepoImpl.scala │ │ │ └── SrViewRow.scala │ │ ├── st │ │ │ ├── StViewFields.scala │ │ │ ├── StViewRepo.scala │ │ │ ├── StViewRepoImpl.scala │ │ │ └── StViewRow.scala │ │ ├── sth │ │ │ ├── SthViewFields.scala │ │ │ ├── SthViewRepo.scala │ │ │ ├── SthViewRepoImpl.scala │ │ │ └── SthViewRow.scala │ │ └── tr │ │ │ ├── TrViewFields.scala │ │ │ ├── TrViewRepo.scala │ │ │ ├── TrViewRepoImpl.scala │ │ │ └── TrViewRow.scala │ │ ├── sales │ │ ├── countryregioncurrency │ │ │ ├── CountryregioncurrencyFields.scala │ │ │ ├── CountryregioncurrencyId.scala │ │ │ ├── CountryregioncurrencyRepo.scala │ │ │ ├── CountryregioncurrencyRepoImpl.scala │ │ │ ├── CountryregioncurrencyRepoMock.scala │ │ │ ├── CountryregioncurrencyRow.scala │ │ │ └── CountryregioncurrencyRowUnsaved.scala │ │ ├── creditcard │ │ │ ├── CreditcardFields.scala │ │ │ ├── CreditcardRepo.scala │ │ │ ├── CreditcardRepoImpl.scala │ │ │ ├── CreditcardRepoMock.scala │ │ │ ├── CreditcardRow.scala │ │ │ └── CreditcardRowUnsaved.scala │ │ ├── currency │ │ │ ├── CurrencyFields.scala │ │ │ ├── CurrencyId.scala │ │ │ ├── CurrencyRepo.scala │ │ │ ├── CurrencyRepoImpl.scala │ │ │ ├── CurrencyRepoMock.scala │ │ │ ├── CurrencyRow.scala │ │ │ └── CurrencyRowUnsaved.scala │ │ ├── currencyrate │ │ │ ├── CurrencyrateFields.scala │ │ │ ├── CurrencyrateId.scala │ │ │ ├── CurrencyrateRepo.scala │ │ │ ├── CurrencyrateRepoImpl.scala │ │ │ ├── CurrencyrateRepoMock.scala │ │ │ ├── CurrencyrateRow.scala │ │ │ └── CurrencyrateRowUnsaved.scala │ │ ├── customer │ │ │ ├── CustomerFields.scala │ │ │ ├── CustomerId.scala │ │ │ ├── CustomerRepo.scala │ │ │ ├── CustomerRepoImpl.scala │ │ │ ├── CustomerRepoMock.scala │ │ │ ├── CustomerRow.scala │ │ │ └── CustomerRowUnsaved.scala │ │ ├── personcreditcard │ │ │ ├── PersoncreditcardFields.scala │ │ │ ├── PersoncreditcardId.scala │ │ │ ├── PersoncreditcardRepo.scala │ │ │ ├── PersoncreditcardRepoImpl.scala │ │ │ ├── PersoncreditcardRepoMock.scala │ │ │ ├── PersoncreditcardRow.scala │ │ │ └── PersoncreditcardRowUnsaved.scala │ │ ├── salesorderdetail │ │ │ ├── SalesorderdetailFields.scala │ │ │ ├── SalesorderdetailId.scala │ │ │ ├── SalesorderdetailRepo.scala │ │ │ ├── SalesorderdetailRepoImpl.scala │ │ │ ├── SalesorderdetailRepoMock.scala │ │ │ ├── SalesorderdetailRow.scala │ │ │ └── SalesorderdetailRowUnsaved.scala │ │ ├── salesorderheader │ │ │ ├── SalesorderheaderFields.scala │ │ │ ├── SalesorderheaderId.scala │ │ │ ├── SalesorderheaderRepo.scala │ │ │ ├── SalesorderheaderRepoImpl.scala │ │ │ ├── SalesorderheaderRepoMock.scala │ │ │ ├── SalesorderheaderRow.scala │ │ │ └── SalesorderheaderRowUnsaved.scala │ │ ├── salesorderheadersalesreason │ │ │ ├── SalesorderheadersalesreasonFields.scala │ │ │ ├── SalesorderheadersalesreasonId.scala │ │ │ ├── SalesorderheadersalesreasonRepo.scala │ │ │ ├── SalesorderheadersalesreasonRepoImpl.scala │ │ │ ├── SalesorderheadersalesreasonRepoMock.scala │ │ │ ├── SalesorderheadersalesreasonRow.scala │ │ │ └── SalesorderheadersalesreasonRowUnsaved.scala │ │ ├── salesperson │ │ │ ├── SalespersonFields.scala │ │ │ ├── SalespersonRepo.scala │ │ │ ├── SalespersonRepoImpl.scala │ │ │ ├── SalespersonRepoMock.scala │ │ │ ├── SalespersonRow.scala │ │ │ └── SalespersonRowUnsaved.scala │ │ ├── salespersonquotahistory │ │ │ ├── SalespersonquotahistoryFields.scala │ │ │ ├── SalespersonquotahistoryId.scala │ │ │ ├── SalespersonquotahistoryRepo.scala │ │ │ ├── SalespersonquotahistoryRepoImpl.scala │ │ │ ├── SalespersonquotahistoryRepoMock.scala │ │ │ ├── SalespersonquotahistoryRow.scala │ │ │ └── SalespersonquotahistoryRowUnsaved.scala │ │ ├── salesreason │ │ │ ├── SalesreasonFields.scala │ │ │ ├── SalesreasonId.scala │ │ │ ├── SalesreasonRepo.scala │ │ │ ├── SalesreasonRepoImpl.scala │ │ │ ├── SalesreasonRepoMock.scala │ │ │ ├── SalesreasonRow.scala │ │ │ └── SalesreasonRowUnsaved.scala │ │ ├── salestaxrate │ │ │ ├── SalestaxrateFields.scala │ │ │ ├── SalestaxrateId.scala │ │ │ ├── SalestaxrateRepo.scala │ │ │ ├── SalestaxrateRepoImpl.scala │ │ │ ├── SalestaxrateRepoMock.scala │ │ │ ├── SalestaxrateRow.scala │ │ │ └── SalestaxrateRowUnsaved.scala │ │ ├── salesterritory │ │ │ ├── SalesterritoryFields.scala │ │ │ ├── SalesterritoryId.scala │ │ │ ├── SalesterritoryRepo.scala │ │ │ ├── SalesterritoryRepoImpl.scala │ │ │ ├── SalesterritoryRepoMock.scala │ │ │ ├── SalesterritoryRow.scala │ │ │ └── SalesterritoryRowUnsaved.scala │ │ ├── salesterritoryhistory │ │ │ ├── SalesterritoryhistoryFields.scala │ │ │ ├── SalesterritoryhistoryId.scala │ │ │ ├── SalesterritoryhistoryRepo.scala │ │ │ ├── SalesterritoryhistoryRepoImpl.scala │ │ │ ├── SalesterritoryhistoryRepoMock.scala │ │ │ ├── SalesterritoryhistoryRow.scala │ │ │ └── SalesterritoryhistoryRowUnsaved.scala │ │ ├── shoppingcartitem │ │ │ ├── ShoppingcartitemFields.scala │ │ │ ├── ShoppingcartitemId.scala │ │ │ ├── ShoppingcartitemRepo.scala │ │ │ ├── ShoppingcartitemRepoImpl.scala │ │ │ ├── ShoppingcartitemRepoMock.scala │ │ │ ├── ShoppingcartitemRow.scala │ │ │ └── ShoppingcartitemRowUnsaved.scala │ │ ├── specialoffer │ │ │ ├── SpecialofferFields.scala │ │ │ ├── SpecialofferId.scala │ │ │ ├── SpecialofferRepo.scala │ │ │ ├── SpecialofferRepoImpl.scala │ │ │ ├── SpecialofferRepoMock.scala │ │ │ ├── SpecialofferRow.scala │ │ │ └── SpecialofferRowUnsaved.scala │ │ ├── specialofferproduct │ │ │ ├── SpecialofferproductFields.scala │ │ │ ├── SpecialofferproductId.scala │ │ │ ├── SpecialofferproductRepo.scala │ │ │ ├── SpecialofferproductRepoImpl.scala │ │ │ ├── SpecialofferproductRepoMock.scala │ │ │ ├── SpecialofferproductRow.scala │ │ │ └── SpecialofferproductRowUnsaved.scala │ │ ├── store │ │ │ ├── StoreFields.scala │ │ │ ├── StoreRepo.scala │ │ │ ├── StoreRepoImpl.scala │ │ │ ├── StoreRepoMock.scala │ │ │ ├── StoreRow.scala │ │ │ └── StoreRowUnsaved.scala │ │ ├── vindividualcustomer │ │ │ ├── VindividualcustomerViewFields.scala │ │ │ ├── VindividualcustomerViewRepo.scala │ │ │ ├── VindividualcustomerViewRepoImpl.scala │ │ │ └── VindividualcustomerViewRow.scala │ │ ├── vpersondemographics │ │ │ ├── VpersondemographicsViewFields.scala │ │ │ ├── VpersondemographicsViewRepo.scala │ │ │ ├── VpersondemographicsViewRepoImpl.scala │ │ │ └── VpersondemographicsViewRow.scala │ │ ├── vsalesperson │ │ │ ├── VsalespersonViewFields.scala │ │ │ ├── VsalespersonViewRepo.scala │ │ │ ├── VsalespersonViewRepoImpl.scala │ │ │ └── VsalespersonViewRow.scala │ │ ├── vsalespersonsalesbyfiscalyears │ │ │ ├── VsalespersonsalesbyfiscalyearsViewFields.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepo.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepoImpl.scala │ │ │ └── VsalespersonsalesbyfiscalyearsViewRow.scala │ │ ├── vsalespersonsalesbyfiscalyearsdata │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewFields.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepo.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepoImpl.scala │ │ │ └── VsalespersonsalesbyfiscalyearsdataViewRow.scala │ │ ├── vstorewithaddresses │ │ │ ├── VstorewithaddressesViewFields.scala │ │ │ ├── VstorewithaddressesViewRepo.scala │ │ │ ├── VstorewithaddressesViewRepoImpl.scala │ │ │ └── VstorewithaddressesViewRow.scala │ │ ├── vstorewithcontacts │ │ │ ├── VstorewithcontactsViewFields.scala │ │ │ ├── VstorewithcontactsViewRepo.scala │ │ │ ├── VstorewithcontactsViewRepoImpl.scala │ │ │ └── VstorewithcontactsViewRow.scala │ │ └── vstorewithdemographics │ │ │ ├── VstorewithdemographicsViewFields.scala │ │ │ ├── VstorewithdemographicsViewRepo.scala │ │ │ ├── VstorewithdemographicsViewRepoImpl.scala │ │ │ └── VstorewithdemographicsViewRow.scala │ │ ├── streamingInsert.scala │ │ ├── update_person │ │ ├── UpdatePersonSqlRepo.scala │ │ └── UpdatePersonSqlRepoImpl.scala │ │ └── update_person_returning │ │ ├── UpdatePersonReturningSqlRepo.scala │ │ ├── UpdatePersonReturningSqlRepoImpl.scala │ │ └── UpdatePersonReturningSqlRow.scala ├── generated-and-checked-in-3 │ └── adventureworks │ │ ├── TestDomainInsert.scala │ │ ├── TestInsert.scala │ │ ├── Text.scala │ │ ├── customtypes │ │ ├── Defaulted.scala │ │ ├── TypoBox.scala │ │ ├── TypoBytea.scala │ │ ├── TypoCircle.scala │ │ ├── TypoHStore.scala │ │ ├── TypoInet.scala │ │ ├── TypoInstant.scala │ │ ├── TypoInt2Vector.scala │ │ ├── TypoInterval.scala │ │ ├── TypoJson.scala │ │ ├── TypoJsonb.scala │ │ ├── TypoLine.scala │ │ ├── TypoLineSegment.scala │ │ ├── TypoLocalDate.scala │ │ ├── TypoLocalDateTime.scala │ │ ├── TypoLocalTime.scala │ │ ├── TypoMoney.scala │ │ ├── TypoOffsetTime.scala │ │ ├── TypoPath.scala │ │ ├── TypoPoint.scala │ │ ├── TypoPolygon.scala │ │ ├── TypoRecord.scala │ │ ├── TypoShort.scala │ │ ├── TypoUUID.scala │ │ ├── TypoUnknownCitext.scala │ │ ├── TypoVector.scala │ │ └── TypoXml.scala │ │ ├── frontpage │ │ └── Email.scala │ │ ├── hr │ │ ├── d │ │ │ ├── DViewFields.scala │ │ │ ├── DViewRepo.scala │ │ │ ├── DViewRepoImpl.scala │ │ │ └── DViewRow.scala │ │ ├── e │ │ │ ├── EViewFields.scala │ │ │ ├── EViewRepo.scala │ │ │ ├── EViewRepoImpl.scala │ │ │ └── EViewRow.scala │ │ ├── edh │ │ │ ├── EdhViewFields.scala │ │ │ ├── EdhViewRepo.scala │ │ │ ├── EdhViewRepoImpl.scala │ │ │ └── EdhViewRow.scala │ │ ├── eph │ │ │ ├── EphViewFields.scala │ │ │ ├── EphViewRepo.scala │ │ │ ├── EphViewRepoImpl.scala │ │ │ └── EphViewRow.scala │ │ ├── jc │ │ │ ├── JcViewFields.scala │ │ │ ├── JcViewRepo.scala │ │ │ ├── JcViewRepoImpl.scala │ │ │ └── JcViewRow.scala │ │ └── s │ │ │ ├── SViewFields.scala │ │ │ ├── SViewRepo.scala │ │ │ ├── SViewRepoImpl.scala │ │ │ └── SViewRow.scala │ │ ├── humanresources │ │ ├── department │ │ │ ├── DepartmentFields.scala │ │ │ ├── DepartmentId.scala │ │ │ ├── DepartmentRepo.scala │ │ │ ├── DepartmentRepoImpl.scala │ │ │ ├── DepartmentRepoMock.scala │ │ │ ├── DepartmentRow.scala │ │ │ └── DepartmentRowUnsaved.scala │ │ ├── employee │ │ │ ├── EmployeeFields.scala │ │ │ ├── EmployeeRepo.scala │ │ │ ├── EmployeeRepoImpl.scala │ │ │ ├── EmployeeRepoMock.scala │ │ │ ├── EmployeeRow.scala │ │ │ └── EmployeeRowUnsaved.scala │ │ ├── employeedepartmenthistory │ │ │ ├── EmployeedepartmenthistoryFields.scala │ │ │ ├── EmployeedepartmenthistoryId.scala │ │ │ ├── EmployeedepartmenthistoryRepo.scala │ │ │ ├── EmployeedepartmenthistoryRepoImpl.scala │ │ │ ├── EmployeedepartmenthistoryRepoMock.scala │ │ │ ├── EmployeedepartmenthistoryRow.scala │ │ │ └── EmployeedepartmenthistoryRowUnsaved.scala │ │ ├── employeepayhistory │ │ │ ├── EmployeepayhistoryFields.scala │ │ │ ├── EmployeepayhistoryId.scala │ │ │ ├── EmployeepayhistoryRepo.scala │ │ │ ├── EmployeepayhistoryRepoImpl.scala │ │ │ ├── EmployeepayhistoryRepoMock.scala │ │ │ ├── EmployeepayhistoryRow.scala │ │ │ └── EmployeepayhistoryRowUnsaved.scala │ │ ├── jobcandidate │ │ │ ├── JobcandidateFields.scala │ │ │ ├── JobcandidateId.scala │ │ │ ├── JobcandidateRepo.scala │ │ │ ├── JobcandidateRepoImpl.scala │ │ │ ├── JobcandidateRepoMock.scala │ │ │ ├── JobcandidateRow.scala │ │ │ └── JobcandidateRowUnsaved.scala │ │ ├── shift │ │ │ ├── ShiftFields.scala │ │ │ ├── ShiftId.scala │ │ │ ├── ShiftRepo.scala │ │ │ ├── ShiftRepoImpl.scala │ │ │ ├── ShiftRepoMock.scala │ │ │ ├── ShiftRow.scala │ │ │ └── ShiftRowUnsaved.scala │ │ ├── vemployee │ │ │ ├── VemployeeViewFields.scala │ │ │ ├── VemployeeViewRepo.scala │ │ │ ├── VemployeeViewRepoImpl.scala │ │ │ └── VemployeeViewRow.scala │ │ ├── vemployeedepartment │ │ │ ├── VemployeedepartmentViewFields.scala │ │ │ ├── VemployeedepartmentViewRepo.scala │ │ │ ├── VemployeedepartmentViewRepoImpl.scala │ │ │ └── VemployeedepartmentViewRow.scala │ │ ├── vemployeedepartmenthistory │ │ │ ├── VemployeedepartmenthistoryViewFields.scala │ │ │ ├── VemployeedepartmenthistoryViewRepo.scala │ │ │ ├── VemployeedepartmenthistoryViewRepoImpl.scala │ │ │ └── VemployeedepartmenthistoryViewRow.scala │ │ ├── vjobcandidate │ │ │ ├── VjobcandidateViewFields.scala │ │ │ ├── VjobcandidateViewRepo.scala │ │ │ ├── VjobcandidateViewRepoImpl.scala │ │ │ └── VjobcandidateViewRow.scala │ │ ├── vjobcandidateeducation │ │ │ ├── VjobcandidateeducationViewFields.scala │ │ │ ├── VjobcandidateeducationViewRepo.scala │ │ │ ├── VjobcandidateeducationViewRepoImpl.scala │ │ │ └── VjobcandidateeducationViewRow.scala │ │ └── vjobcandidateemployment │ │ │ ├── VjobcandidateemploymentViewFields.scala │ │ │ ├── VjobcandidateemploymentViewRepo.scala │ │ │ ├── VjobcandidateemploymentViewRepoImpl.scala │ │ │ └── VjobcandidateemploymentViewRow.scala │ │ ├── information_schema │ │ ├── CardinalNumber.scala │ │ ├── CharacterData.scala │ │ ├── SqlIdentifier.scala │ │ ├── TimeStamp.scala │ │ └── YesOrNo.scala │ │ ├── package.scala │ │ ├── pe │ │ ├── a │ │ │ ├── AViewFields.scala │ │ │ ├── AViewRepo.scala │ │ │ ├── AViewRepoImpl.scala │ │ │ └── AViewRow.scala │ │ ├── at │ │ │ ├── AtViewFields.scala │ │ │ ├── AtViewRepo.scala │ │ │ ├── AtViewRepoImpl.scala │ │ │ └── AtViewRow.scala │ │ ├── be │ │ │ ├── BeViewFields.scala │ │ │ ├── BeViewRepo.scala │ │ │ ├── BeViewRepoImpl.scala │ │ │ └── BeViewRow.scala │ │ ├── bea │ │ │ ├── BeaViewFields.scala │ │ │ ├── BeaViewRepo.scala │ │ │ ├── BeaViewRepoImpl.scala │ │ │ └── BeaViewRow.scala │ │ ├── bec │ │ │ ├── BecViewFields.scala │ │ │ ├── BecViewRepo.scala │ │ │ ├── BecViewRepoImpl.scala │ │ │ └── BecViewRow.scala │ │ ├── cr │ │ │ ├── CrViewFields.scala │ │ │ ├── CrViewRepo.scala │ │ │ ├── CrViewRepoImpl.scala │ │ │ └── CrViewRow.scala │ │ ├── ct │ │ │ ├── CtViewFields.scala │ │ │ ├── CtViewRepo.scala │ │ │ ├── CtViewRepoImpl.scala │ │ │ └── CtViewRow.scala │ │ ├── e │ │ │ ├── EViewFields.scala │ │ │ ├── EViewRepo.scala │ │ │ ├── EViewRepoImpl.scala │ │ │ └── EViewRow.scala │ │ ├── p │ │ │ ├── PViewFields.scala │ │ │ ├── PViewRepo.scala │ │ │ ├── PViewRepoImpl.scala │ │ │ └── PViewRow.scala │ │ ├── pa │ │ │ ├── PaViewFields.scala │ │ │ ├── PaViewRepo.scala │ │ │ ├── PaViewRepoImpl.scala │ │ │ └── PaViewRow.scala │ │ ├── pnt │ │ │ ├── PntViewFields.scala │ │ │ ├── PntViewRepo.scala │ │ │ ├── PntViewRepoImpl.scala │ │ │ └── PntViewRow.scala │ │ ├── pp │ │ │ ├── PpViewFields.scala │ │ │ ├── PpViewRepo.scala │ │ │ ├── PpViewRepoImpl.scala │ │ │ └── PpViewRow.scala │ │ └── sp │ │ │ ├── SpViewFields.scala │ │ │ ├── SpViewRepo.scala │ │ │ ├── SpViewRepoImpl.scala │ │ │ └── SpViewRow.scala │ │ ├── person │ │ ├── address │ │ │ ├── AddressFields.scala │ │ │ ├── AddressId.scala │ │ │ ├── AddressRepo.scala │ │ │ ├── AddressRepoImpl.scala │ │ │ ├── AddressRepoMock.scala │ │ │ ├── AddressRow.scala │ │ │ └── AddressRowUnsaved.scala │ │ ├── addresstype │ │ │ ├── AddresstypeFields.scala │ │ │ ├── AddresstypeId.scala │ │ │ ├── AddresstypeRepo.scala │ │ │ ├── AddresstypeRepoImpl.scala │ │ │ ├── AddresstypeRepoMock.scala │ │ │ ├── AddresstypeRow.scala │ │ │ └── AddresstypeRowUnsaved.scala │ │ ├── businessentity │ │ │ ├── BusinessentityFields.scala │ │ │ ├── BusinessentityId.scala │ │ │ ├── BusinessentityRepo.scala │ │ │ ├── BusinessentityRepoImpl.scala │ │ │ ├── BusinessentityRepoMock.scala │ │ │ ├── BusinessentityRow.scala │ │ │ └── BusinessentityRowUnsaved.scala │ │ ├── businessentityaddress │ │ │ ├── BusinessentityaddressFields.scala │ │ │ ├── BusinessentityaddressId.scala │ │ │ ├── BusinessentityaddressRepo.scala │ │ │ ├── BusinessentityaddressRepoImpl.scala │ │ │ ├── BusinessentityaddressRepoMock.scala │ │ │ ├── BusinessentityaddressRow.scala │ │ │ └── BusinessentityaddressRowUnsaved.scala │ │ ├── businessentitycontact │ │ │ ├── BusinessentitycontactFields.scala │ │ │ ├── BusinessentitycontactId.scala │ │ │ ├── BusinessentitycontactRepo.scala │ │ │ ├── BusinessentitycontactRepoImpl.scala │ │ │ ├── BusinessentitycontactRepoMock.scala │ │ │ ├── BusinessentitycontactRow.scala │ │ │ └── BusinessentitycontactRowUnsaved.scala │ │ ├── contacttype │ │ │ ├── ContacttypeFields.scala │ │ │ ├── ContacttypeId.scala │ │ │ ├── ContacttypeRepo.scala │ │ │ ├── ContacttypeRepoImpl.scala │ │ │ ├── ContacttypeRepoMock.scala │ │ │ ├── ContacttypeRow.scala │ │ │ └── ContacttypeRowUnsaved.scala │ │ ├── countryregion │ │ │ ├── CountryregionFields.scala │ │ │ ├── CountryregionId.scala │ │ │ ├── CountryregionRepo.scala │ │ │ ├── CountryregionRepoImpl.scala │ │ │ ├── CountryregionRepoMock.scala │ │ │ ├── CountryregionRow.scala │ │ │ └── CountryregionRowUnsaved.scala │ │ ├── emailaddress │ │ │ ├── EmailaddressFields.scala │ │ │ ├── EmailaddressId.scala │ │ │ ├── EmailaddressRepo.scala │ │ │ ├── EmailaddressRepoImpl.scala │ │ │ ├── EmailaddressRepoMock.scala │ │ │ ├── EmailaddressRow.scala │ │ │ └── EmailaddressRowUnsaved.scala │ │ ├── password │ │ │ ├── PasswordFields.scala │ │ │ ├── PasswordRepo.scala │ │ │ ├── PasswordRepoImpl.scala │ │ │ ├── PasswordRepoMock.scala │ │ │ ├── PasswordRow.scala │ │ │ └── PasswordRowUnsaved.scala │ │ ├── person │ │ │ ├── PersonFields.scala │ │ │ ├── PersonRepo.scala │ │ │ ├── PersonRepoImpl.scala │ │ │ ├── PersonRepoMock.scala │ │ │ ├── PersonRow.scala │ │ │ └── PersonRowUnsaved.scala │ │ ├── personphone │ │ │ ├── PersonphoneFields.scala │ │ │ ├── PersonphoneId.scala │ │ │ ├── PersonphoneRepo.scala │ │ │ ├── PersonphoneRepoImpl.scala │ │ │ ├── PersonphoneRepoMock.scala │ │ │ ├── PersonphoneRow.scala │ │ │ └── PersonphoneRowUnsaved.scala │ │ ├── phonenumbertype │ │ │ ├── PhonenumbertypeFields.scala │ │ │ ├── PhonenumbertypeId.scala │ │ │ ├── PhonenumbertypeRepo.scala │ │ │ ├── PhonenumbertypeRepoImpl.scala │ │ │ ├── PhonenumbertypeRepoMock.scala │ │ │ ├── PhonenumbertypeRow.scala │ │ │ └── PhonenumbertypeRowUnsaved.scala │ │ ├── stateprovince │ │ │ ├── StateprovinceFields.scala │ │ │ ├── StateprovinceId.scala │ │ │ ├── StateprovinceRepo.scala │ │ │ ├── StateprovinceRepoImpl.scala │ │ │ ├── StateprovinceRepoMock.scala │ │ │ ├── StateprovinceRow.scala │ │ │ └── StateprovinceRowUnsaved.scala │ │ ├── vadditionalcontactinfo │ │ │ ├── VadditionalcontactinfoViewFields.scala │ │ │ ├── VadditionalcontactinfoViewRepo.scala │ │ │ ├── VadditionalcontactinfoViewRepoImpl.scala │ │ │ └── VadditionalcontactinfoViewRow.scala │ │ └── vstateprovincecountryregion │ │ │ ├── VstateprovincecountryregionMVFields.scala │ │ │ ├── VstateprovincecountryregionMVRepo.scala │ │ │ ├── VstateprovincecountryregionMVRepoImpl.scala │ │ │ └── VstateprovincecountryregionMVRow.scala │ │ ├── person_detail │ │ ├── PersonDetailSqlRepo.scala │ │ ├── PersonDetailSqlRepoImpl.scala │ │ └── PersonDetailSqlRow.scala │ │ ├── person_dynamic │ │ ├── PersonDynamicSqlRepo.scala │ │ ├── PersonDynamicSqlRepoImpl.scala │ │ └── PersonDynamicSqlRow.scala │ │ ├── person_row_join │ │ ├── PersonRowJoinSqlRepo.scala │ │ ├── PersonRowJoinSqlRepoImpl.scala │ │ └── PersonRowJoinSqlRow.scala │ │ ├── pr │ │ ├── bom │ │ │ ├── BomViewFields.scala │ │ │ ├── BomViewRepo.scala │ │ │ ├── BomViewRepoImpl.scala │ │ │ └── BomViewRow.scala │ │ ├── c │ │ │ ├── CViewFields.scala │ │ │ ├── CViewRepo.scala │ │ │ ├── CViewRepoImpl.scala │ │ │ └── CViewRow.scala │ │ ├── d │ │ │ ├── DViewFields.scala │ │ │ ├── DViewRepo.scala │ │ │ ├── DViewRepoImpl.scala │ │ │ └── DViewRow.scala │ │ ├── i │ │ │ ├── IViewFields.scala │ │ │ ├── IViewRepo.scala │ │ │ ├── IViewRepoImpl.scala │ │ │ └── IViewRow.scala │ │ ├── l │ │ │ ├── LViewFields.scala │ │ │ ├── LViewRepo.scala │ │ │ ├── LViewRepoImpl.scala │ │ │ └── LViewRow.scala │ │ ├── p │ │ │ ├── PViewFields.scala │ │ │ ├── PViewRepo.scala │ │ │ ├── PViewRepoImpl.scala │ │ │ └── PViewRow.scala │ │ ├── pc │ │ │ ├── PcViewFields.scala │ │ │ ├── PcViewRepo.scala │ │ │ ├── PcViewRepoImpl.scala │ │ │ └── PcViewRow.scala │ │ ├── pch │ │ │ ├── PchViewFields.scala │ │ │ ├── PchViewRepo.scala │ │ │ ├── PchViewRepoImpl.scala │ │ │ └── PchViewRow.scala │ │ ├── pd │ │ │ ├── PdViewFields.scala │ │ │ ├── PdViewRepo.scala │ │ │ ├── PdViewRepoImpl.scala │ │ │ └── PdViewRow.scala │ │ ├── pdoc │ │ │ ├── PdocViewFields.scala │ │ │ ├── PdocViewRepo.scala │ │ │ ├── PdocViewRepoImpl.scala │ │ │ └── PdocViewRow.scala │ │ ├── pi │ │ │ ├── PiViewFields.scala │ │ │ ├── PiViewRepo.scala │ │ │ ├── PiViewRepoImpl.scala │ │ │ └── PiViewRow.scala │ │ ├── plph │ │ │ ├── PlphViewFields.scala │ │ │ ├── PlphViewRepo.scala │ │ │ ├── PlphViewRepoImpl.scala │ │ │ └── PlphViewRow.scala │ │ ├── pm │ │ │ ├── PmViewFields.scala │ │ │ ├── PmViewRepo.scala │ │ │ ├── PmViewRepoImpl.scala │ │ │ └── PmViewRow.scala │ │ ├── pmi │ │ │ ├── PmiViewFields.scala │ │ │ ├── PmiViewRepo.scala │ │ │ ├── PmiViewRepoImpl.scala │ │ │ └── PmiViewRow.scala │ │ ├── pmpdc │ │ │ ├── PmpdcViewFields.scala │ │ │ ├── PmpdcViewRepo.scala │ │ │ ├── PmpdcViewRepoImpl.scala │ │ │ └── PmpdcViewRow.scala │ │ ├── pp │ │ │ ├── PpViewFields.scala │ │ │ ├── PpViewRepo.scala │ │ │ ├── PpViewRepoImpl.scala │ │ │ └── PpViewRow.scala │ │ ├── ppp │ │ │ ├── PppViewFields.scala │ │ │ ├── PppViewRepo.scala │ │ │ ├── PppViewRepoImpl.scala │ │ │ └── PppViewRow.scala │ │ ├── pr │ │ │ ├── PrViewFields.scala │ │ │ ├── PrViewRepo.scala │ │ │ ├── PrViewRepoImpl.scala │ │ │ └── PrViewRow.scala │ │ ├── psc │ │ │ ├── PscViewFields.scala │ │ │ ├── PscViewRepo.scala │ │ │ ├── PscViewRepoImpl.scala │ │ │ └── PscViewRow.scala │ │ ├── sr │ │ │ ├── SrViewFields.scala │ │ │ ├── SrViewRepo.scala │ │ │ ├── SrViewRepoImpl.scala │ │ │ └── SrViewRow.scala │ │ ├── th │ │ │ ├── ThViewFields.scala │ │ │ ├── ThViewRepo.scala │ │ │ ├── ThViewRepoImpl.scala │ │ │ └── ThViewRow.scala │ │ ├── tha │ │ │ ├── ThaViewFields.scala │ │ │ ├── ThaViewRepo.scala │ │ │ ├── ThaViewRepoImpl.scala │ │ │ └── ThaViewRow.scala │ │ ├── um │ │ │ ├── UmViewFields.scala │ │ │ ├── UmViewRepo.scala │ │ │ ├── UmViewRepoImpl.scala │ │ │ └── UmViewRow.scala │ │ ├── w │ │ │ ├── WViewFields.scala │ │ │ ├── WViewRepo.scala │ │ │ ├── WViewRepoImpl.scala │ │ │ └── WViewRow.scala │ │ └── wr │ │ │ ├── WrViewFields.scala │ │ │ ├── WrViewRepo.scala │ │ │ ├── WrViewRepoImpl.scala │ │ │ └── WrViewRow.scala │ │ ├── production │ │ ├── billofmaterials │ │ │ ├── BillofmaterialsFields.scala │ │ │ ├── BillofmaterialsRepo.scala │ │ │ ├── BillofmaterialsRepoImpl.scala │ │ │ ├── BillofmaterialsRepoMock.scala │ │ │ ├── BillofmaterialsRow.scala │ │ │ └── BillofmaterialsRowUnsaved.scala │ │ ├── culture │ │ │ ├── CultureFields.scala │ │ │ ├── CultureId.scala │ │ │ ├── CultureRepo.scala │ │ │ ├── CultureRepoImpl.scala │ │ │ ├── CultureRepoMock.scala │ │ │ ├── CultureRow.scala │ │ │ └── CultureRowUnsaved.scala │ │ ├── document │ │ │ ├── DocumentFields.scala │ │ │ ├── DocumentId.scala │ │ │ ├── DocumentRepo.scala │ │ │ ├── DocumentRepoImpl.scala │ │ │ ├── DocumentRepoMock.scala │ │ │ ├── DocumentRow.scala │ │ │ └── DocumentRowUnsaved.scala │ │ ├── illustration │ │ │ ├── IllustrationFields.scala │ │ │ ├── IllustrationId.scala │ │ │ ├── IllustrationRepo.scala │ │ │ ├── IllustrationRepoImpl.scala │ │ │ ├── IllustrationRepoMock.scala │ │ │ ├── IllustrationRow.scala │ │ │ └── IllustrationRowUnsaved.scala │ │ ├── location │ │ │ ├── LocationFields.scala │ │ │ ├── LocationId.scala │ │ │ ├── LocationRepo.scala │ │ │ ├── LocationRepoImpl.scala │ │ │ ├── LocationRepoMock.scala │ │ │ ├── LocationRow.scala │ │ │ └── LocationRowUnsaved.scala │ │ ├── product │ │ │ ├── ProductFields.scala │ │ │ ├── ProductId.scala │ │ │ ├── ProductRepo.scala │ │ │ ├── ProductRepoImpl.scala │ │ │ ├── ProductRepoMock.scala │ │ │ ├── ProductRow.scala │ │ │ └── ProductRowUnsaved.scala │ │ ├── productcategory │ │ │ ├── ProductcategoryFields.scala │ │ │ ├── ProductcategoryId.scala │ │ │ ├── ProductcategoryRepo.scala │ │ │ ├── ProductcategoryRepoImpl.scala │ │ │ ├── ProductcategoryRepoMock.scala │ │ │ ├── ProductcategoryRow.scala │ │ │ └── ProductcategoryRowUnsaved.scala │ │ ├── productcosthistory │ │ │ ├── ProductcosthistoryFields.scala │ │ │ ├── ProductcosthistoryId.scala │ │ │ ├── ProductcosthistoryRepo.scala │ │ │ ├── ProductcosthistoryRepoImpl.scala │ │ │ ├── ProductcosthistoryRepoMock.scala │ │ │ ├── ProductcosthistoryRow.scala │ │ │ └── ProductcosthistoryRowUnsaved.scala │ │ ├── productdescription │ │ │ ├── ProductdescriptionFields.scala │ │ │ ├── ProductdescriptionId.scala │ │ │ ├── ProductdescriptionRepo.scala │ │ │ ├── ProductdescriptionRepoImpl.scala │ │ │ ├── ProductdescriptionRepoMock.scala │ │ │ ├── ProductdescriptionRow.scala │ │ │ └── ProductdescriptionRowUnsaved.scala │ │ ├── productdocument │ │ │ ├── ProductdocumentFields.scala │ │ │ ├── ProductdocumentId.scala │ │ │ ├── ProductdocumentRepo.scala │ │ │ ├── ProductdocumentRepoImpl.scala │ │ │ ├── ProductdocumentRepoMock.scala │ │ │ ├── ProductdocumentRow.scala │ │ │ └── ProductdocumentRowUnsaved.scala │ │ ├── productinventory │ │ │ ├── ProductinventoryFields.scala │ │ │ ├── ProductinventoryId.scala │ │ │ ├── ProductinventoryRepo.scala │ │ │ ├── ProductinventoryRepoImpl.scala │ │ │ ├── ProductinventoryRepoMock.scala │ │ │ ├── ProductinventoryRow.scala │ │ │ └── ProductinventoryRowUnsaved.scala │ │ ├── productlistpricehistory │ │ │ ├── ProductlistpricehistoryFields.scala │ │ │ ├── ProductlistpricehistoryId.scala │ │ │ ├── ProductlistpricehistoryRepo.scala │ │ │ ├── ProductlistpricehistoryRepoImpl.scala │ │ │ ├── ProductlistpricehistoryRepoMock.scala │ │ │ ├── ProductlistpricehistoryRow.scala │ │ │ └── ProductlistpricehistoryRowUnsaved.scala │ │ ├── productmodel │ │ │ ├── ProductmodelFields.scala │ │ │ ├── ProductmodelId.scala │ │ │ ├── ProductmodelRepo.scala │ │ │ ├── ProductmodelRepoImpl.scala │ │ │ ├── ProductmodelRepoMock.scala │ │ │ ├── ProductmodelRow.scala │ │ │ └── ProductmodelRowUnsaved.scala │ │ ├── productmodelillustration │ │ │ ├── ProductmodelillustrationFields.scala │ │ │ ├── ProductmodelillustrationId.scala │ │ │ ├── ProductmodelillustrationRepo.scala │ │ │ ├── ProductmodelillustrationRepoImpl.scala │ │ │ ├── ProductmodelillustrationRepoMock.scala │ │ │ ├── ProductmodelillustrationRow.scala │ │ │ └── ProductmodelillustrationRowUnsaved.scala │ │ ├── productmodelproductdescriptionculture │ │ │ ├── ProductmodelproductdescriptioncultureFields.scala │ │ │ ├── ProductmodelproductdescriptioncultureId.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepo.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepoImpl.scala │ │ │ ├── ProductmodelproductdescriptioncultureRepoMock.scala │ │ │ ├── ProductmodelproductdescriptioncultureRow.scala │ │ │ └── ProductmodelproductdescriptioncultureRowUnsaved.scala │ │ ├── productphoto │ │ │ ├── ProductphotoFields.scala │ │ │ ├── ProductphotoId.scala │ │ │ ├── ProductphotoRepo.scala │ │ │ ├── ProductphotoRepoImpl.scala │ │ │ ├── ProductphotoRepoMock.scala │ │ │ ├── ProductphotoRow.scala │ │ │ └── ProductphotoRowUnsaved.scala │ │ ├── productproductphoto │ │ │ ├── ProductproductphotoFields.scala │ │ │ ├── ProductproductphotoId.scala │ │ │ ├── ProductproductphotoRepo.scala │ │ │ ├── ProductproductphotoRepoImpl.scala │ │ │ ├── ProductproductphotoRepoMock.scala │ │ │ ├── ProductproductphotoRow.scala │ │ │ └── ProductproductphotoRowUnsaved.scala │ │ ├── productreview │ │ │ ├── ProductreviewFields.scala │ │ │ ├── ProductreviewId.scala │ │ │ ├── ProductreviewRepo.scala │ │ │ ├── ProductreviewRepoImpl.scala │ │ │ ├── ProductreviewRepoMock.scala │ │ │ ├── ProductreviewRow.scala │ │ │ └── ProductreviewRowUnsaved.scala │ │ ├── productsubcategory │ │ │ ├── ProductsubcategoryFields.scala │ │ │ ├── ProductsubcategoryId.scala │ │ │ ├── ProductsubcategoryRepo.scala │ │ │ ├── ProductsubcategoryRepoImpl.scala │ │ │ ├── ProductsubcategoryRepoMock.scala │ │ │ ├── ProductsubcategoryRow.scala │ │ │ └── ProductsubcategoryRowUnsaved.scala │ │ ├── scrapreason │ │ │ ├── ScrapreasonFields.scala │ │ │ ├── ScrapreasonId.scala │ │ │ ├── ScrapreasonRepo.scala │ │ │ ├── ScrapreasonRepoImpl.scala │ │ │ ├── ScrapreasonRepoMock.scala │ │ │ ├── ScrapreasonRow.scala │ │ │ └── ScrapreasonRowUnsaved.scala │ │ ├── transactionhistory │ │ │ ├── TransactionhistoryFields.scala │ │ │ ├── TransactionhistoryId.scala │ │ │ ├── TransactionhistoryRepo.scala │ │ │ ├── TransactionhistoryRepoImpl.scala │ │ │ ├── TransactionhistoryRepoMock.scala │ │ │ ├── TransactionhistoryRow.scala │ │ │ └── TransactionhistoryRowUnsaved.scala │ │ ├── transactionhistoryarchive │ │ │ ├── TransactionhistoryarchiveFields.scala │ │ │ ├── TransactionhistoryarchiveId.scala │ │ │ ├── TransactionhistoryarchiveRepo.scala │ │ │ ├── TransactionhistoryarchiveRepoImpl.scala │ │ │ ├── TransactionhistoryarchiveRepoMock.scala │ │ │ ├── TransactionhistoryarchiveRow.scala │ │ │ └── TransactionhistoryarchiveRowUnsaved.scala │ │ ├── unitmeasure │ │ │ ├── UnitmeasureFields.scala │ │ │ ├── UnitmeasureId.scala │ │ │ ├── UnitmeasureRepo.scala │ │ │ ├── UnitmeasureRepoImpl.scala │ │ │ ├── UnitmeasureRepoMock.scala │ │ │ ├── UnitmeasureRow.scala │ │ │ └── UnitmeasureRowUnsaved.scala │ │ ├── vproductanddescription │ │ │ ├── VproductanddescriptionMVFields.scala │ │ │ ├── VproductanddescriptionMVRepo.scala │ │ │ ├── VproductanddescriptionMVRepoImpl.scala │ │ │ └── VproductanddescriptionMVRow.scala │ │ ├── vproductmodelcatalogdescription │ │ │ ├── VproductmodelcatalogdescriptionViewFields.scala │ │ │ ├── VproductmodelcatalogdescriptionViewRepo.scala │ │ │ ├── VproductmodelcatalogdescriptionViewRepoImpl.scala │ │ │ └── VproductmodelcatalogdescriptionViewRow.scala │ │ ├── vproductmodelinstructions │ │ │ ├── VproductmodelinstructionsViewFields.scala │ │ │ ├── VproductmodelinstructionsViewRepo.scala │ │ │ ├── VproductmodelinstructionsViewRepoImpl.scala │ │ │ └── VproductmodelinstructionsViewRow.scala │ │ ├── workorder │ │ │ ├── WorkorderFields.scala │ │ │ ├── WorkorderId.scala │ │ │ ├── WorkorderRepo.scala │ │ │ ├── WorkorderRepoImpl.scala │ │ │ ├── WorkorderRepoMock.scala │ │ │ ├── WorkorderRow.scala │ │ │ └── WorkorderRowUnsaved.scala │ │ └── workorderrouting │ │ │ ├── WorkorderroutingFields.scala │ │ │ ├── WorkorderroutingId.scala │ │ │ ├── WorkorderroutingRepo.scala │ │ │ ├── WorkorderroutingRepoImpl.scala │ │ │ ├── WorkorderroutingRepoMock.scala │ │ │ ├── WorkorderroutingRow.scala │ │ │ └── WorkorderroutingRowUnsaved.scala │ │ ├── pu │ │ ├── pod │ │ │ ├── PodViewFields.scala │ │ │ ├── PodViewRepo.scala │ │ │ ├── PodViewRepoImpl.scala │ │ │ └── PodViewRow.scala │ │ ├── poh │ │ │ ├── PohViewFields.scala │ │ │ ├── PohViewRepo.scala │ │ │ ├── PohViewRepoImpl.scala │ │ │ └── PohViewRow.scala │ │ ├── pv │ │ │ ├── PvViewFields.scala │ │ │ ├── PvViewRepo.scala │ │ │ ├── PvViewRepoImpl.scala │ │ │ └── PvViewRow.scala │ │ ├── sm │ │ │ ├── SmViewFields.scala │ │ │ ├── SmViewRepo.scala │ │ │ ├── SmViewRepoImpl.scala │ │ │ └── SmViewRow.scala │ │ └── v │ │ │ ├── VViewFields.scala │ │ │ ├── VViewRepo.scala │ │ │ ├── VViewRepoImpl.scala │ │ │ └── VViewRow.scala │ │ ├── public │ │ ├── AccountNumber.scala │ │ ├── Flag.scala │ │ ├── Mydomain.scala │ │ ├── Myenum.scala │ │ ├── Name.scala │ │ ├── NameStyle.scala │ │ ├── OrderNumber.scala │ │ ├── Phone.scala │ │ ├── ShortText.scala │ │ ├── flaff │ │ │ ├── FlaffFields.scala │ │ │ ├── FlaffId.scala │ │ │ ├── FlaffRepo.scala │ │ │ ├── FlaffRepoImpl.scala │ │ │ ├── FlaffRepoMock.scala │ │ │ └── FlaffRow.scala │ │ ├── identity_test │ │ │ ├── IdentityTestFields.scala │ │ │ ├── IdentityTestId.scala │ │ │ ├── IdentityTestRepo.scala │ │ │ ├── IdentityTestRepoImpl.scala │ │ │ ├── IdentityTestRepoMock.scala │ │ │ ├── IdentityTestRow.scala │ │ │ └── IdentityTestRowUnsaved.scala │ │ ├── issue142 │ │ │ ├── Issue142Fields.scala │ │ │ ├── Issue142Id.scala │ │ │ ├── Issue142Repo.scala │ │ │ ├── Issue142RepoImpl.scala │ │ │ ├── Issue142RepoMock.scala │ │ │ └── Issue142Row.scala │ │ ├── issue142_2 │ │ │ ├── Issue1422Fields.scala │ │ │ ├── Issue1422Repo.scala │ │ │ ├── Issue1422RepoImpl.scala │ │ │ ├── Issue1422RepoMock.scala │ │ │ └── Issue1422Row.scala │ │ ├── only_pk_columns │ │ │ ├── OnlyPkColumnsFields.scala │ │ │ ├── OnlyPkColumnsId.scala │ │ │ ├── OnlyPkColumnsRepo.scala │ │ │ ├── OnlyPkColumnsRepoImpl.scala │ │ │ ├── OnlyPkColumnsRepoMock.scala │ │ │ └── OnlyPkColumnsRow.scala │ │ ├── pgtest │ │ │ ├── PgtestFields.scala │ │ │ ├── PgtestRepo.scala │ │ │ ├── PgtestRepoImpl.scala │ │ │ └── PgtestRow.scala │ │ ├── pgtestnull │ │ │ ├── PgtestnullFields.scala │ │ │ ├── PgtestnullRepo.scala │ │ │ ├── PgtestnullRepoImpl.scala │ │ │ └── PgtestnullRow.scala │ │ ├── table_with_generated_columns │ │ │ ├── TableWithGeneratedColumnsFields.scala │ │ │ ├── TableWithGeneratedColumnsId.scala │ │ │ ├── TableWithGeneratedColumnsRepo.scala │ │ │ ├── TableWithGeneratedColumnsRepoImpl.scala │ │ │ ├── TableWithGeneratedColumnsRepoMock.scala │ │ │ ├── TableWithGeneratedColumnsRow.scala │ │ │ └── TableWithGeneratedColumnsRowUnsaved.scala │ │ ├── test_organisasjon │ │ │ ├── TestOrganisasjonFields.scala │ │ │ ├── TestOrganisasjonId.scala │ │ │ ├── TestOrganisasjonRepo.scala │ │ │ ├── TestOrganisasjonRepoImpl.scala │ │ │ ├── TestOrganisasjonRepoMock.scala │ │ │ └── TestOrganisasjonRow.scala │ │ ├── test_sak_soknadsalternativ │ │ │ ├── TestSakSoknadsalternativFields.scala │ │ │ ├── TestSakSoknadsalternativId.scala │ │ │ ├── TestSakSoknadsalternativRepo.scala │ │ │ ├── TestSakSoknadsalternativRepoImpl.scala │ │ │ ├── TestSakSoknadsalternativRepoMock.scala │ │ │ └── TestSakSoknadsalternativRow.scala │ │ ├── test_utdanningstilbud │ │ │ ├── TestUtdanningstilbudFields.scala │ │ │ ├── TestUtdanningstilbudId.scala │ │ │ ├── TestUtdanningstilbudRepo.scala │ │ │ ├── TestUtdanningstilbudRepoImpl.scala │ │ │ ├── TestUtdanningstilbudRepoMock.scala │ │ │ └── TestUtdanningstilbudRow.scala │ │ ├── title │ │ │ ├── TitleFields.scala │ │ │ ├── TitleId.scala │ │ │ ├── TitleRepo.scala │ │ │ ├── TitleRepoImpl.scala │ │ │ ├── TitleRepoMock.scala │ │ │ └── TitleRow.scala │ │ ├── title_domain │ │ │ ├── TitleDomainFields.scala │ │ │ ├── TitleDomainId.scala │ │ │ ├── TitleDomainRepo.scala │ │ │ ├── TitleDomainRepoImpl.scala │ │ │ ├── TitleDomainRepoMock.scala │ │ │ └── TitleDomainRow.scala │ │ ├── titledperson │ │ │ ├── TitledpersonFields.scala │ │ │ ├── TitledpersonRepo.scala │ │ │ ├── TitledpersonRepoImpl.scala │ │ │ └── TitledpersonRow.scala │ │ └── users │ │ │ ├── UsersFields.scala │ │ │ ├── UsersId.scala │ │ │ ├── UsersRepo.scala │ │ │ ├── UsersRepoImpl.scala │ │ │ ├── UsersRepoMock.scala │ │ │ ├── UsersRow.scala │ │ │ └── UsersRowUnsaved.scala │ │ ├── purchasing │ │ ├── productvendor │ │ │ ├── ProductvendorFields.scala │ │ │ ├── ProductvendorId.scala │ │ │ ├── ProductvendorRepo.scala │ │ │ ├── ProductvendorRepoImpl.scala │ │ │ ├── ProductvendorRepoMock.scala │ │ │ ├── ProductvendorRow.scala │ │ │ └── ProductvendorRowUnsaved.scala │ │ ├── purchaseorderdetail │ │ │ ├── PurchaseorderdetailFields.scala │ │ │ ├── PurchaseorderdetailId.scala │ │ │ ├── PurchaseorderdetailRepo.scala │ │ │ ├── PurchaseorderdetailRepoImpl.scala │ │ │ ├── PurchaseorderdetailRow.scala │ │ │ └── PurchaseorderdetailRowUnsaved.scala │ │ ├── purchaseorderheader │ │ │ ├── PurchaseorderheaderFields.scala │ │ │ ├── PurchaseorderheaderId.scala │ │ │ ├── PurchaseorderheaderRepo.scala │ │ │ ├── PurchaseorderheaderRepoImpl.scala │ │ │ ├── PurchaseorderheaderRepoMock.scala │ │ │ ├── PurchaseorderheaderRow.scala │ │ │ └── PurchaseorderheaderRowUnsaved.scala │ │ ├── shipmethod │ │ │ ├── ShipmethodFields.scala │ │ │ ├── ShipmethodId.scala │ │ │ ├── ShipmethodRepo.scala │ │ │ ├── ShipmethodRepoImpl.scala │ │ │ ├── ShipmethodRepoMock.scala │ │ │ ├── ShipmethodRow.scala │ │ │ └── ShipmethodRowUnsaved.scala │ │ ├── vendor │ │ │ ├── VendorFields.scala │ │ │ ├── VendorRepo.scala │ │ │ ├── VendorRepoImpl.scala │ │ │ ├── VendorRepoMock.scala │ │ │ ├── VendorRow.scala │ │ │ └── VendorRowUnsaved.scala │ │ ├── vvendorwithaddresses │ │ │ ├── VvendorwithaddressesViewFields.scala │ │ │ ├── VvendorwithaddressesViewRepo.scala │ │ │ ├── VvendorwithaddressesViewRepoImpl.scala │ │ │ └── VvendorwithaddressesViewRow.scala │ │ └── vvendorwithcontacts │ │ │ ├── VvendorwithcontactsViewFields.scala │ │ │ ├── VvendorwithcontactsViewRepo.scala │ │ │ ├── VvendorwithcontactsViewRepoImpl.scala │ │ │ └── VvendorwithcontactsViewRow.scala │ │ ├── sa │ │ ├── c │ │ │ ├── CViewFields.scala │ │ │ ├── CViewRepo.scala │ │ │ ├── CViewRepoImpl.scala │ │ │ └── CViewRow.scala │ │ ├── cc │ │ │ ├── CcViewFields.scala │ │ │ ├── CcViewRepo.scala │ │ │ ├── CcViewRepoImpl.scala │ │ │ └── CcViewRow.scala │ │ ├── cr │ │ │ ├── CrViewFields.scala │ │ │ ├── CrViewRepo.scala │ │ │ ├── CrViewRepoImpl.scala │ │ │ └── CrViewRow.scala │ │ ├── crc │ │ │ ├── CrcViewFields.scala │ │ │ ├── CrcViewRepo.scala │ │ │ ├── CrcViewRepoImpl.scala │ │ │ └── CrcViewRow.scala │ │ ├── cu │ │ │ ├── CuViewFields.scala │ │ │ ├── CuViewRepo.scala │ │ │ ├── CuViewRepoImpl.scala │ │ │ └── CuViewRow.scala │ │ ├── pcc │ │ │ ├── PccViewFields.scala │ │ │ ├── PccViewRepo.scala │ │ │ ├── PccViewRepoImpl.scala │ │ │ └── PccViewRow.scala │ │ ├── s │ │ │ ├── SViewFields.scala │ │ │ ├── SViewRepo.scala │ │ │ ├── SViewRepoImpl.scala │ │ │ └── SViewRow.scala │ │ ├── sci │ │ │ ├── SciViewFields.scala │ │ │ ├── SciViewRepo.scala │ │ │ ├── SciViewRepoImpl.scala │ │ │ └── SciViewRow.scala │ │ ├── so │ │ │ ├── SoViewFields.scala │ │ │ ├── SoViewRepo.scala │ │ │ ├── SoViewRepoImpl.scala │ │ │ └── SoViewRow.scala │ │ ├── sod │ │ │ ├── SodViewFields.scala │ │ │ ├── SodViewRepo.scala │ │ │ ├── SodViewRepoImpl.scala │ │ │ └── SodViewRow.scala │ │ ├── soh │ │ │ ├── SohViewFields.scala │ │ │ ├── SohViewRepo.scala │ │ │ ├── SohViewRepoImpl.scala │ │ │ └── SohViewRow.scala │ │ ├── sohsr │ │ │ ├── SohsrViewFields.scala │ │ │ ├── SohsrViewRepo.scala │ │ │ ├── SohsrViewRepoImpl.scala │ │ │ └── SohsrViewRow.scala │ │ ├── sop │ │ │ ├── SopViewFields.scala │ │ │ ├── SopViewRepo.scala │ │ │ ├── SopViewRepoImpl.scala │ │ │ └── SopViewRow.scala │ │ ├── sp │ │ │ ├── SpViewFields.scala │ │ │ ├── SpViewRepo.scala │ │ │ ├── SpViewRepoImpl.scala │ │ │ └── SpViewRow.scala │ │ ├── spqh │ │ │ ├── SpqhViewFields.scala │ │ │ ├── SpqhViewRepo.scala │ │ │ ├── SpqhViewRepoImpl.scala │ │ │ └── SpqhViewRow.scala │ │ ├── sr │ │ │ ├── SrViewFields.scala │ │ │ ├── SrViewRepo.scala │ │ │ ├── SrViewRepoImpl.scala │ │ │ └── SrViewRow.scala │ │ ├── st │ │ │ ├── StViewFields.scala │ │ │ ├── StViewRepo.scala │ │ │ ├── StViewRepoImpl.scala │ │ │ └── StViewRow.scala │ │ ├── sth │ │ │ ├── SthViewFields.scala │ │ │ ├── SthViewRepo.scala │ │ │ ├── SthViewRepoImpl.scala │ │ │ └── SthViewRow.scala │ │ └── tr │ │ │ ├── TrViewFields.scala │ │ │ ├── TrViewRepo.scala │ │ │ ├── TrViewRepoImpl.scala │ │ │ └── TrViewRow.scala │ │ ├── sales │ │ ├── countryregioncurrency │ │ │ ├── CountryregioncurrencyFields.scala │ │ │ ├── CountryregioncurrencyId.scala │ │ │ ├── CountryregioncurrencyRepo.scala │ │ │ ├── CountryregioncurrencyRepoImpl.scala │ │ │ ├── CountryregioncurrencyRepoMock.scala │ │ │ ├── CountryregioncurrencyRow.scala │ │ │ └── CountryregioncurrencyRowUnsaved.scala │ │ ├── creditcard │ │ │ ├── CreditcardFields.scala │ │ │ ├── CreditcardRepo.scala │ │ │ ├── CreditcardRepoImpl.scala │ │ │ ├── CreditcardRepoMock.scala │ │ │ ├── CreditcardRow.scala │ │ │ └── CreditcardRowUnsaved.scala │ │ ├── currency │ │ │ ├── CurrencyFields.scala │ │ │ ├── CurrencyId.scala │ │ │ ├── CurrencyRepo.scala │ │ │ ├── CurrencyRepoImpl.scala │ │ │ ├── CurrencyRepoMock.scala │ │ │ ├── CurrencyRow.scala │ │ │ └── CurrencyRowUnsaved.scala │ │ ├── currencyrate │ │ │ ├── CurrencyrateFields.scala │ │ │ ├── CurrencyrateId.scala │ │ │ ├── CurrencyrateRepo.scala │ │ │ ├── CurrencyrateRepoImpl.scala │ │ │ ├── CurrencyrateRepoMock.scala │ │ │ ├── CurrencyrateRow.scala │ │ │ └── CurrencyrateRowUnsaved.scala │ │ ├── customer │ │ │ ├── CustomerFields.scala │ │ │ ├── CustomerId.scala │ │ │ ├── CustomerRepo.scala │ │ │ ├── CustomerRepoImpl.scala │ │ │ ├── CustomerRepoMock.scala │ │ │ ├── CustomerRow.scala │ │ │ └── CustomerRowUnsaved.scala │ │ ├── personcreditcard │ │ │ ├── PersoncreditcardFields.scala │ │ │ ├── PersoncreditcardId.scala │ │ │ ├── PersoncreditcardRepo.scala │ │ │ ├── PersoncreditcardRepoImpl.scala │ │ │ ├── PersoncreditcardRepoMock.scala │ │ │ ├── PersoncreditcardRow.scala │ │ │ └── PersoncreditcardRowUnsaved.scala │ │ ├── salesorderdetail │ │ │ ├── SalesorderdetailFields.scala │ │ │ ├── SalesorderdetailId.scala │ │ │ ├── SalesorderdetailRepo.scala │ │ │ ├── SalesorderdetailRepoImpl.scala │ │ │ ├── SalesorderdetailRepoMock.scala │ │ │ ├── SalesorderdetailRow.scala │ │ │ └── SalesorderdetailRowUnsaved.scala │ │ ├── salesorderheader │ │ │ ├── SalesorderheaderFields.scala │ │ │ ├── SalesorderheaderId.scala │ │ │ ├── SalesorderheaderRepo.scala │ │ │ ├── SalesorderheaderRepoImpl.scala │ │ │ ├── SalesorderheaderRepoMock.scala │ │ │ ├── SalesorderheaderRow.scala │ │ │ └── SalesorderheaderRowUnsaved.scala │ │ ├── salesorderheadersalesreason │ │ │ ├── SalesorderheadersalesreasonFields.scala │ │ │ ├── SalesorderheadersalesreasonId.scala │ │ │ ├── SalesorderheadersalesreasonRepo.scala │ │ │ ├── SalesorderheadersalesreasonRepoImpl.scala │ │ │ ├── SalesorderheadersalesreasonRepoMock.scala │ │ │ ├── SalesorderheadersalesreasonRow.scala │ │ │ └── SalesorderheadersalesreasonRowUnsaved.scala │ │ ├── salesperson │ │ │ ├── SalespersonFields.scala │ │ │ ├── SalespersonRepo.scala │ │ │ ├── SalespersonRepoImpl.scala │ │ │ ├── SalespersonRepoMock.scala │ │ │ ├── SalespersonRow.scala │ │ │ └── SalespersonRowUnsaved.scala │ │ ├── salespersonquotahistory │ │ │ ├── SalespersonquotahistoryFields.scala │ │ │ ├── SalespersonquotahistoryId.scala │ │ │ ├── SalespersonquotahistoryRepo.scala │ │ │ ├── SalespersonquotahistoryRepoImpl.scala │ │ │ ├── SalespersonquotahistoryRepoMock.scala │ │ │ ├── SalespersonquotahistoryRow.scala │ │ │ └── SalespersonquotahistoryRowUnsaved.scala │ │ ├── salesreason │ │ │ ├── SalesreasonFields.scala │ │ │ ├── SalesreasonId.scala │ │ │ ├── SalesreasonRepo.scala │ │ │ ├── SalesreasonRepoImpl.scala │ │ │ ├── SalesreasonRepoMock.scala │ │ │ ├── SalesreasonRow.scala │ │ │ └── SalesreasonRowUnsaved.scala │ │ ├── salestaxrate │ │ │ ├── SalestaxrateFields.scala │ │ │ ├── SalestaxrateId.scala │ │ │ ├── SalestaxrateRepo.scala │ │ │ ├── SalestaxrateRepoImpl.scala │ │ │ ├── SalestaxrateRepoMock.scala │ │ │ ├── SalestaxrateRow.scala │ │ │ └── SalestaxrateRowUnsaved.scala │ │ ├── salesterritory │ │ │ ├── SalesterritoryFields.scala │ │ │ ├── SalesterritoryId.scala │ │ │ ├── SalesterritoryRepo.scala │ │ │ ├── SalesterritoryRepoImpl.scala │ │ │ ├── SalesterritoryRepoMock.scala │ │ │ ├── SalesterritoryRow.scala │ │ │ └── SalesterritoryRowUnsaved.scala │ │ ├── salesterritoryhistory │ │ │ ├── SalesterritoryhistoryFields.scala │ │ │ ├── SalesterritoryhistoryId.scala │ │ │ ├── SalesterritoryhistoryRepo.scala │ │ │ ├── SalesterritoryhistoryRepoImpl.scala │ │ │ ├── SalesterritoryhistoryRepoMock.scala │ │ │ ├── SalesterritoryhistoryRow.scala │ │ │ └── SalesterritoryhistoryRowUnsaved.scala │ │ ├── shoppingcartitem │ │ │ ├── ShoppingcartitemFields.scala │ │ │ ├── ShoppingcartitemId.scala │ │ │ ├── ShoppingcartitemRepo.scala │ │ │ ├── ShoppingcartitemRepoImpl.scala │ │ │ ├── ShoppingcartitemRepoMock.scala │ │ │ ├── ShoppingcartitemRow.scala │ │ │ └── ShoppingcartitemRowUnsaved.scala │ │ ├── specialoffer │ │ │ ├── SpecialofferFields.scala │ │ │ ├── SpecialofferId.scala │ │ │ ├── SpecialofferRepo.scala │ │ │ ├── SpecialofferRepoImpl.scala │ │ │ ├── SpecialofferRepoMock.scala │ │ │ ├── SpecialofferRow.scala │ │ │ └── SpecialofferRowUnsaved.scala │ │ ├── specialofferproduct │ │ │ ├── SpecialofferproductFields.scala │ │ │ ├── SpecialofferproductId.scala │ │ │ ├── SpecialofferproductRepo.scala │ │ │ ├── SpecialofferproductRepoImpl.scala │ │ │ ├── SpecialofferproductRepoMock.scala │ │ │ ├── SpecialofferproductRow.scala │ │ │ └── SpecialofferproductRowUnsaved.scala │ │ ├── store │ │ │ ├── StoreFields.scala │ │ │ ├── StoreRepo.scala │ │ │ ├── StoreRepoImpl.scala │ │ │ ├── StoreRepoMock.scala │ │ │ ├── StoreRow.scala │ │ │ └── StoreRowUnsaved.scala │ │ ├── vindividualcustomer │ │ │ ├── VindividualcustomerViewFields.scala │ │ │ ├── VindividualcustomerViewRepo.scala │ │ │ ├── VindividualcustomerViewRepoImpl.scala │ │ │ └── VindividualcustomerViewRow.scala │ │ ├── vpersondemographics │ │ │ ├── VpersondemographicsViewFields.scala │ │ │ ├── VpersondemographicsViewRepo.scala │ │ │ ├── VpersondemographicsViewRepoImpl.scala │ │ │ └── VpersondemographicsViewRow.scala │ │ ├── vsalesperson │ │ │ ├── VsalespersonViewFields.scala │ │ │ ├── VsalespersonViewRepo.scala │ │ │ ├── VsalespersonViewRepoImpl.scala │ │ │ └── VsalespersonViewRow.scala │ │ ├── vsalespersonsalesbyfiscalyears │ │ │ ├── VsalespersonsalesbyfiscalyearsViewFields.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepo.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsViewRepoImpl.scala │ │ │ └── VsalespersonsalesbyfiscalyearsViewRow.scala │ │ ├── vsalespersonsalesbyfiscalyearsdata │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewFields.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepo.scala │ │ │ ├── VsalespersonsalesbyfiscalyearsdataViewRepoImpl.scala │ │ │ └── VsalespersonsalesbyfiscalyearsdataViewRow.scala │ │ ├── vstorewithaddresses │ │ │ ├── VstorewithaddressesViewFields.scala │ │ │ ├── VstorewithaddressesViewRepo.scala │ │ │ ├── VstorewithaddressesViewRepoImpl.scala │ │ │ └── VstorewithaddressesViewRow.scala │ │ ├── vstorewithcontacts │ │ │ ├── VstorewithcontactsViewFields.scala │ │ │ ├── VstorewithcontactsViewRepo.scala │ │ │ ├── VstorewithcontactsViewRepoImpl.scala │ │ │ └── VstorewithcontactsViewRow.scala │ │ └── vstorewithdemographics │ │ │ ├── VstorewithdemographicsViewFields.scala │ │ │ ├── VstorewithdemographicsViewRepo.scala │ │ │ ├── VstorewithdemographicsViewRepoImpl.scala │ │ │ └── VstorewithdemographicsViewRow.scala │ │ ├── streamingInsert.scala │ │ ├── update_person │ │ ├── UpdatePersonSqlRepo.scala │ │ └── UpdatePersonSqlRepoImpl.scala │ │ └── update_person_returning │ │ ├── UpdatePersonReturningSqlRepo.scala │ │ ├── UpdatePersonReturningSqlRepoImpl.scala │ │ └── UpdatePersonReturningSqlRow.scala └── src │ └── scala │ └── adventureworks │ ├── ArrayTest.scala │ ├── DSLTest.scala │ ├── DomainInsert.scala │ ├── IdentityTest.scala │ ├── JsonEquals.scala │ ├── OpenEnumTest.scala │ ├── RecordTest.scala │ ├── Reverse.scala │ ├── SeekDbTest.scala │ ├── SnapshotTest.scala │ ├── UpsertTwiceTest.scala │ ├── humanresources │ ├── department │ │ └── DepartmentTest.scala │ └── employee │ │ └── EmployeeTest.scala │ ├── person │ ├── MultiRepoTest.scala │ └── businessentityaddress │ │ └── BusinessentityaddressTest.scala │ ├── person_detail │ └── PersonDetailTest.scala │ ├── production │ └── product │ │ ├── CompositeIdsTest.scala │ │ ├── ProductTest.scala │ │ ├── RepoTest.scala │ │ └── SeekTest.scala │ ├── publicc │ └── UsersRepoTest.scala │ ├── update_person_returning │ └── UpdatePersonReturningSqlRepoTest.scala │ ├── userdefined │ ├── CustomCreditcardId.scala │ └── FirstName.scala │ └── withConnection.scala └── typo ├── generated-and-checked-in └── typo │ └── generated │ ├── Text.scala │ ├── custom │ ├── comments │ │ ├── CommentsSqlRepo.scala │ │ ├── CommentsSqlRepoImpl.scala │ │ └── CommentsSqlRow.scala │ ├── constraints │ │ ├── ConstraintsSqlRepo.scala │ │ ├── ConstraintsSqlRepoImpl.scala │ │ └── ConstraintsSqlRow.scala │ ├── domains │ │ ├── DomainsSqlRepo.scala │ │ ├── DomainsSqlRepoImpl.scala │ │ └── DomainsSqlRow.scala │ ├── enums │ │ ├── EnumsSqlRepo.scala │ │ ├── EnumsSqlRepoImpl.scala │ │ └── EnumsSqlRow.scala │ ├── table_comments │ │ ├── TableCommentsSqlRepo.scala │ │ ├── TableCommentsSqlRepoImpl.scala │ │ └── TableCommentsSqlRow.scala │ └── view_find_all │ │ ├── ViewFindAllSqlRepo.scala │ │ ├── ViewFindAllSqlRepoImpl.scala │ │ └── ViewFindAllSqlRow.scala │ ├── customtypes │ ├── TypoAclItem.scala │ ├── TypoInstant.scala │ └── TypoRegtype.scala │ ├── frontpage │ └── Email.scala │ ├── information_schema │ ├── CardinalNumber.scala │ ├── CharacterData.scala │ ├── SqlIdentifier.scala │ ├── TimeStamp.scala │ ├── YesOrNo.scala │ ├── columns │ │ ├── ColumnsViewRepo.scala │ │ ├── ColumnsViewRepoImpl.scala │ │ └── ColumnsViewRow.scala │ ├── key_column_usage │ │ ├── KeyColumnUsageViewRepo.scala │ │ ├── KeyColumnUsageViewRepoImpl.scala │ │ └── KeyColumnUsageViewRow.scala │ ├── referential_constraints │ │ ├── ReferentialConstraintsViewRepo.scala │ │ ├── ReferentialConstraintsViewRepoImpl.scala │ │ └── ReferentialConstraintsViewRow.scala │ ├── table_constraints │ │ ├── TableConstraintsViewRepo.scala │ │ ├── TableConstraintsViewRepoImpl.scala │ │ └── TableConstraintsViewRow.scala │ └── tables │ │ ├── TablesViewRepo.scala │ │ ├── TablesViewRepoImpl.scala │ │ └── TablesViewRow.scala │ ├── package.scala │ ├── pg_catalog │ ├── pg_namespace │ │ ├── PgNamespaceRepo.scala │ │ ├── PgNamespaceRepoImpl.scala │ │ └── PgNamespaceRow.scala │ └── pg_prepared_statements │ │ ├── PgPreparedStatementsViewRepo.scala │ │ ├── PgPreparedStatementsViewRepoImpl.scala │ │ └── PgPreparedStatementsViewRow.scala │ ├── public │ ├── AccountNumber.scala │ ├── Flag.scala │ ├── Mydomain.scala │ ├── Name.scala │ ├── NameStyle.scala │ ├── OrderNumber.scala │ ├── Phone.scala │ └── ShortText.scala │ └── streamingInsert.scala └── src └── scala └── typo ├── Banner.scala ├── DbLibName.scala ├── Dialect.scala ├── Generated.scala ├── JsonLibName.scala ├── Lang.scala ├── MetaDb.scala ├── Naming.scala ├── NonEmptyList.scala ├── Nullability.scala ├── NullabilityOverride.scala ├── Options.scala ├── ProjectGraph.scala ├── RelPath.scala ├── SchemaMode.scala ├── Scope.scala ├── Selector.scala ├── Source.scala ├── TypeOverride.scala ├── TypeSupport.scala ├── TypesJava.scala ├── TypesKotlin.scala ├── TypesScala.scala ├── TypoDataSource.scala ├── TypoLogger.scala ├── db.scala ├── generateFromDb.scala ├── internal ├── ArrayName.scala ├── ComputedColumn.scala ├── ComputedDefault.scala ├── ComputedDomain.scala ├── ComputedNames.scala ├── ComputedRowUnsaved.scala ├── ComputedSqlFile.scala ├── ComputedStringEnum.scala ├── ComputedTable.scala ├── ComputedTestInserts.scala ├── ComputedView.scala ├── CustomType.scala ├── CustomTypes.scala ├── DebugJson.scala ├── FileSync.scala ├── FkAnalysis.scala ├── HasSource.scala ├── IdComputed.scala ├── InternalOptions.scala ├── Lazy.scala ├── RepoMethod.scala ├── TypeMapperDb.scala ├── TypeMapperJvm.scala ├── TypeMapperJvmNew.scala ├── TypeMapperJvmOld.scala ├── analysis │ ├── ColumnNullable.scala │ ├── DecomposedSql.scala │ ├── JdbcMetadata.scala │ ├── JdbcType.scala │ ├── MaybeReturnsRows.scala │ ├── MetadataColumn.scala │ ├── MetadataParameterColumn.scala │ ├── NullabilityFromExplain.scala │ ├── ParameterMode.scala │ ├── ParameterNullable.scala │ └── ParsedName.scala ├── codegen │ ├── DbLib.scala │ ├── DbLibAnorm.scala │ ├── DbLibDoobie.scala │ ├── DbLibTextImplementations.scala │ ├── DbLibTextSupport.scala │ ├── DbLibTypo.scala │ ├── DbLibZioJdbc.scala │ ├── FileCustomType.scala │ ├── FileDefault.scala │ ├── FileDomain.scala │ ├── FilePackageObject.scala │ ├── FileStringEnum.scala │ ├── FileTestInserts.scala │ ├── FilesRelation.scala │ ├── FilesSqlFile.scala │ ├── FilesTable.scala │ ├── FilesView.scala │ ├── JsonLib.scala │ ├── JsonLibCirce.scala │ ├── JsonLibJackson.scala │ ├── JsonLibPlay.scala │ ├── JsonLibZioJson.scala │ ├── LangJava.scala │ ├── LangKotlin.scala │ ├── LangScala.scala │ ├── SqlCast.scala │ ├── ToCode.scala │ ├── addPackageAndImports.scala │ └── package.scala ├── compat.scala ├── findTypeFromFk.scala ├── forget.scala ├── generate.scala ├── metadb │ ├── Enums.scala │ ├── ForeignKeys.scala │ ├── OpenEnum.scala │ ├── PrimaryKeys.scala │ └── UniqueKeys.scala ├── minimize.scala ├── quote.scala ├── rewriteDependentData.scala └── sqlfiles │ ├── SqlFile.scala │ └── readSqlFileDirectories.scala ├── jvm.scala └── openapi ├── ApiTypes.scala ├── ModelClass.scala ├── OpenApiCodegen.scala ├── OpenApiError.scala ├── OpenApiOptions.scala ├── ParsedSpec.scala ├── SumType.scala ├── TypeInfo.scala ├── codegen ├── ApiCodegen.scala ├── FrameworkSupport.scala ├── JsonLibSupport.scala ├── ModelCodegen.scala ├── TypeMapper.scala └── ValidationSupport.scala ├── parser ├── ApiExtractor.scala ├── ModelExtractor.scala ├── OpenApiParser.scala ├── SpecValidator.scala └── TypeResolver.scala └── testdata ├── stripe-spec3.yaml └── test-features.yaml /.claude/settings.local.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/.claude/settings.local.json -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/deploy-docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/.github/workflows/deploy-docs.yml -------------------------------------------------------------------------------- /.github/workflows/docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/.github/workflows/docker.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/.gitignore -------------------------------------------------------------------------------- /.mise.toml: -------------------------------------------------------------------------------- 1 | [tools] 2 | coursier = "latest" 3 | -------------------------------------------------------------------------------- /.scalafmt.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/.scalafmt.conf -------------------------------------------------------------------------------- /CLAUDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/CLAUDE.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/README.md -------------------------------------------------------------------------------- /adventureworks_sql/person_detail.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/adventureworks_sql/person_detail.sql -------------------------------------------------------------------------------- /adventureworks_sql/person_dynamic.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/adventureworks_sql/person_dynamic.sql -------------------------------------------------------------------------------- /adventureworks_sql/person_row_join.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/adventureworks_sql/person_row_join.sql -------------------------------------------------------------------------------- /adventureworks_sql/update_person.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/adventureworks_sql/update_person.sql -------------------------------------------------------------------------------- /adventureworks_sql/update_person_returning.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/adventureworks_sql/update_person_returning.sql -------------------------------------------------------------------------------- /bleep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/bleep.yaml -------------------------------------------------------------------------------- /contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/contributing.md -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/docker/Dockerfile -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/gradlew.bat -------------------------------------------------------------------------------- /init/data/frontpage/complex-query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/init/data/frontpage/complex-query.sql -------------------------------------------------------------------------------- /init/data/frontpage/schema.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/init/data/frontpage/schema.sql -------------------------------------------------------------------------------- /init/data/frontpage/update-user-status.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/init/data/frontpage/update-user-status.sql -------------------------------------------------------------------------------- /init/data/frontpage/user-analytics.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/init/data/frontpage/user-analytics.sql -------------------------------------------------------------------------------- /init/data/install.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/init/data/install.sql -------------------------------------------------------------------------------- /init/data/issue148.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/init/data/issue148.sql -------------------------------------------------------------------------------- /init/data/test-tables.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/init/data/test-tables.sql -------------------------------------------------------------------------------- /init/install.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/init/install.sh -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/AnimalsApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/AnimalsApi.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/AnimalsApiClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/AnimalsApiClient.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/AnimalsApiServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/AnimalsApiServer.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/BadRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/BadRequest.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/ClientError4XX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/ClientError4XX.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/Created.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/Created.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/NotFound.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/NotFound.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/Ok.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/Ok.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/PetsApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/PetsApi.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/PetsApiClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/PetsApiClient.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/PetsApiServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/PetsApiServer.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/Response200404.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/Response200404.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/Response2004XX5XX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/Response2004XX5XX.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/Response201400.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/Response201400.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/api/ServerError5XX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/api/ServerError5XX.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/Address.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/Address.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/Animal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/Animal.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/BaseEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/BaseEntity.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/Bird.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/Bird.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/Cat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/Cat.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/Currency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/Currency.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/Dog.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/Email.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/Email.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/Error.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/Error.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/Money.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/Money.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/OptionalInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/OptionalInfo.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/Owner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/Owner.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/Pet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/Pet.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/PetCreate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/PetCreate.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/PetId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/PetId.java -------------------------------------------------------------------------------- /openapi-test-java-server-jaxrs-client-jdk/testapi/model/PetStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-jaxrs-client-jdk/testapi/model/PetStatus.java -------------------------------------------------------------------------------- /openapi-test-java-server-quarkus-reactive-client-jdk/testapi/api/Ok.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-quarkus-reactive-client-jdk/testapi/api/Ok.java -------------------------------------------------------------------------------- /openapi-test-java-server-quarkus-reactive-client-jdk/testapi/model/Bird.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-quarkus-reactive-client-jdk/testapi/model/Bird.java -------------------------------------------------------------------------------- /openapi-test-java-server-quarkus-reactive-client-jdk/testapi/model/Cat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-quarkus-reactive-client-jdk/testapi/model/Cat.java -------------------------------------------------------------------------------- /openapi-test-java-server-quarkus-reactive-client-jdk/testapi/model/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-quarkus-reactive-client-jdk/testapi/model/Dog.java -------------------------------------------------------------------------------- /openapi-test-java-server-quarkus-reactive-client-jdk/testapi/model/Pet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-quarkus-reactive-client-jdk/testapi/model/Pet.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/AnimalsApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/AnimalsApi.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/AnimalsApiClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/AnimalsApiClient.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/AnimalsApiServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/AnimalsApiServer.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/BadRequest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/BadRequest.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/ClientError4XX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/ClientError4XX.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/Created.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/Created.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/NotFound.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/NotFound.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/Ok.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/Ok.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/PetsApi.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/PetsApi.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/PetsApiClient.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/PetsApiClient.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/PetsApiServer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/PetsApiServer.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/Response200404.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/Response200404.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/Response201400.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/Response201400.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/api/ServerError5XX.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/api/ServerError5XX.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/Address.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/Address.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/Animal.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/Animal.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/BaseEntity.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/BaseEntity.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/Bird.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/Bird.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/Cat.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/Cat.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/Currency.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/Currency.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/Dog.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/Dog.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/Email.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/Email.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/Error.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/Error.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/Money.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/Money.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/OptionalInfo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/OptionalInfo.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/Owner.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/Owner.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/Pet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/Pet.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/PetCreate.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/PetCreate.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/PetId.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/PetId.java -------------------------------------------------------------------------------- /openapi-test-java-server-spring-client-jdk/testapi/model/PetStatus.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-java-server-spring-client-jdk/testapi/model/PetStatus.java -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/build.gradle.kts -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/AnimalsApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/AnimalsApi.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/AnimalsApiClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/AnimalsApiClient.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/AnimalsApiServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/AnimalsApiServer.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/PetsApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/PetsApi.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/PetsApiClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/PetsApiClient.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/PetsApiServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/PetsApiServer.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/Responses.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/api/Responses.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Address.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Address.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Animal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Animal.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/BaseEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/BaseEntity.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Bird.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Bird.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Cat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Cat.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Currency.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Currency.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Dog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Dog.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Email.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Email.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Error.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Error.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Money.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Money.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/OptionalInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/OptionalInfo.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Owner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Owner.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Pet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/Pet.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/PetCreate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/PetCreate.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/PetId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/PetId.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/PetStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-jaxrs-client-jdk/testapi/model/PetStatus.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-quarkus-reactive-client-jdk/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-quarkus-reactive-client-jdk/build.gradle.kts -------------------------------------------------------------------------------- /openapi-test-kotlin-server-quarkus-reactive-client-jdk/testapi/model/Bird.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-quarkus-reactive-client-jdk/testapi/model/Bird.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-quarkus-reactive-client-jdk/testapi/model/Cat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-quarkus-reactive-client-jdk/testapi/model/Cat.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-quarkus-reactive-client-jdk/testapi/model/Dog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-quarkus-reactive-client-jdk/testapi/model/Dog.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-quarkus-reactive-client-jdk/testapi/model/Pet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-quarkus-reactive-client-jdk/testapi/model/Pet.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/build.gradle.kts -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/api/AnimalsApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/api/AnimalsApi.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/api/AnimalsApiClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/api/AnimalsApiClient.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/api/AnimalsApiServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/api/AnimalsApiServer.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/api/PetsApi.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/api/PetsApi.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/api/PetsApiClient.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/api/PetsApiClient.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/api/PetsApiServer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/api/PetsApiServer.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/api/Responses.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/api/Responses.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/Address.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/Address.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/Animal.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/Animal.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/BaseEntity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/BaseEntity.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/Bird.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/Bird.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/Cat.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/Cat.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/Currency.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/Currency.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/Dog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/Dog.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/Email.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/Email.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/Error.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/Error.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/Money.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/Money.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/OptionalInfo.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/OptionalInfo.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/Owner.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/Owner.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/Pet.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/Pet.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/PetCreate.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/PetCreate.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/PetId.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/PetId.kt -------------------------------------------------------------------------------- /openapi-test-kotlin-server-spring-client-jdk/testapi/model/PetStatus.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-kotlin-server-spring-client-jdk/testapi/model/PetStatus.kt -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/api/AnimalsApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/api/AnimalsApi.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/api/PetsApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/api/PetsApi.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/api/Responses.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/api/Responses.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/model/Address.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/model/Address.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/model/Animal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/model/Animal.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/model/Bird.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/model/Bird.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/model/Cat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/model/Cat.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/model/Currency.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/model/Currency.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/model/Dog.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/model/Dog.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/model/Email.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/model/Email.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/model/Error.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/model/Error.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/model/Money.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/model/Money.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/model/Owner.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/model/Owner.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/model/Pet.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/model/Pet.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-http4s-client-http4s/testapi/model/PetId.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-http4s-client-http4s/testapi/model/PetId.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/api/AnimalsApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/api/AnimalsApi.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/api/PetsApi.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/api/PetsApi.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/api/Responses.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/api/Responses.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/Address.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/Address.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/Animal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/Animal.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/Bird.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/Bird.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/Cat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/Cat.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/Currency.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/Currency.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/Dog.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/Dog.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/Email.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/Email.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/Error.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/Error.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/Money.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/Money.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/Owner.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/Owner.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/Pet.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/Pet.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/PetCreate.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/PetCreate.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/PetId.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/PetId.scala -------------------------------------------------------------------------------- /openapi-test-scala-server-spring-client-jdk/testapi/model/PetStatus.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/openapi-test-scala-server-spring-client-jdk/testapi/model/PetStatus.scala -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/settings.gradle.kts -------------------------------------------------------------------------------- /site-in/comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/comparison.md -------------------------------------------------------------------------------- /site-in/customization/customize-naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/customization/customize-naming.md -------------------------------------------------------------------------------- /site-in/customization/customize-nullability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/customization/customize-nullability.md -------------------------------------------------------------------------------- /site-in/customization/customize-selected-relations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/customization/customize-selected-relations.md -------------------------------------------------------------------------------- /site-in/customization/customize-sql-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/customization/customize-sql-files.md -------------------------------------------------------------------------------- /site-in/customization/customize-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/customization/customize-types.md -------------------------------------------------------------------------------- /site-in/customization/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/customization/overview.md -------------------------------------------------------------------------------- /site-in/customization/selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/customization/selector.md -------------------------------------------------------------------------------- /site-in/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/limitations.md -------------------------------------------------------------------------------- /site-in/openapi/client-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/openapi/client-generation.md -------------------------------------------------------------------------------- /site-in/openapi/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/openapi/overview.md -------------------------------------------------------------------------------- /site-in/openapi/response-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/openapi/response-types.md -------------------------------------------------------------------------------- /site-in/openapi/server-frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/openapi/server-frameworks.md -------------------------------------------------------------------------------- /site-in/openapi/type-safe-ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/openapi/type-safe-ids.md -------------------------------------------------------------------------------- /site-in/openapi/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/openapi/usage.md -------------------------------------------------------------------------------- /site-in/other-features/clickable-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/other-features/clickable-links.md -------------------------------------------------------------------------------- /site-in/other-features/constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/other-features/constraints.md -------------------------------------------------------------------------------- /site-in/other-features/dsl-in-depth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/other-features/dsl-in-depth.md -------------------------------------------------------------------------------- /site-in/other-features/faster-compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/other-features/faster-compilation.md -------------------------------------------------------------------------------- /site-in/other-features/flexible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/other-features/flexible.md -------------------------------------------------------------------------------- /site-in/other-features/generate-into-multiple-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/other-features/generate-into-multiple-projects.md -------------------------------------------------------------------------------- /site-in/other-features/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/other-features/json.md -------------------------------------------------------------------------------- /site-in/other-features/scala-js-ready.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/other-features/scala-js-ready.md -------------------------------------------------------------------------------- /site-in/other-features/streaming-inserts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/other-features/streaming-inserts.md -------------------------------------------------------------------------------- /site-in/other-features/testing-with-random-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/other-features/testing-with-random-values.md -------------------------------------------------------------------------------- /site-in/other-features/testing-with-stubs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/other-features/testing-with-stubs.md -------------------------------------------------------------------------------- /site-in/patterns/dynamic-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/patterns/dynamic-queries.md -------------------------------------------------------------------------------- /site-in/patterns/multi-repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/patterns/multi-repo.md -------------------------------------------------------------------------------- /site-in/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/readme.md -------------------------------------------------------------------------------- /site-in/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/setup.md -------------------------------------------------------------------------------- /site-in/type-safety/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/type-safety/arrays.md -------------------------------------------------------------------------------- /site-in/type-safety/date-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/type-safety/date-time.md -------------------------------------------------------------------------------- /site-in/type-safety/defaulted-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/type-safety/defaulted-types.md -------------------------------------------------------------------------------- /site-in/type-safety/domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/type-safety/domains.md -------------------------------------------------------------------------------- /site-in/type-safety/id-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/type-safety/id-types.md -------------------------------------------------------------------------------- /site-in/type-safety/open-string-enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/type-safety/open-string-enums.md -------------------------------------------------------------------------------- /site-in/type-safety/string-enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/type-safety/string-enums.md -------------------------------------------------------------------------------- /site-in/type-safety/type-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/type-safety/type-flow.md -------------------------------------------------------------------------------- /site-in/type-safety/typo-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/type-safety/typo-types.md -------------------------------------------------------------------------------- /site-in/type-safety/user-selected-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/type-safety/user-selected-types.md -------------------------------------------------------------------------------- /site-in/what-is/dsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/what-is/dsl.md -------------------------------------------------------------------------------- /site-in/what-is/relations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/what-is/relations.md -------------------------------------------------------------------------------- /site-in/what-is/sql-is-king.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site-in/what-is/sql-is-king.md -------------------------------------------------------------------------------- /site/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/.gitignore -------------------------------------------------------------------------------- /site/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/.prettierignore -------------------------------------------------------------------------------- /site/.prettierrc.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /site/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/README.md -------------------------------------------------------------------------------- /site/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/babel.config.js -------------------------------------------------------------------------------- /site/blog/2023-11-24-hello-zio.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/blog/2023-11-24-hello-zio.md -------------------------------------------------------------------------------- /site/blog/2023-12-17-the-cost-of-implicits.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/blog/2023-12-17-the-cost-of-implicits.mdx -------------------------------------------------------------------------------- /site/blog/emailaddress/EmailaddressFields.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/blog/emailaddress/EmailaddressFields.scala -------------------------------------------------------------------------------- /site/blog/emailaddress/EmailaddressId.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/blog/emailaddress/EmailaddressId.scala -------------------------------------------------------------------------------- /site/blog/emailaddress/EmailaddressRepo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/blog/emailaddress/EmailaddressRepo.scala -------------------------------------------------------------------------------- /site/blog/emailaddress/EmailaddressRepoImpl.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/blog/emailaddress/EmailaddressRepoImpl.scala -------------------------------------------------------------------------------- /site/blog/emailaddress/EmailaddressRepoMock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/blog/emailaddress/EmailaddressRepoMock.scala -------------------------------------------------------------------------------- /site/blog/emailaddress/EmailaddressRow.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/blog/emailaddress/EmailaddressRow.scala -------------------------------------------------------------------------------- /site/blog/emailaddress/EmailaddressRowUnsaved.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/blog/emailaddress/EmailaddressRowUnsaved.scala -------------------------------------------------------------------------------- /site/blog/emailaddress/EmailaddressStructure.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/blog/emailaddress/EmailaddressStructure.scala -------------------------------------------------------------------------------- /site/docs-api/client-generation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-api/client-generation.md -------------------------------------------------------------------------------- /site/docs-api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-api/index.md -------------------------------------------------------------------------------- /site/docs-api/response-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-api/response-types.md -------------------------------------------------------------------------------- /site/docs-api/server-frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-api/server-frameworks.md -------------------------------------------------------------------------------- /site/docs-api/type-safe-ids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-api/type-safe-ids.md -------------------------------------------------------------------------------- /site/docs-api/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-api/usage.md -------------------------------------------------------------------------------- /site/docs-db/comparison.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/comparison.md -------------------------------------------------------------------------------- /site/docs-db/customization/customize-naming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/customization/customize-naming.md -------------------------------------------------------------------------------- /site/docs-db/customization/customize-nullability.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/customization/customize-nullability.md -------------------------------------------------------------------------------- /site/docs-db/customization/customize-selected-relations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/customization/customize-selected-relations.md -------------------------------------------------------------------------------- /site/docs-db/customization/customize-sql-files.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/customization/customize-sql-files.md -------------------------------------------------------------------------------- /site/docs-db/customization/customize-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/customization/customize-types.md -------------------------------------------------------------------------------- /site/docs-db/customization/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/customization/overview.md -------------------------------------------------------------------------------- /site/docs-db/customization/selector.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/customization/selector.md -------------------------------------------------------------------------------- /site/docs-db/limitations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/limitations.md -------------------------------------------------------------------------------- /site/docs-db/other-features/clickable-links.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/other-features/clickable-links.md -------------------------------------------------------------------------------- /site/docs-db/other-features/constraints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/other-features/constraints.md -------------------------------------------------------------------------------- /site/docs-db/other-features/dsl-in-depth.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/other-features/dsl-in-depth.md -------------------------------------------------------------------------------- /site/docs-db/other-features/faster-compilation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/other-features/faster-compilation.md -------------------------------------------------------------------------------- /site/docs-db/other-features/flexible.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/other-features/flexible.md -------------------------------------------------------------------------------- /site/docs-db/other-features/generate-into-multiple-projects.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/other-features/generate-into-multiple-projects.md -------------------------------------------------------------------------------- /site/docs-db/other-features/json.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/other-features/json.md -------------------------------------------------------------------------------- /site/docs-db/other-features/scala-js-ready.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/other-features/scala-js-ready.md -------------------------------------------------------------------------------- /site/docs-db/other-features/streaming-inserts.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/other-features/streaming-inserts.md -------------------------------------------------------------------------------- /site/docs-db/other-features/testing-with-random-values.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/other-features/testing-with-random-values.md -------------------------------------------------------------------------------- /site/docs-db/other-features/testing-with-stubs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/other-features/testing-with-stubs.md -------------------------------------------------------------------------------- /site/docs-db/patterns/dynamic-queries.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/patterns/dynamic-queries.md -------------------------------------------------------------------------------- /site/docs-db/patterns/multi-repo.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/patterns/multi-repo.md -------------------------------------------------------------------------------- /site/docs-db/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/readme.md -------------------------------------------------------------------------------- /site/docs-db/setup.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/setup.md -------------------------------------------------------------------------------- /site/docs-db/type-safety/arrays.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/type-safety/arrays.md -------------------------------------------------------------------------------- /site/docs-db/type-safety/date-time.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/type-safety/date-time.md -------------------------------------------------------------------------------- /site/docs-db/type-safety/defaulted-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/type-safety/defaulted-types.md -------------------------------------------------------------------------------- /site/docs-db/type-safety/domains.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/type-safety/domains.md -------------------------------------------------------------------------------- /site/docs-db/type-safety/id-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/type-safety/id-types.md -------------------------------------------------------------------------------- /site/docs-db/type-safety/open-string-enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/type-safety/open-string-enums.md -------------------------------------------------------------------------------- /site/docs-db/type-safety/string-enums.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/type-safety/string-enums.md -------------------------------------------------------------------------------- /site/docs-db/type-safety/type-flow.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/type-safety/type-flow.md -------------------------------------------------------------------------------- /site/docs-db/type-safety/typo-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/type-safety/typo-types.md -------------------------------------------------------------------------------- /site/docs-db/type-safety/user-selected-types.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/type-safety/user-selected-types.md -------------------------------------------------------------------------------- /site/docs-db/what-is/dsl.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/what-is/dsl.md -------------------------------------------------------------------------------- /site/docs-db/what-is/relations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/what-is/relations.md -------------------------------------------------------------------------------- /site/docs-db/what-is/sql-is-king.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docs-db/what-is/sql-is-king.md -------------------------------------------------------------------------------- /site/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/docusaurus.config.js -------------------------------------------------------------------------------- /site/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/package-lock.json -------------------------------------------------------------------------------- /site/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/package.json -------------------------------------------------------------------------------- /site/scripts/generate-favicon.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/scripts/generate-favicon.js -------------------------------------------------------------------------------- /site/scripts/generate-logo.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/scripts/generate-logo.js -------------------------------------------------------------------------------- /site/sidebars-api.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/sidebars-api.js -------------------------------------------------------------------------------- /site/sidebars-db.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/sidebars-db.js -------------------------------------------------------------------------------- /site/src/components/DSLShowcase/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/DSLShowcase/index.js -------------------------------------------------------------------------------- /site/src/components/DSLShowcase/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/DSLShowcase/styles.module.css -------------------------------------------------------------------------------- /site/src/components/FeatureShowcase/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/FeatureShowcase/index.js -------------------------------------------------------------------------------- /site/src/components/FeatureShowcase/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/FeatureShowcase/styles.module.css -------------------------------------------------------------------------------- /site/src/components/HomepageFeatures/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/HomepageFeatures/index.js -------------------------------------------------------------------------------- /site/src/components/HomepageFeatures/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/HomepageFeatures/styles.module.css -------------------------------------------------------------------------------- /site/src/components/KeyTakeaway.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/KeyTakeaway.jsx -------------------------------------------------------------------------------- /site/src/components/MagicalWizard/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/MagicalWizard/index.js -------------------------------------------------------------------------------- /site/src/components/MagicalWizard/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/MagicalWizard/styles.module.css -------------------------------------------------------------------------------- /site/src/components/ScalaCompileTimesChart.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/ScalaCompileTimesChart.jsx -------------------------------------------------------------------------------- /site/src/components/TestingShowcase/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/TestingShowcase/index.js -------------------------------------------------------------------------------- /site/src/components/TestingShowcase/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/TestingShowcase/styles.module.css -------------------------------------------------------------------------------- /site/src/components/TypeSafetyDemo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/TypeSafetyDemo/index.js -------------------------------------------------------------------------------- /site/src/components/TypeSafetyDemo/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/TypeSafetyDemo/styles.module.css -------------------------------------------------------------------------------- /site/src/components/TypoLogo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/TypoLogo/index.js -------------------------------------------------------------------------------- /site/src/components/TypoLogo/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/TypoLogo/styles.module.css -------------------------------------------------------------------------------- /site/src/components/WhyTypo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/WhyTypo/index.js -------------------------------------------------------------------------------- /site/src/components/WhyTypo/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/components/WhyTypo/styles.module.css -------------------------------------------------------------------------------- /site/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/css/custom.css -------------------------------------------------------------------------------- /site/src/pages/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/pages/index.js -------------------------------------------------------------------------------- /site/src/pages/index.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/pages/index.module.css -------------------------------------------------------------------------------- /site/src/pages/markdown-page.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/pages/markdown-page.md -------------------------------------------------------------------------------- /site/src/theme/Logo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/src/theme/Logo/index.js -------------------------------------------------------------------------------- /site/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /site/static/CNAME: -------------------------------------------------------------------------------- 1 | typr.dev -------------------------------------------------------------------------------- /site/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/static/img/docusaurus.png -------------------------------------------------------------------------------- /site/static/img/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/static/img/favicon.ico -------------------------------------------------------------------------------- /site/static/img/favicon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/static/img/favicon.svg -------------------------------------------------------------------------------- /site/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/static/img/logo.svg -------------------------------------------------------------------------------- /site/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /site/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /site/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /site/tracker.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/site/tracker.js -------------------------------------------------------------------------------- /snapshot-tests/anorm-sql/CompositeIdsTest/query2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/anorm-sql/CompositeIdsTest/query2.sql -------------------------------------------------------------------------------- /snapshot-tests/anorm-sql/DSLTest/doubled.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/anorm-sql/DSLTest/doubled.sql -------------------------------------------------------------------------------- /snapshot-tests/anorm-sql/ProductTest/delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/anorm-sql/ProductTest/delete.sql -------------------------------------------------------------------------------- /snapshot-tests/anorm-sql/ProductTest/leftJoined.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/anorm-sql/ProductTest/leftJoined.sql -------------------------------------------------------------------------------- /snapshot-tests/anorm-sql/ProductTest/q.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/anorm-sql/ProductTest/q.sql -------------------------------------------------------------------------------- /snapshot-tests/anorm-sql/ProductTest/q2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/anorm-sql/ProductTest/q2.sql -------------------------------------------------------------------------------- /snapshot-tests/anorm-sql/ProductTest/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/anorm-sql/ProductTest/query.sql -------------------------------------------------------------------------------- /snapshot-tests/anorm-sql/ProductTest/query0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/anorm-sql/ProductTest/query0.sql -------------------------------------------------------------------------------- /snapshot-tests/anorm-sql/ProductTest/updateReturning.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/anorm-sql/ProductTest/updateReturning.sql -------------------------------------------------------------------------------- /snapshot-tests/anorm-sql/SeekTest/complex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/anorm-sql/SeekTest/complex.sql -------------------------------------------------------------------------------- /snapshot-tests/anorm-sql/SeekTest/uniform-ascending.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/anorm-sql/SeekTest/uniform-ascending.sql -------------------------------------------------------------------------------- /snapshot-tests/anorm-sql/SeekTest/uniform-descending.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/anorm-sql/SeekTest/uniform-descending.sql -------------------------------------------------------------------------------- /snapshot-tests/dooble-sql/CompositeIdsTest/query2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/dooble-sql/CompositeIdsTest/query2.sql -------------------------------------------------------------------------------- /snapshot-tests/dooble-sql/DSLTest/doubled.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/dooble-sql/DSLTest/doubled.sql -------------------------------------------------------------------------------- /snapshot-tests/dooble-sql/ProductTest/delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/dooble-sql/ProductTest/delete.sql -------------------------------------------------------------------------------- /snapshot-tests/dooble-sql/ProductTest/leftJoined.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/dooble-sql/ProductTest/leftJoined.sql -------------------------------------------------------------------------------- /snapshot-tests/dooble-sql/ProductTest/q.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/dooble-sql/ProductTest/q.sql -------------------------------------------------------------------------------- /snapshot-tests/dooble-sql/ProductTest/q2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/dooble-sql/ProductTest/q2.sql -------------------------------------------------------------------------------- /snapshot-tests/dooble-sql/ProductTest/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/dooble-sql/ProductTest/query.sql -------------------------------------------------------------------------------- /snapshot-tests/dooble-sql/ProductTest/query0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/dooble-sql/ProductTest/query0.sql -------------------------------------------------------------------------------- /snapshot-tests/dooble-sql/ProductTest/updateReturning.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/dooble-sql/ProductTest/updateReturning.sql -------------------------------------------------------------------------------- /snapshot-tests/dooble-sql/SeekTest/complex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/dooble-sql/SeekTest/complex.sql -------------------------------------------------------------------------------- /snapshot-tests/dooble-sql/SeekTest/uniform-ascending.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/dooble-sql/SeekTest/uniform-ascending.sql -------------------------------------------------------------------------------- /snapshot-tests/dooble-sql/SeekTest/uniform-descending.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/dooble-sql/SeekTest/uniform-descending.sql -------------------------------------------------------------------------------- /snapshot-tests/java-sql/CompositeIdsTest/query2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/java-sql/CompositeIdsTest/query2.sql -------------------------------------------------------------------------------- /snapshot-tests/java-sql/DSLTest/doubled.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/java-sql/DSLTest/doubled.sql -------------------------------------------------------------------------------- /snapshot-tests/java-sql/ProductTest/delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/java-sql/ProductTest/delete.sql -------------------------------------------------------------------------------- /snapshot-tests/java-sql/ProductTest/leftJoined.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/java-sql/ProductTest/leftJoined.sql -------------------------------------------------------------------------------- /snapshot-tests/java-sql/ProductTest/q.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/java-sql/ProductTest/q.sql -------------------------------------------------------------------------------- /snapshot-tests/java-sql/ProductTest/q2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/java-sql/ProductTest/q2.sql -------------------------------------------------------------------------------- /snapshot-tests/java-sql/ProductTest/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/java-sql/ProductTest/query.sql -------------------------------------------------------------------------------- /snapshot-tests/java-sql/ProductTest/query0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/java-sql/ProductTest/query0.sql -------------------------------------------------------------------------------- /snapshot-tests/java-sql/ProductTest/updateReturning.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/java-sql/ProductTest/updateReturning.sql -------------------------------------------------------------------------------- /snapshot-tests/java-sql/SeekTest/complex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/java-sql/SeekTest/complex.sql -------------------------------------------------------------------------------- /snapshot-tests/java-sql/SeekTest/uniform-ascending.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/java-sql/SeekTest/uniform-ascending.sql -------------------------------------------------------------------------------- /snapshot-tests/java-sql/SeekTest/uniform-descending.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/java-sql/SeekTest/uniform-descending.sql -------------------------------------------------------------------------------- /snapshot-tests/kotlin-sql/CompositeIdsTest/query2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/kotlin-sql/CompositeIdsTest/query2.sql -------------------------------------------------------------------------------- /snapshot-tests/kotlin-sql/DSLTest/doubled.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/kotlin-sql/DSLTest/doubled.sql -------------------------------------------------------------------------------- /snapshot-tests/kotlin-sql/ProductTest/delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/kotlin-sql/ProductTest/delete.sql -------------------------------------------------------------------------------- /snapshot-tests/kotlin-sql/ProductTest/leftJoined.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/kotlin-sql/ProductTest/leftJoined.sql -------------------------------------------------------------------------------- /snapshot-tests/kotlin-sql/ProductTest/q.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/kotlin-sql/ProductTest/q.sql -------------------------------------------------------------------------------- /snapshot-tests/kotlin-sql/ProductTest/q2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/kotlin-sql/ProductTest/q2.sql -------------------------------------------------------------------------------- /snapshot-tests/kotlin-sql/ProductTest/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/kotlin-sql/ProductTest/query.sql -------------------------------------------------------------------------------- /snapshot-tests/kotlin-sql/ProductTest/query0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/kotlin-sql/ProductTest/query0.sql -------------------------------------------------------------------------------- /snapshot-tests/kotlin-sql/ProductTest/updateReturning.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/kotlin-sql/ProductTest/updateReturning.sql -------------------------------------------------------------------------------- /snapshot-tests/kotlin-sql/SeekTest/complex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/kotlin-sql/SeekTest/complex.sql -------------------------------------------------------------------------------- /snapshot-tests/kotlin-sql/SeekTest/uniform-ascending.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/kotlin-sql/SeekTest/uniform-ascending.sql -------------------------------------------------------------------------------- /snapshot-tests/kotlin-sql/SeekTest/uniform-descending.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/kotlin-sql/SeekTest/uniform-descending.sql -------------------------------------------------------------------------------- /snapshot-tests/zio-jdbc-sql/CompositeIdsTest/query2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/zio-jdbc-sql/CompositeIdsTest/query2.sql -------------------------------------------------------------------------------- /snapshot-tests/zio-jdbc-sql/DSLTest/doubled.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/zio-jdbc-sql/DSLTest/doubled.sql -------------------------------------------------------------------------------- /snapshot-tests/zio-jdbc-sql/ProductTest/delete.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/zio-jdbc-sql/ProductTest/delete.sql -------------------------------------------------------------------------------- /snapshot-tests/zio-jdbc-sql/ProductTest/leftJoined.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/zio-jdbc-sql/ProductTest/leftJoined.sql -------------------------------------------------------------------------------- /snapshot-tests/zio-jdbc-sql/ProductTest/q.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/zio-jdbc-sql/ProductTest/q.sql -------------------------------------------------------------------------------- /snapshot-tests/zio-jdbc-sql/ProductTest/q2.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/zio-jdbc-sql/ProductTest/q2.sql -------------------------------------------------------------------------------- /snapshot-tests/zio-jdbc-sql/ProductTest/query.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/zio-jdbc-sql/ProductTest/query.sql -------------------------------------------------------------------------------- /snapshot-tests/zio-jdbc-sql/ProductTest/query0.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/zio-jdbc-sql/ProductTest/query0.sql -------------------------------------------------------------------------------- /snapshot-tests/zio-jdbc-sql/ProductTest/updateReturning.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/zio-jdbc-sql/ProductTest/updateReturning.sql -------------------------------------------------------------------------------- /snapshot-tests/zio-jdbc-sql/SeekTest/complex.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/zio-jdbc-sql/SeekTest/complex.sql -------------------------------------------------------------------------------- /snapshot-tests/zio-jdbc-sql/SeekTest/uniform-ascending.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/zio-jdbc-sql/SeekTest/uniform-ascending.sql -------------------------------------------------------------------------------- /snapshot-tests/zio-jdbc-sql/SeekTest/uniform-descending.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/snapshot-tests/zio-jdbc-sql/SeekTest/uniform-descending.sql -------------------------------------------------------------------------------- /sql/custom/comments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/sql/custom/comments.sql -------------------------------------------------------------------------------- /sql/custom/constraints.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/sql/custom/constraints.sql -------------------------------------------------------------------------------- /sql/custom/domains.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/sql/custom/domains.sql -------------------------------------------------------------------------------- /sql/custom/enums.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/sql/custom/enums.sql -------------------------------------------------------------------------------- /sql/custom/table_comments.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/sql/custom/table_comments.sql -------------------------------------------------------------------------------- /sql/custom/view_find_all.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/sql/custom/view_find_all.sql -------------------------------------------------------------------------------- /tests/src/scala/typo/DbTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/tests/src/scala/typo/DbTest.scala -------------------------------------------------------------------------------- /tests/src/scala/typo/NamingTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/tests/src/scala/typo/NamingTest.scala -------------------------------------------------------------------------------- /tests/src/scala/typo/internal/FkAnalysisTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/tests/src/scala/typo/internal/FkAnalysisTest.scala -------------------------------------------------------------------------------- /tests/src/scala/typo/internal/codegen/CodeFormattingTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/tests/src/scala/typo/internal/codegen/CodeFormattingTest.scala -------------------------------------------------------------------------------- /tests/src/scala/typo/internal/sqlfiles/DecomposedSqlTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/tests/src/scala/typo/internal/sqlfiles/DecomposedSqlTest.scala -------------------------------------------------------------------------------- /tests/src/scala/typo/internal/sqlfiles/NullabilityFromExplainTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/tests/src/scala/typo/internal/sqlfiles/NullabilityFromExplainTest.scala -------------------------------------------------------------------------------- /tests/src/scala/typo/openapi/parser/TypeResolverTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/tests/src/scala/typo/openapi/parser/TypeResolverTest.scala -------------------------------------------------------------------------------- /typo-dsl-anorm/src/scala/typo/dsl/DeleteBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-anorm/src/scala/typo/dsl/DeleteBuilder.scala -------------------------------------------------------------------------------- /typo-dsl-anorm/src/scala/typo/dsl/Fragment.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-anorm/src/scala/typo/dsl/Fragment.scala -------------------------------------------------------------------------------- /typo-dsl-anorm/src/scala/typo/dsl/SelectBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-anorm/src/scala/typo/dsl/SelectBuilder.scala -------------------------------------------------------------------------------- /typo-dsl-anorm/src/scala/typo/dsl/SelectBuilderMock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-anorm/src/scala/typo/dsl/SelectBuilderMock.scala -------------------------------------------------------------------------------- /typo-dsl-anorm/src/scala/typo/dsl/SelectBuilderSql.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-anorm/src/scala/typo/dsl/SelectBuilderSql.scala -------------------------------------------------------------------------------- /typo-dsl-anorm/src/scala/typo/dsl/SelectParams.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-anorm/src/scala/typo/dsl/SelectParams.scala -------------------------------------------------------------------------------- /typo-dsl-anorm/src/scala/typo/dsl/SortOrder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-anorm/src/scala/typo/dsl/SortOrder.scala -------------------------------------------------------------------------------- /typo-dsl-anorm/src/scala/typo/dsl/SqlExpr.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-anorm/src/scala/typo/dsl/SqlExpr.scala -------------------------------------------------------------------------------- /typo-dsl-anorm/src/scala/typo/dsl/UpdateBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-anorm/src/scala/typo/dsl/UpdateBuilder.scala -------------------------------------------------------------------------------- /typo-dsl-doobie/src/scala/typo/dsl/DeleteBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-doobie/src/scala/typo/dsl/DeleteBuilder.scala -------------------------------------------------------------------------------- /typo-dsl-doobie/src/scala/typo/dsl/SelectBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-doobie/src/scala/typo/dsl/SelectBuilder.scala -------------------------------------------------------------------------------- /typo-dsl-doobie/src/scala/typo/dsl/SelectBuilderMock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-doobie/src/scala/typo/dsl/SelectBuilderMock.scala -------------------------------------------------------------------------------- /typo-dsl-doobie/src/scala/typo/dsl/SelectBuilderSql.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-doobie/src/scala/typo/dsl/SelectBuilderSql.scala -------------------------------------------------------------------------------- /typo-dsl-doobie/src/scala/typo/dsl/SelectParams.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-doobie/src/scala/typo/dsl/SelectParams.scala -------------------------------------------------------------------------------- /typo-dsl-doobie/src/scala/typo/dsl/SortOrder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-doobie/src/scala/typo/dsl/SortOrder.scala -------------------------------------------------------------------------------- /typo-dsl-doobie/src/scala/typo/dsl/SqlExpr.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-doobie/src/scala/typo/dsl/SqlExpr.scala -------------------------------------------------------------------------------- /typo-dsl-doobie/src/scala/typo/dsl/UpdateBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-doobie/src/scala/typo/dsl/UpdateBuilder.scala -------------------------------------------------------------------------------- /typo-dsl-doobie/src/scala/typo/dsl/internal/mkFragment.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-doobie/src/scala/typo/dsl/internal/mkFragment.scala -------------------------------------------------------------------------------- /typo-dsl-doobie/src/scala/typo/dsl/pagination/SortOrderRepr.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-doobie/src/scala/typo/dsl/pagination/SortOrderRepr.scala -------------------------------------------------------------------------------- /typo-dsl-java/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/build.gradle.kts -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/Bijection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/Bijection.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/DeleteBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/DeleteBuilder.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/DeleteBuilderSql.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/DeleteBuilderSql.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/DeleteParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/DeleteParams.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/ForeignKey.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/ForeignKey.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/Like.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/Like.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/OrderByOrSeek.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/OrderByOrSeek.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/Path.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/Path.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/RenderCtx.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/RenderCtx.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/SelectBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/SelectBuilder.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/SelectBuilderMock.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/SelectBuilderMock.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/SelectBuilderSql.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/SelectBuilderSql.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/SelectParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/SelectParams.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/SortOrder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/SortOrder.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/SqlExpr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/SqlExpr.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/SqlExprVisitor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/SqlExprVisitor.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/SqlFunction1.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/SqlFunction1.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/SqlFunction2.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/SqlFunction2.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/SqlFunction3.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/SqlFunction3.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/SqlOperator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/SqlOperator.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/Structure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/Structure.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/TriFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/TriFunction.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/UpdateBuilder.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/UpdateBuilder.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/UpdateBuilderSql.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/UpdateBuilderSql.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/UpdateParams.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/UpdateParams.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/example/PersonExample.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/example/PersonExample.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/internal/DummyComparator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/internal/DummyComparator.java -------------------------------------------------------------------------------- /typo-dsl-java/src/java/typo/dsl/internal/RowComparator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-java/src/java/typo/dsl/internal/RowComparator.java -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/Bijection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/Bijection.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/DeleteParams.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/DeleteParams.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/ForeignKey.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/ForeignKey.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/Like.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/Like.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/OrderByOrSeek.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/OrderByOrSeek.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/Path.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/Path.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/RenderCtx.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/RenderCtx.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/SqlFunction1.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/SqlFunction1.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/SqlFunction2.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/SqlFunction2.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/SqlFunction3.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/SqlFunction3.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/SqlOperator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/SqlOperator.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/Structure.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/Structure.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/UpdateParams.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/UpdateParams.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/internal/DummyOrdering.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/internal/DummyOrdering.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/internal/mocks.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/internal/mocks.scala -------------------------------------------------------------------------------- /typo-dsl-shared/typo/dsl/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-shared/typo/dsl/package.scala -------------------------------------------------------------------------------- /typo-dsl-zio-jdbc/src/scala/typo/dsl/DeleteBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-zio-jdbc/src/scala/typo/dsl/DeleteBuilder.scala -------------------------------------------------------------------------------- /typo-dsl-zio-jdbc/src/scala/typo/dsl/PGType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-zio-jdbc/src/scala/typo/dsl/PGType.scala -------------------------------------------------------------------------------- /typo-dsl-zio-jdbc/src/scala/typo/dsl/SelectBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-zio-jdbc/src/scala/typo/dsl/SelectBuilder.scala -------------------------------------------------------------------------------- /typo-dsl-zio-jdbc/src/scala/typo/dsl/SelectBuilderMock.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-zio-jdbc/src/scala/typo/dsl/SelectBuilderMock.scala -------------------------------------------------------------------------------- /typo-dsl-zio-jdbc/src/scala/typo/dsl/SelectBuilderSql.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-zio-jdbc/src/scala/typo/dsl/SelectBuilderSql.scala -------------------------------------------------------------------------------- /typo-dsl-zio-jdbc/src/scala/typo/dsl/SelectParams.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-zio-jdbc/src/scala/typo/dsl/SelectParams.scala -------------------------------------------------------------------------------- /typo-dsl-zio-jdbc/src/scala/typo/dsl/SortOrder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-zio-jdbc/src/scala/typo/dsl/SortOrder.scala -------------------------------------------------------------------------------- /typo-dsl-zio-jdbc/src/scala/typo/dsl/SqlExpr.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-zio-jdbc/src/scala/typo/dsl/SqlExpr.scala -------------------------------------------------------------------------------- /typo-dsl-zio-jdbc/src/scala/typo/dsl/UpdateBuilder.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-zio-jdbc/src/scala/typo/dsl/UpdateBuilder.scala -------------------------------------------------------------------------------- /typo-dsl-zio-jdbc/src/scala/typo/dsl/pagination/SortOrderRepr.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-dsl-zio-jdbc/src/scala/typo/dsl/pagination/SortOrderRepr.scala -------------------------------------------------------------------------------- /typo-runtime-anorm/src/scala/typo/anormruntime/PgType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-anorm/src/scala/typo/anormruntime/PgType.scala -------------------------------------------------------------------------------- /typo-runtime-anorm/src/scala/typo/anormruntime/ResultSetParser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-anorm/src/scala/typo/anormruntime/ResultSetParser.scala -------------------------------------------------------------------------------- /typo-runtime-anorm/src/scala/typo/anormruntime/RowParser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-anorm/src/scala/typo/anormruntime/RowParser.scala -------------------------------------------------------------------------------- /typo-runtime-anorm/src/scala/typo/anormruntime/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-anorm/src/scala/typo/anormruntime/package.scala -------------------------------------------------------------------------------- /typo-runtime-java/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/build.gradle.kts -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/AclItem.java: -------------------------------------------------------------------------------- 1 | package typo.data; 2 | 3 | public record AclItem(String value) { 4 | } 5 | -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/AnyArray.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/AnyArray.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Arr.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Arr.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Inet.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Inet.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Int2Vector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Int2Vector.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Json.java: -------------------------------------------------------------------------------- 1 | package typo.data; 2 | 3 | public record Json(String value) { 4 | } 5 | -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Jsonb.java: -------------------------------------------------------------------------------- 1 | package typo.data; 2 | 3 | public record Jsonb(String value) { 4 | } 5 | -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Money.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Money.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/OidVector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/OidVector.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/PgNodeTree.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/PgNodeTree.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Range.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Range.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/RangeBound.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/RangeBound.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/RangeFinite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/RangeFinite.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Record.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Record.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Regclass.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Regclass.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Regconfig.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Regconfig.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Regdictionary.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Regdictionary.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Regnamespace.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Regnamespace.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Regoper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Regoper.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Regoperator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Regoperator.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Regproc.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Regproc.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Regprocedure.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Regprocedure.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Regrole.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Regrole.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Regtype.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Regtype.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Unknown.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Unknown.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Vector.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Vector.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Xid.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/data/Xid.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/data/Xml.java: -------------------------------------------------------------------------------- 1 | package typo.data; 2 | 3 | public record Xml(String value) { 4 | } 5 | -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/And.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/And.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/ArrParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/ArrParser.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/ByteArrays.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/ByteArrays.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/Either.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/Either.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/Foo.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/Foo.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/Fragment.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/Fragment.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/Operation.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/Operation.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/PgRead.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/PgRead.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/PgText.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/PgText.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/PgType.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/PgType.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/PgTypename.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/PgTypename.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/PgTypes.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/PgTypes.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/PgWrite.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/PgWrite.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/ResultSetParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/ResultSetParser.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/RowParser.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/RowParser.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/SqlBiConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/SqlBiConsumer.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/SqlConsumer.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/SqlConsumer.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/SqlFunction.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/SqlFunction.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/Transactor.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/Transactor.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/internal/RandomHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/internal/RandomHelper.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/internal/TypoPGObjectHelper.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/internal/TypoPGObjectHelper.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/internal/arrayMap.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/internal/arrayMap.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/internal/stringInterpolator.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/internal/stringInterpolator.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/internal/stripMargin.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/internal/stripMargin.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/streamingInsert.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/streamingInsert.java -------------------------------------------------------------------------------- /typo-runtime-java/src/java/typo/runtime/tester.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-java/src/java/typo/runtime/tester.java -------------------------------------------------------------------------------- /typo-runtime-scala/src/scala/typo/runtime/FragmentInterpolator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-runtime-scala/src/scala/typo/runtime/FragmentInterpolator.scala -------------------------------------------------------------------------------- /typo-scripts-doc/src/scala/scripts/GenDocumentation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-scripts-doc/src/scala/scripts/GenDocumentation.scala -------------------------------------------------------------------------------- /typo-scripts/src/scala/scripts/CompileBenchmark.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-scripts/src/scala/scripts/CompileBenchmark.scala -------------------------------------------------------------------------------- /typo-scripts/src/scala/scripts/GenHardcodedFiles.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-scripts/src/scala/scripts/GenHardcodedFiles.scala -------------------------------------------------------------------------------- /typo-scripts/src/scala/scripts/GenerateOpenApiTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-scripts/src/scala/scripts/GenerateOpenApiTest.scala -------------------------------------------------------------------------------- /typo-scripts/src/scala/scripts/GenerateStripeTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-scripts/src/scala/scripts/GenerateStripeTest.scala -------------------------------------------------------------------------------- /typo-scripts/src/scala/scripts/GeneratedAdventureWorks.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-scripts/src/scala/scripts/GeneratedAdventureWorks.scala -------------------------------------------------------------------------------- /typo-scripts/src/scala/scripts/GeneratedFrontpage.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-scripts/src/scala/scripts/GeneratedFrontpage.scala -------------------------------------------------------------------------------- /typo-scripts/src/scala/scripts/GeneratedRowParsers.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-scripts/src/scala/scripts/GeneratedRowParsers.scala -------------------------------------------------------------------------------- /typo-scripts/src/scala/scripts/GeneratedSources.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-scripts/src/scala/scripts/GeneratedSources.scala -------------------------------------------------------------------------------- /typo-scripts/src/scala/scripts/Publish.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-scripts/src/scala/scripts/Publish.scala -------------------------------------------------------------------------------- /typo-scripts/src/scala/scripts/PublishLocal.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-scripts/src/scala/scripts/PublishLocal.scala -------------------------------------------------------------------------------- /typo-scripts/src/scala/scripts/projectsToPublish.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-scripts/src/scala/scripts/projectsToPublish.scala -------------------------------------------------------------------------------- /typo-tester-anorm/generated-and-checked-in-2.13/adventureworks/Text.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/generated-and-checked-in-2.13/adventureworks/Text.scala -------------------------------------------------------------------------------- /typo-tester-anorm/generated-and-checked-in-3/adventureworks/Text.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/generated-and-checked-in-3/adventureworks/Text.scala -------------------------------------------------------------------------------- /typo-tester-anorm/generated-and-checked-in-3/adventureworks/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/generated-and-checked-in-3/adventureworks/package.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/ArrayTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/ArrayTest.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/DSLTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/DSLTest.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/DomainInsert.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/DomainInsert.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/IdentityTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/IdentityTest.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/JsonEquals.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/JsonEquals.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/OpenEnumTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/OpenEnumTest.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/RecordTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/RecordTest.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/Reverse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/Reverse.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/SeekDbTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/SeekDbTest.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/SnapshotTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/SnapshotTest.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/UpsertTwiceTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/UpsertTwiceTest.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/person/MultiRepoTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/person/MultiRepoTest.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/publicc/UsersRepoTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/publicc/UsersRepoTest.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/userdefined/FirstName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/userdefined/FirstName.scala -------------------------------------------------------------------------------- /typo-tester-anorm/src/scala/adventureworks/withConnection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-anorm/src/scala/adventureworks/withConnection.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/ArrayTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/ArrayTest.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/DSLTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/DSLTest.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/DomainInsert.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/DomainInsert.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/IdentityTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/IdentityTest.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/JsonEquals.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/JsonEquals.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/OpenEnumTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/OpenEnumTest.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/RecordTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/RecordTest.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/Reverse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/Reverse.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/SeekDbTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/SeekDbTest.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/SnapshotTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/SnapshotTest.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/UpsertTwiceTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/UpsertTwiceTest.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/person/MultiRepoTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/person/MultiRepoTest.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/publicc/UsersRepoTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/publicc/UsersRepoTest.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/userdefined/FirstName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/userdefined/FirstName.scala -------------------------------------------------------------------------------- /typo-tester-doobie/src/scala/adventureworks/withConnection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-doobie/src/scala/adventureworks/withConnection.scala -------------------------------------------------------------------------------- /typo-tester-kotlin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/build.gradle.kts -------------------------------------------------------------------------------- /typo-tester-kotlin/generated-and-checked-in/adventureworks/public/Flag.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/generated-and-checked-in/adventureworks/public/Flag.kt -------------------------------------------------------------------------------- /typo-tester-kotlin/generated-and-checked-in/adventureworks/public/Name.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/generated-and-checked-in/adventureworks/public/Name.kt -------------------------------------------------------------------------------- /typo-tester-kotlin/src/kotlin/adventureworks/DSLTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/src/kotlin/adventureworks/DSLTest.kt -------------------------------------------------------------------------------- /typo-tester-kotlin/src/kotlin/adventureworks/DomainInsertImpl.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/src/kotlin/adventureworks/DomainInsertImpl.kt -------------------------------------------------------------------------------- /typo-tester-kotlin/src/kotlin/adventureworks/IdentityTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/src/kotlin/adventureworks/IdentityTest.kt -------------------------------------------------------------------------------- /typo-tester-kotlin/src/kotlin/adventureworks/RecordTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/src/kotlin/adventureworks/RecordTest.kt -------------------------------------------------------------------------------- /typo-tester-kotlin/src/kotlin/adventureworks/SeekDbTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/src/kotlin/adventureworks/SeekDbTest.kt -------------------------------------------------------------------------------- /typo-tester-kotlin/src/kotlin/adventureworks/SnapshotTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/src/kotlin/adventureworks/SnapshotTest.kt -------------------------------------------------------------------------------- /typo-tester-kotlin/src/kotlin/adventureworks/UpsertTwiceTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/src/kotlin/adventureworks/UpsertTwiceTest.kt -------------------------------------------------------------------------------- /typo-tester-kotlin/src/kotlin/adventureworks/WithConnection.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/src/kotlin/adventureworks/WithConnection.kt -------------------------------------------------------------------------------- /typo-tester-kotlin/src/kotlin/adventureworks/person/MultiRepoTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/src/kotlin/adventureworks/person/MultiRepoTest.kt -------------------------------------------------------------------------------- /typo-tester-kotlin/src/kotlin/adventureworks/public_/OpenEnumTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/src/kotlin/adventureworks/public_/OpenEnumTest.kt -------------------------------------------------------------------------------- /typo-tester-kotlin/src/kotlin/adventureworks/userdefined/FirstName.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-kotlin/src/kotlin/adventureworks/userdefined/FirstName.kt -------------------------------------------------------------------------------- /typo-tester-typo-java/src/java/adventureworks/ArrayTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-java/src/java/adventureworks/ArrayTest.java -------------------------------------------------------------------------------- /typo-tester-typo-java/src/java/adventureworks/DSLTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-java/src/java/adventureworks/DSLTest.java -------------------------------------------------------------------------------- /typo-tester-typo-java/src/java/adventureworks/DomainInsertImpl.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-java/src/java/adventureworks/DomainInsertImpl.java -------------------------------------------------------------------------------- /typo-tester-typo-java/src/java/adventureworks/IdentityTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-java/src/java/adventureworks/IdentityTest.java -------------------------------------------------------------------------------- /typo-tester-typo-java/src/java/adventureworks/JsonEquals.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-java/src/java/adventureworks/JsonEquals.java -------------------------------------------------------------------------------- /typo-tester-typo-java/src/java/adventureworks/RecordTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-java/src/java/adventureworks/RecordTest.java -------------------------------------------------------------------------------- /typo-tester-typo-java/src/java/adventureworks/SeekDbTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-java/src/java/adventureworks/SeekDbTest.java -------------------------------------------------------------------------------- /typo-tester-typo-java/src/java/adventureworks/SnapshotTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-java/src/java/adventureworks/SnapshotTest.java -------------------------------------------------------------------------------- /typo-tester-typo-java/src/java/adventureworks/UpsertTwiceTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-java/src/java/adventureworks/UpsertTwiceTest.java -------------------------------------------------------------------------------- /typo-tester-typo-java/src/java/adventureworks/WithConnection.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-java/src/java/adventureworks/WithConnection.java -------------------------------------------------------------------------------- /typo-tester-typo-java/src/java/adventureworks/person/MultiRepoTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-java/src/java/adventureworks/person/MultiRepoTest.java -------------------------------------------------------------------------------- /typo-tester-typo-java/src/java/adventureworks/public_/OpenEnumTest.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-java/src/java/adventureworks/public_/OpenEnumTest.java -------------------------------------------------------------------------------- /typo-tester-typo-java/src/java/adventureworks/userdefined/FirstName.java: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-java/src/java/adventureworks/userdefined/FirstName.java -------------------------------------------------------------------------------- /typo-tester-typo-kotlin/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-kotlin/build.gradle.kts -------------------------------------------------------------------------------- /typo-tester-typo-kotlin/gradle.properties: -------------------------------------------------------------------------------- 1 | kotlin.daemon.jvmargs=-Xmx4g 2 | -------------------------------------------------------------------------------- /typo-tester-typo-kotlin/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-typo-kotlin/settings.gradle.kts -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/generated-and-checked-in-3/adventureworks/Text.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/generated-and-checked-in-3/adventureworks/Text.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/ArrayTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/ArrayTest.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/DSLTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/DSLTest.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/DomainInsert.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/DomainInsert.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/IdentityTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/IdentityTest.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/JsonEquals.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/JsonEquals.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/OpenEnumTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/OpenEnumTest.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/RecordTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/RecordTest.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/Reverse.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/Reverse.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/SeekDbTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/SeekDbTest.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/SnapshotTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/SnapshotTest.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/UpsertTwiceTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/UpsertTwiceTest.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/person/MultiRepoTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/person/MultiRepoTest.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/publicc/UsersRepoTest.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/publicc/UsersRepoTest.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/userdefined/FirstName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/userdefined/FirstName.scala -------------------------------------------------------------------------------- /typo-tester-zio-jdbc/src/scala/adventureworks/withConnection.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo-tester-zio-jdbc/src/scala/adventureworks/withConnection.scala -------------------------------------------------------------------------------- /typo/generated-and-checked-in/typo/generated/Text.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/generated-and-checked-in/typo/generated/Text.scala -------------------------------------------------------------------------------- /typo/generated-and-checked-in/typo/generated/frontpage/Email.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/generated-and-checked-in/typo/generated/frontpage/Email.scala -------------------------------------------------------------------------------- /typo/generated-and-checked-in/typo/generated/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/generated-and-checked-in/typo/generated/package.scala -------------------------------------------------------------------------------- /typo/generated-and-checked-in/typo/generated/public/AccountNumber.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/generated-and-checked-in/typo/generated/public/AccountNumber.scala -------------------------------------------------------------------------------- /typo/generated-and-checked-in/typo/generated/public/Flag.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/generated-and-checked-in/typo/generated/public/Flag.scala -------------------------------------------------------------------------------- /typo/generated-and-checked-in/typo/generated/public/Mydomain.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/generated-and-checked-in/typo/generated/public/Mydomain.scala -------------------------------------------------------------------------------- /typo/generated-and-checked-in/typo/generated/public/Name.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/generated-and-checked-in/typo/generated/public/Name.scala -------------------------------------------------------------------------------- /typo/generated-and-checked-in/typo/generated/public/NameStyle.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/generated-and-checked-in/typo/generated/public/NameStyle.scala -------------------------------------------------------------------------------- /typo/generated-and-checked-in/typo/generated/public/OrderNumber.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/generated-and-checked-in/typo/generated/public/OrderNumber.scala -------------------------------------------------------------------------------- /typo/generated-and-checked-in/typo/generated/public/Phone.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/generated-and-checked-in/typo/generated/public/Phone.scala -------------------------------------------------------------------------------- /typo/generated-and-checked-in/typo/generated/public/ShortText.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/generated-and-checked-in/typo/generated/public/ShortText.scala -------------------------------------------------------------------------------- /typo/generated-and-checked-in/typo/generated/streamingInsert.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/generated-and-checked-in/typo/generated/streamingInsert.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/Banner.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/Banner.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/DbLibName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/DbLibName.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/Dialect.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/Dialect.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/Generated.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/Generated.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/JsonLibName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/JsonLibName.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/Lang.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/Lang.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/MetaDb.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/MetaDb.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/Naming.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/Naming.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/NonEmptyList.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/NonEmptyList.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/Nullability.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/Nullability.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/NullabilityOverride.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/NullabilityOverride.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/Options.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/Options.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/ProjectGraph.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/ProjectGraph.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/RelPath.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/RelPath.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/SchemaMode.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/SchemaMode.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/Scope.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/Scope.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/Selector.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/Selector.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/Source.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/Source.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/TypeOverride.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/TypeOverride.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/TypeSupport.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/TypeSupport.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/TypesJava.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/TypesJava.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/TypesKotlin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/TypesKotlin.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/TypesScala.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/TypesScala.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/TypoDataSource.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/TypoDataSource.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/TypoLogger.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/TypoLogger.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/db.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/db.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/generateFromDb.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/generateFromDb.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/ArrayName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/ArrayName.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/ComputedColumn.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/ComputedColumn.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/ComputedDefault.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/ComputedDefault.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/ComputedDomain.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/ComputedDomain.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/ComputedNames.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/ComputedNames.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/ComputedRowUnsaved.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/ComputedRowUnsaved.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/ComputedSqlFile.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/ComputedSqlFile.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/ComputedStringEnum.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/ComputedStringEnum.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/ComputedTable.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/ComputedTable.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/ComputedTestInserts.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/ComputedTestInserts.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/ComputedView.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/ComputedView.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/CustomType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/CustomType.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/CustomTypes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/CustomTypes.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/DebugJson.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/DebugJson.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/FileSync.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/FileSync.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/FkAnalysis.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/FkAnalysis.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/HasSource.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/HasSource.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/IdComputed.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/IdComputed.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/InternalOptions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/InternalOptions.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/Lazy.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/Lazy.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/RepoMethod.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/RepoMethod.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/TypeMapperDb.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/TypeMapperDb.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/TypeMapperJvm.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/TypeMapperJvm.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/TypeMapperJvmNew.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/TypeMapperJvmNew.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/TypeMapperJvmOld.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/TypeMapperJvmOld.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/analysis/ColumnNullable.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/analysis/ColumnNullable.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/analysis/DecomposedSql.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/analysis/DecomposedSql.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/analysis/JdbcMetadata.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/analysis/JdbcMetadata.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/analysis/JdbcType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/analysis/JdbcType.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/analysis/MaybeReturnsRows.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/analysis/MaybeReturnsRows.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/analysis/MetadataColumn.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/analysis/MetadataColumn.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/analysis/MetadataParameterColumn.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/analysis/MetadataParameterColumn.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/analysis/NullabilityFromExplain.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/analysis/NullabilityFromExplain.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/analysis/ParameterMode.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/analysis/ParameterMode.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/analysis/ParameterNullable.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/analysis/ParameterNullable.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/analysis/ParsedName.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/analysis/ParsedName.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/DbLib.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/DbLib.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/DbLibAnorm.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/DbLibAnorm.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/DbLibDoobie.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/DbLibDoobie.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/DbLibTextImplementations.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/DbLibTextImplementations.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/DbLibTextSupport.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/DbLibTextSupport.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/DbLibTypo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/DbLibTypo.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/DbLibZioJdbc.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/DbLibZioJdbc.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/FileCustomType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/FileCustomType.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/FileDefault.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/FileDefault.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/FileDomain.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/FileDomain.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/FilePackageObject.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/FilePackageObject.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/FileStringEnum.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/FileStringEnum.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/FileTestInserts.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/FileTestInserts.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/FilesRelation.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/FilesRelation.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/FilesSqlFile.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/FilesSqlFile.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/FilesTable.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/FilesTable.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/FilesView.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/FilesView.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/JsonLib.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/JsonLib.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/JsonLibCirce.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/JsonLibCirce.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/JsonLibJackson.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/JsonLibJackson.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/JsonLibPlay.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/JsonLibPlay.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/JsonLibZioJson.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/JsonLibZioJson.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/LangJava.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/LangJava.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/LangKotlin.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/LangKotlin.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/LangScala.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/LangScala.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/SqlCast.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/SqlCast.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/ToCode.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/ToCode.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/addPackageAndImports.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/addPackageAndImports.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/codegen/package.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/codegen/package.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/compat.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/compat.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/findTypeFromFk.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/findTypeFromFk.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/forget.scala: -------------------------------------------------------------------------------- 1 | package typo.internal 2 | 3 | object forget { 4 | def apply[T](t: T): Unit = (t, ())._2 5 | } 6 | -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/generate.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/generate.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/metadb/Enums.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/metadb/Enums.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/metadb/ForeignKeys.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/metadb/ForeignKeys.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/metadb/OpenEnum.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/metadb/OpenEnum.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/metadb/PrimaryKeys.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/metadb/PrimaryKeys.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/metadb/UniqueKeys.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/metadb/UniqueKeys.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/minimize.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/minimize.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/quote.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/quote.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/rewriteDependentData.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/rewriteDependentData.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/sqlfiles/SqlFile.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/sqlfiles/SqlFile.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/internal/sqlfiles/readSqlFileDirectories.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/internal/sqlfiles/readSqlFileDirectories.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/jvm.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/jvm.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/ApiTypes.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/ApiTypes.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/ModelClass.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/ModelClass.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/OpenApiCodegen.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/OpenApiCodegen.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/OpenApiError.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/OpenApiError.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/OpenApiOptions.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/OpenApiOptions.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/ParsedSpec.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/ParsedSpec.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/SumType.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/SumType.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/TypeInfo.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/TypeInfo.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/codegen/ApiCodegen.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/codegen/ApiCodegen.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/codegen/FrameworkSupport.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/codegen/FrameworkSupport.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/codegen/JsonLibSupport.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/codegen/JsonLibSupport.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/codegen/ModelCodegen.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/codegen/ModelCodegen.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/codegen/TypeMapper.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/codegen/TypeMapper.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/codegen/ValidationSupport.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/codegen/ValidationSupport.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/parser/ApiExtractor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/parser/ApiExtractor.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/parser/ModelExtractor.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/parser/ModelExtractor.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/parser/OpenApiParser.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/parser/OpenApiParser.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/parser/SpecValidator.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/parser/SpecValidator.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/parser/TypeResolver.scala: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/parser/TypeResolver.scala -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/testdata/stripe-spec3.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/testdata/stripe-spec3.yaml -------------------------------------------------------------------------------- /typo/src/scala/typo/openapi/testdata/test-features.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/oyvindberg/typr/HEAD/typo/src/scala/typo/openapi/testdata/test-features.yaml --------------------------------------------------------------------------------