├── .dockerignore ├── .envrc ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ ├── other.md │ ├── question-installation.md │ └── question.md ├── pull_request_template.md └── workflows │ └── build.yaml ├── .gitignore ├── .gitmodules ├── .headroom.yaml ├── .hlint.yaml ├── .ormolu ├── CHANGELOG.md ├── CODEOWNERS ├── LICENSE ├── Makefile ├── README.md ├── SECURITY.md ├── cabal.project ├── cassandra-schema.cql ├── changelog.d ├── 0-release-notes │ └── .title ├── 1-api-changes │ ├── .title │ ├── add-app-fields-category-description-creator │ └── add-get-app-endpoint ├── 2-features │ ├── .title │ ├── WPB-22168 │ ├── log-errors-in-conv-migration │ ├── mls-skip-error-for-broken-groups │ └── multi-ingress-idp-domains ├── 3-bug-fixes │ ├── .title │ ├── WPB-21706 │ ├── conv-gc-grace-period │ ├── optimize-conv-member-queries │ └── provide-rabbitmq-for-brig-nonfederated ├── 4-docs │ └── .title ├── 5-internal │ ├── .title │ └── explain-MultiIngressSSO-test-helpers ├── 6-federation │ └── .title ├── mk-changelog.sh └── mk-cleanup.sh ├── charts ├── .gitignore ├── README.md ├── aws-ingress │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── ELB_account_pages_https.yaml │ │ ├── ELB_nginz_https.yaml │ │ ├── ELB_nginz_wss.yaml │ │ ├── ELB_s3minio_https.yaml │ │ ├── ELB_team_settings_https.yaml │ │ ├── ELB_webapp_https.yaml │ │ └── _helpers.tpl │ └── values.yaml ├── aws-storage │ ├── Chart.yaml │ ├── templates │ │ └── storage_classes.yaml │ └── values.yaml ├── background-worker │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cassandra-secret.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── servicemonitor.yaml │ └── values.yaml ├── backoffice │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── helpers.tpl │ │ ├── poddisruptionbudget.yaml │ │ ├── service.yaml │ │ └── tests │ │ │ ├── configmap.yaml │ │ │ ├── secret.yaml │ │ │ └── stern-integration.yaml │ └── values.yaml ├── brig │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cassandra-secret.yaml │ │ ├── conf │ │ │ ├── _turn-servers-v2.txt.tpl │ │ │ └── _turn-servers.txt.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── elasticsearch-ca-secret.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ ├── tests │ │ │ ├── brig-integration.yaml │ │ │ ├── configmap.yaml │ │ │ ├── nginz-service.yaml │ │ │ └── secret.yaml │ │ └── turnconfigmap.yaml │ └── values.yaml ├── calling-test │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── cannon │ ├── .helmignore │ ├── Chart.yaml │ ├── conf │ │ └── static │ │ │ └── zauth.acl │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cassandra-secret.yaml │ │ ├── conf │ │ │ └── _nginx.conf.tpl │ │ ├── configmap.yaml │ │ ├── headless-service.yaml │ │ ├── nginz-certificate-secret.yaml │ │ ├── nginz-certificate.yaml │ │ ├── nginz-configmap.yaml │ │ ├── nginz-secret.yaml │ │ ├── nginz-service.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret.yaml │ │ ├── servicemonitor.yaml │ │ └── statefulset.yaml │ └── values.yaml ├── cargohold │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ │ ├── cargohold-integration.yaml │ │ │ ├── configmap.yaml │ │ │ └── secret.yaml │ └── values.yaml ├── cassandra-ephemeral │ ├── Chart.yaml │ ├── requirements.yaml │ ├── templates │ │ └── helpers.tpl │ └── values.yaml ├── cassandra-external │ ├── Chart.yaml │ ├── templates │ │ ├── endpoint.yaml │ │ └── helpers.tpl │ └── values.yaml ├── cassandra-migrations │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── NOTES.txt │ │ ├── _helpers.tpl │ │ ├── cassandra-certs.yaml │ │ ├── galley-migrate-data.yaml │ │ ├── gundeck-migrate-data.yaml │ │ ├── migrate-schema.yaml │ │ └── spar-migrate-data.yaml │ └── values.yaml ├── databases-ephemeral │ ├── .helmignore │ ├── Chart.yaml │ ├── requirements.yaml │ ├── templates │ │ └── NOTES.txt │ └── values.yaml ├── demo-smtp │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── elasticsearch-curator │ ├── Chart.yaml │ ├── requirements.yaml │ └── values.yaml ├── elasticsearch-ephemeral │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cert.yaml │ │ ├── es-svc.yaml │ │ └── es.yaml │ └── values.yaml ├── elasticsearch-external │ ├── Chart.yaml │ ├── templates │ │ ├── endpoint.yaml │ │ └── helpers.tpl │ └── values.yaml ├── elasticsearch-index │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cassandra-secret.yaml │ │ ├── create-index.yaml │ │ ├── elasticsearch-ca-secret.yaml │ │ ├── helpers.tpl │ │ ├── migrate-data.yaml │ │ └── secret.yaml │ └── values.yaml ├── fake-aws-s3 │ ├── .helmignore │ ├── Chart.yaml │ ├── requirements.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ └── reaper.yaml │ └── values.yaml ├── fake-aws-ses │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── fake-aws-sns │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── fake-aws-sqs │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ └── service.yaml │ └── values.yaml ├── fake-aws │ ├── .helmignore │ ├── Chart.yaml │ ├── requirements.yaml │ ├── templates │ │ └── NOTES.txt │ └── values.yaml ├── federator │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── ca.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ │ ├── configmap.yaml │ │ │ ├── federator-integration.yaml │ │ │ └── secret.yaml │ └── values.yaml ├── fluent-bit │ ├── Chart.yaml │ ├── requirements.yaml │ └── values.yaml ├── galley │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── aws-secret.yaml │ │ ├── cassandra-secret.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ │ ├── configmap.yaml │ │ │ ├── galley-integration.yaml │ │ │ └── secret.yaml │ └── values.yaml ├── gundeck │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cassandra-secret.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── redis-ca-secret.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ ├── serviceaccount.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ │ ├── configmap.yaml │ │ │ ├── gundeck-integration.yaml │ │ │ └── secret.yaml │ └── values.yaml ├── ingress-nginx-controller │ ├── Chart.yaml │ └── values.yaml ├── integration │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cassandra-secret.yaml │ │ ├── configmap.yaml │ │ ├── ingress.yaml │ │ ├── integration-integration.yaml │ │ ├── secret.yaml │ │ └── service.yaml │ └── values.yaml ├── k8ssandra-test-cluster │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── check-cluster-job.yaml │ │ ├── jks-store-pass.yaml │ │ ├── k8ssandra-cluster.yaml │ │ ├── tls-certificate-bundle.yaml │ │ ├── tls-certificate.yaml │ │ └── tls-issuer.yaml │ └── values.yaml ├── kibana │ ├── Chart.yaml │ ├── requirements.yaml │ ├── templates │ │ └── basic-auth-secret.yaml │ └── values.yaml ├── ldap-scim-bridge │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cronjob.yaml │ │ └── secret.yaml │ └── values.yaml ├── legalhold │ ├── Chart.yaml │ ├── requirements.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── secret-tls.yaml │ │ ├── secret-token.yaml │ │ └── service.yaml │ └── values.yaml ├── metallb │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── requirements.yaml │ ├── templates │ │ └── configmap.yaml │ └── values.yaml ├── minio-external │ ├── Chart.yaml │ ├── templates │ │ ├── endpoint.yaml │ │ └── helpers.tpl │ └── values.yaml ├── mlsstats │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cronjob.yaml │ │ └── secret.yaml │ └── values.yaml ├── nginx-ingress-services │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── ca_federator.yaml │ │ ├── certificate.yaml │ │ ├── certificate_federator.yaml │ │ ├── custom_solvers_secret.yaml │ │ ├── federation-test-helper.yaml │ │ ├── ingress.yaml │ │ ├── ingress_federator.yaml │ │ ├── ingress_minio.yaml │ │ ├── issuer.yaml │ │ ├── secret.yaml │ │ ├── secret_federator.yaml │ │ └── service.yaml │ └── values.yaml ├── nginz │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── static │ │ └── conf │ │ │ └── zauth.acl │ ├── templates │ │ ├── _helpers.tpl │ │ ├── conf │ │ │ └── _nginx.conf.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── servicemonitor.yaml │ ├── values.yaml │ └── zauth.txt ├── openldap │ ├── .helmignore │ ├── Chart.yaml │ └── templates │ │ ├── openldap.yaml │ │ ├── secret-newusers.yaml │ │ └── service.yaml ├── outlook-addin │ ├── Chart.yaml │ ├── README.md │ ├── generate_jwk.py │ ├── templates │ │ ├── _helpers.tpl │ │ ├── deployment.yaml │ │ ├── ingress.yaml │ │ ├── secret-or-certificate.yaml │ │ └── service.yaml │ └── values.yaml ├── proxy │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── secret.yaml │ │ ├── service.yaml │ │ └── servicemonitor.yaml │ └── values.yaml ├── rabbitmq-external │ ├── Chart.yaml │ ├── templates │ │ ├── endpoint.yaml │ │ └── helpers.tpl │ └── values.yaml ├── rabbitmq │ ├── Chart.yaml │ ├── requirements.yaml │ └── values.yaml ├── reaper │ ├── .helmignore │ ├── Chart.yaml │ ├── README.md │ ├── scripts │ │ └── reaper.sh │ ├── templates │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ └── rbac.yaml │ └── values.yaml ├── redis-ephemeral │ ├── Chart.yaml │ ├── requirements.yaml │ └── values.yaml ├── restund │ ├── Chart.yaml │ ├── README.md │ ├── templates │ │ ├── _helpers.tpl │ │ ├── ca-configmap.yaml │ │ ├── configmap-restund-conf-template.yaml │ │ ├── secret-or-certificate.yaml │ │ ├── secret.yaml │ │ ├── service-account.yaml │ │ ├── service.yaml │ │ └── statefulset.yaml │ └── values.yaml ├── spar │ ├── .helmignore │ ├── Chart.yaml │ ├── templates │ │ ├── _helpers.tpl │ │ ├── cassandra-secret.yaml │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── poddisruptionbudget.yaml │ │ ├── service.yaml │ │ ├── servicemonitor.yaml │ │ └── tests │ │ │ ├── configmap.yaml │ │ │ ├── secret.yaml │ │ │ └── spar-integration.yaml │ └── values.yaml ├── wire-server-enterprise │ ├── Chart.yaml │ ├── templates │ │ ├── configmap.yaml │ │ ├── deployment.yaml │ │ ├── image-pull-secret.yaml │ │ ├── service.yaml │ │ └── servicemonitor.yaml │ └── values.yaml └── wire-server │ ├── .helmignore │ ├── Chart.yaml │ ├── requirements.yaml │ ├── templates │ └── NOTES.txt │ └── values.yaml ├── dashboards ├── message-stats.json └── services.json ├── deploy └── dockerephemeral │ ├── build │ ├── Makefile │ └── README.md │ ├── coredns-config │ ├── Corefile │ └── db.example.com │ ├── db-migrate │ ├── brig-index.sh │ ├── brig-schema.sh │ ├── galley-schema.sh │ ├── gundeck-schema.sh │ └── spar-schema.sh │ ├── docker-compose.yaml │ ├── docker │ ├── elasticmq.conf │ ├── elasticsearch-ca.pem │ ├── elasticsearch-cert.pem │ ├── elasticsearch-key.pem │ ├── opensearch │ │ ├── opensearch-security │ │ │ ├── action_groups.yml │ │ │ ├── allowlist.yml │ │ │ ├── config.yml │ │ │ ├── internal_users.yml │ │ │ ├── nodes_dn.yml │ │ │ ├── roles.yml │ │ │ ├── roles_mapping.yml │ │ │ └── tenants.yml │ │ ├── opensearch.yml │ │ └── opensearch_dashboards.yml │ ├── postgres-initdb │ │ └── setup.sql │ ├── redis-ca.pem │ ├── redis-master-mode.conf │ ├── redis-node-1-cert.pem │ ├── redis-node-1-key.pem │ ├── redis-node-1.conf │ ├── redis-node-2-cert.pem │ ├── redis-node-2-key.pem │ ├── redis-node-2.conf │ ├── redis-node-3-cert.pem │ ├── redis-node-3-key.pem │ ├── redis-node-3.conf │ ├── redis-node-4-cert.pem │ ├── redis-node-4-key.pem │ ├── redis-node-4.conf │ ├── redis-node-5-cert.pem │ ├── redis-node-5-key.pem │ ├── redis-node-5.conf │ ├── redis-node-6-cert.pem │ ├── redis-node-6-key.pem │ └── redis-node-6.conf │ ├── federation-v0.yaml │ ├── federation-v0 │ ├── background-worker.yaml │ ├── brig.yaml │ ├── cannon.yaml │ ├── cargohold.yaml │ ├── coredns-config │ │ ├── Corefile │ │ └── db.example.com │ ├── federator.yaml │ ├── galley.yaml │ ├── gundeck.yaml │ ├── integration-ca.pem │ ├── integration-leaf-key.pem │ ├── integration-leaf.pem │ ├── jwt-ed25519-bundle.pem │ ├── mls-private-key-ed25519.pem │ ├── nexmo-credentials.yaml │ ├── nginz │ │ ├── conf │ │ │ ├── README.md │ │ │ ├── common_response.conf │ │ │ ├── common_response_no_zauth.conf │ │ │ ├── common_response_with_zauth.conf │ │ │ ├── integration.conf │ │ │ ├── nginx.conf │ │ │ ├── pid.conf │ │ │ └── zauth_acl.txt │ │ └── upstreams │ ├── oauth-ed25519.jwk │ ├── proxy.config │ ├── proxy.yaml │ ├── spar.yaml │ ├── turn-secret.txt │ ├── twilio-credentials.yaml │ ├── zauth-privkeys.txt │ └── zauth-pubkeys.txt │ ├── federation-v1.yaml │ ├── federation-v1 │ ├── background-worker.yaml │ ├── brig.yaml │ ├── cannon.yaml │ ├── cargohold.yaml │ ├── coredns-config │ │ ├── Corefile │ │ └── db.example.com │ ├── federator.yaml │ ├── galley.yaml │ ├── gundeck.yaml │ ├── integration-ca.pem │ ├── integration-leaf-key.pem │ ├── integration-leaf.pem │ ├── jwt-ed25519-bundle.pem │ ├── mls-private-key-ed25519.pem │ ├── nexmo-credentials.yaml │ ├── nginz │ │ ├── conf │ │ │ ├── README.md │ │ │ ├── common_response.conf │ │ │ ├── common_response_no_zauth.conf │ │ │ ├── common_response_with_zauth.conf │ │ │ ├── integration.conf │ │ │ ├── nginx.conf │ │ │ ├── pid.conf │ │ │ └── zauth_acl.txt │ │ └── upstreams │ ├── oauth-ed25519.jwk │ ├── proxy.config │ ├── proxy.yaml │ ├── spar.yaml │ ├── turn-secret.txt │ ├── twilio-credentials.yaml │ ├── zauth-privkeys.txt │ └── zauth-pubkeys.txt │ ├── federation-v2.yaml │ ├── federation-v2 │ ├── background-worker.yaml │ ├── brig.yaml │ ├── cannon.yaml │ ├── cargohold.yaml │ ├── coredns-config │ │ ├── Corefile │ │ └── db.example.com │ ├── elasticsearch-credentials.yaml │ ├── federator.yaml │ ├── galley.yaml │ ├── gundeck.yaml │ ├── integration-ca.pem │ ├── integration-leaf-key.pem │ ├── integration-leaf.pem │ ├── jwt-ed25519-bundle.pem │ ├── mls-private-key-ecdsa_secp256r1_sha256.pem │ ├── mls-private-key-ecdsa_secp384r1_sha384.pem │ ├── mls-private-key-ecdsa_secp521r1_sha512.pem │ ├── mls-private-key-ed25519.pem │ ├── nexmo-credentials.yaml │ ├── nginz │ │ ├── conf │ │ │ ├── README.md │ │ │ ├── common_response.conf │ │ │ ├── common_response_no_zauth.conf │ │ │ ├── common_response_with_zauth.conf │ │ │ ├── integration.conf │ │ │ ├── nginx.conf │ │ │ ├── pid.conf │ │ │ └── zauth_acl.txt │ │ └── upstreams │ ├── oauth-ed25519.jwk │ ├── proxy.config │ ├── proxy.yaml │ ├── spar.yaml │ ├── turn-secret.txt │ ├── twilio-credentials.yaml │ ├── zauth-privkeys.txt │ └── zauth-pubkeys.txt │ ├── init.sh │ ├── init_vhosts.sh │ ├── rabbitmq-config │ ├── certificates │ │ ├── ca-key.pem │ │ ├── ca.pem │ │ ├── cert.pem │ │ └── key.pem │ └── rabbitmq.conf │ └── run.sh ├── docs ├── README.md ├── build.svg ├── diagram.svg └── src │ ├── changelog │ └── changelog.md │ ├── developer │ ├── developer │ │ ├── api-versioning.md │ │ ├── architecture │ │ │ └── wire-arch-2.png │ │ ├── building.md │ │ ├── coding-conventions.md │ │ ├── federation-api-conventions.md │ │ ├── how-to.md │ │ ├── open-telemetry.md │ │ └── pr-guidelines.md │ └── reference │ │ ├── cassandra-schema.cql │ │ ├── config-options.md │ │ ├── multi-ingress-example-sequence.svg │ │ └── user │ │ ├── activation.md │ │ └── registration.md │ ├── how-to │ └── install │ │ ├── img │ │ ├── architecture-server-ha.drawio │ │ ├── architecture-server-ha.png │ │ └── code-input.png │ │ ├── infrastructure-configuration.md │ │ ├── sft.md │ │ ├── troubleshooting.md │ │ └── web-app-settings.md │ └── understand │ ├── api-client-perspective │ ├── authentication.md │ └── swagger.md │ ├── associate │ └── deeplink.md │ ├── configure-federation.md │ ├── mls.md │ ├── searchability.md │ ├── single-sign-on │ ├── trouble-shooting.md │ └── understand │ │ ├── main.md │ │ ├── token-step-01.png │ │ ├── token-step-02.png │ │ ├── token-step-03.png │ │ ├── token-step-04.png │ │ ├── token-step-05.png │ │ └── token-step-06.png │ └── team-feature-settings.md ├── hack ├── FUTUREWORK.md ├── bin │ ├── cabal-install-artefacts.sh │ ├── cabal-run-all-tests.sh │ ├── cabal-run-integration.sh │ ├── cabal-run-tests.sh │ ├── cabal.project.local.template │ ├── cassandra_dump_schema │ ├── certchain.sh │ ├── change_emails.py │ ├── check-weed.sh │ ├── copy-charts.sh │ ├── create_team.sh │ ├── create_team_members.sh │ ├── create_team_request_code.sh │ ├── create_test_team_admins.sh │ ├── create_test_team_members.sh │ ├── create_test_team_scim.sh │ ├── create_test_user.sh │ ├── diff-failure.sh │ ├── filter-old-releases.jq │ ├── find-latest-docker-tag.sh │ ├── gen-certs.sh │ ├── generate-local-nix-packages.sh │ ├── get-session-token │ ├── git-log-bumps.py │ ├── helm-oci-login.sh │ ├── helm-template.sh │ ├── helm_overrides.sh │ ├── integration-cleanup.sh │ ├── integration-logs-relevant-bits.sh │ ├── integration-setup-federation.sh │ ├── integration-spring-cleaning.sh │ ├── integration-teardown-federation.sh │ ├── integration-teardown-ingress-classes.sh │ ├── integration-test-logs.sh │ ├── integration-test.sh │ ├── kind-upload-image.sh │ ├── kind-upload-images.sh │ ├── kubectl-get-debug-info.sh │ ├── mk-drv.sh │ ├── new-migration.sh │ ├── nix-hls.sh │ ├── oauth_test.sh │ ├── performance.py │ ├── postgres_dump_schema │ ├── python3.sh │ ├── register_idp.sh │ ├── register_idp_internal.sh │ ├── serve-charts.sh │ ├── set-chart-image-version.sh │ ├── set-helm-chart-version.sh │ ├── set-wire-server-image-version.sh │ ├── split-member-constraints.py │ ├── update.sh │ ├── upload-helm-charts-s3.sh │ ├── upload-image.sh │ └── upload-images.sh ├── helm_vars │ ├── .gitignore │ ├── bitnami.yaml │ ├── certs │ │ ├── elasticsearch-ca-key.pem │ │ ├── elasticsearch-ca.pem │ │ └── values.yaml.gotmpl │ ├── common.yaml.gotmpl │ ├── fake-aws │ │ └── values.yaml │ ├── ingress-nginx-controller │ │ └── values.yaml.gotmpl │ ├── k8ssandra-test-cluster │ │ └── values.yaml.gotmpl │ ├── nginx-ingress-controller │ │ └── values.yaml.gotmpl │ ├── nginx-ingress-services │ │ └── values.yaml.gotmpl │ ├── opensearch │ │ └── values.yaml.gotmpl │ ├── postgresql │ │ └── values.yaml.gotmpl │ ├── rabbitmq │ │ └── values.yaml.gotmpl │ ├── redis-ephemeral │ │ └── values.yaml │ ├── technitium │ │ └── values.yaml.gotmpl │ ├── wire-federation-v0 │ │ └── values.yaml.gotmpl │ └── wire-server │ │ ├── values-domain1.yaml.gotmpl │ │ ├── values-domain2.yaml.gotmpl │ │ └── values.yaml.gotmpl ├── helmfile-federation-v0.yaml.gotmpl ├── helmfile.yaml.gotmpl └── python │ ├── README.md │ └── wire │ ├── __init__.py │ ├── api.py │ ├── context.py │ ├── conversions.py │ ├── frozendict.py │ ├── mlscli.py │ ├── otr_pb2.py │ ├── prekeys.py │ └── response.py ├── hie.yaml ├── integration ├── LICENSE ├── README.md ├── Setup.hs ├── default.nix ├── integration.cabal ├── main.hs ├── run-services.hs ├── scripts │ ├── integration-dynamic-backends-brig-index.sh │ ├── integration-dynamic-backends-db-schemas.sh │ ├── integration-dynamic-backends-s3.sh │ ├── integration-dynamic-backends-ses.sh │ └── integration-dynamic-backends-vhosts.sh └── test │ ├── API │ ├── Brig.hs │ ├── BrigCommon.hs │ ├── BrigInternal.hs │ ├── Cargohold.hs │ ├── Common.hs │ ├── Federator.hs │ ├── Galley.hs │ ├── GalleyInternal.hs │ ├── Gundeck.hs │ ├── GundeckInternal.hs │ ├── Nginz.hs │ ├── Proxy.hs │ ├── Spar.hs │ └── SparInternal.hs │ ├── MLS │ └── Util.hs │ ├── Notifications.hs │ ├── SetupHelpers.hs │ ├── Test │ ├── AccessUpdate.hs │ ├── Apps.hs │ ├── Auth.hs │ ├── B2B.hs │ ├── BlockedDomains.hs │ ├── Bot.hs │ ├── Brig.hs │ ├── Cargohold │ │ ├── API.hs │ │ ├── API │ │ │ ├── Federation.hs │ │ │ └── V3.hs │ │ ├── AssetDownload.hs │ │ ├── AssetUpload.hs │ │ └── Metrics.hs │ ├── Cells.hs │ ├── ChannelSearch.hs │ ├── Channels.hs │ ├── Client.hs │ ├── Connection.hs │ ├── Conversation.hs │ ├── Conversation │ │ └── Migration.hs │ ├── DNSMock.hs │ ├── Demo.hs │ ├── DomainVerification.hs │ ├── EJPD.hs │ ├── EnterpriseLogin.hs │ ├── Errors.hs │ ├── Events.hs │ ├── ExternalPartner.hs │ ├── FeatureFlags.hs │ ├── FeatureFlags │ │ ├── AllowedGlobalOperations.hs │ │ ├── AppLock.hs │ │ ├── Apps.hs │ │ ├── AssetAuditLog.hs │ │ ├── Cells.hs │ │ ├── CellsInternal.hs │ │ ├── Channels.hs │ │ ├── ChatBubbles.hs │ │ ├── ClassifiedDomains.hs │ │ ├── ConferenceCalling.hs │ │ ├── ConsumableNotifications.hs │ │ ├── DigitalSignatures.hs │ │ ├── DomainRegistration.hs │ │ ├── EnforceFileDownloadLocation.hs │ │ ├── FileSharing.hs │ │ ├── GuestLinks.hs │ │ ├── LegalHold.hs │ │ ├── Mls.hs │ │ ├── MlsE2EId.hs │ │ ├── MlsMigration.hs │ │ ├── OutlookCalIntegration.hs │ │ ├── SSO.hs │ │ ├── SearchVisibilityAvailable.hs │ │ ├── SearchVisibilityInbound.hs │ │ ├── SelfDeletingMessages.hs │ │ ├── SimplifiedUserConnectionRequestQRCode.hs │ │ ├── SndFactorPasswordChallenge.hs │ │ ├── StealthUsers.hs │ │ ├── User.hs │ │ ├── Util.hs │ │ └── ValidateSAMLEmails.hs │ ├── Federation.hs │ ├── Federator.hs │ ├── LegalHold.hs │ ├── Login.hs │ ├── MLS.hs │ ├── MLS │ │ ├── Clients.hs │ │ ├── KeyPackage.hs │ │ ├── Keys.hs │ │ ├── Message.hs │ │ ├── Notifications.hs │ │ ├── One2One.hs │ │ ├── Reset.hs │ │ ├── Services.hs │ │ ├── SubConversation.hs │ │ └── Unreachable.hs │ ├── MessageTimer.hs │ ├── NginxZAuthModule.hs │ ├── Notifications.hs │ ├── OAuth.hs │ ├── PasswordReset.hs │ ├── Presence.hs │ ├── Property.hs │ ├── Provider.hs │ ├── Proxy.hs │ ├── PushToken.hs │ ├── Register.hs │ ├── Roles.hs │ ├── Search.hs │ ├── Services.hs │ ├── Spar.hs │ ├── Spar │ │ ├── MultiIngressIdp.hs │ │ ├── MultiIngressSSO.hs │ │ └── STM.hs │ ├── Swagger.hs │ ├── TeamCollaborators.hs │ ├── TeamSettings.hs │ ├── Teams.hs │ ├── User.hs │ ├── UserGroup.hs │ └── Version.hs │ └── Testlib │ ├── App.hs │ ├── Assertions.hs │ ├── Cannon.hs │ ├── Certs.hs │ ├── Env.hs │ ├── HTTP.hs │ ├── JSON.hs │ ├── KleisliXML.hs │ ├── Mock.hs │ ├── MockIntegrationService.hs │ ├── ModService.hs │ ├── One2One.hs │ ├── Options.hs │ ├── PTest.hs │ ├── Ports.hs │ ├── Prekeys.hs │ ├── Prelude.hs │ ├── Printing.hs │ ├── ResourcePool.hs │ ├── Run.hs │ ├── RunServices.hs │ ├── Types.hs │ ├── VersionedFed.hs │ └── XML.hs ├── libs ├── bilge │ ├── .ormolu │ ├── LICENSE │ ├── README.md │ ├── bilge.cabal │ ├── default.nix │ ├── examples │ │ └── google.hs │ └── src │ │ ├── Bilge.hs │ │ └── Bilge │ │ ├── Assert.hs │ │ ├── IO.hs │ │ ├── RPC.hs │ │ ├── Request.hs │ │ ├── Response.hs │ │ ├── Retry.hs │ │ └── TestSession.hs ├── brig-types │ ├── .ormolu │ ├── LICENSE │ ├── brig-types.cabal │ ├── default.nix │ ├── src │ │ └── Brig │ │ │ └── Types │ │ │ ├── Activation.hs │ │ │ ├── Connection.hs │ │ │ ├── Intra.hs │ │ │ ├── Provider │ │ │ └── Tag.hs │ │ │ ├── Team.hs │ │ │ ├── Team │ │ │ └── LegalHold.hs │ │ │ ├── Test │ │ │ └── Arbitrary.hs │ │ │ ├── User.hs │ │ │ └── User │ │ │ └── Auth.hs │ └── test │ │ └── unit │ │ ├── Main.hs │ │ └── Test │ │ └── Brig │ │ ├── Roundtrip.hs │ │ └── Types │ │ ├── Common.hs │ │ ├── Team.hs │ │ └── User.hs ├── cargohold-types │ ├── .ormolu │ ├── LICENSE │ ├── cargohold-types.cabal │ ├── default.nix │ └── src │ │ └── CargoHold │ │ ├── Types.hs │ │ └── Types │ │ └── V3.hs ├── cassandra-util │ ├── .ormolu │ ├── LICENSE │ ├── README.md │ ├── cassandra-util.cabal │ ├── default.nix │ └── src │ │ ├── Cassandra.hs │ │ └── Cassandra │ │ ├── CQL.hs │ │ ├── Exec.hs │ │ ├── Helpers.hs │ │ ├── MigrateSchema.hs │ │ ├── Options.hs │ │ ├── QQ.hs │ │ ├── Schema.hs │ │ ├── Settings.hs │ │ └── Util.hs ├── deriving-swagger2 │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── deriving-swagger2.cabal │ └── src │ │ └── Deriving │ │ └── Swagger.hs ├── dns-util │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── dns-util.cabal │ ├── src │ │ └── Wire │ │ │ └── Network │ │ │ └── DNS │ │ │ ├── Effect.hs │ │ │ ├── Helper.hs │ │ │ └── SRV.hs │ └── test │ │ ├── Spec.hs │ │ └── Test │ │ └── Wire │ │ └── Network │ │ └── DNS │ │ └── SRVSpec.hs ├── extended │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── extended.cabal │ ├── src │ │ ├── Data │ │ │ └── Time │ │ │ │ └── Clock │ │ │ │ └── DiffTime.hs │ │ ├── Hasql │ │ │ └── Pool │ │ │ │ └── Extended.hs │ │ ├── Network │ │ │ ├── AMQP │ │ │ │ └── Extended.hs │ │ │ └── RabbitMqAdmin.hs │ │ ├── Servant │ │ │ └── API │ │ │ │ ├── Extended.hs │ │ │ │ └── Extended │ │ │ │ └── Endpath.hs │ │ └── System │ │ │ └── Logger │ │ │ └── Extended.hs │ └── test │ │ ├── Spec.hs │ │ └── Test │ │ └── System │ │ └── Logger │ │ └── ExtendedSpec.hs ├── galley-types │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── galley-types.cabal │ └── src │ │ └── Galley │ │ ├── Types.hs │ │ └── Types │ │ ├── Conversations │ │ ├── One2One.hs │ │ └── Roles.hs │ │ └── Teams.hs ├── hscim │ ├── .gitignore │ ├── .ormolu │ ├── CHANGELOG │ ├── LICENSE │ ├── README.md │ ├── Setup.hs │ ├── default.nix │ ├── hscim.cabal │ ├── server │ │ └── Main.hs │ ├── src │ │ └── Web │ │ │ └── Scim │ │ │ ├── AttrName.hs │ │ │ ├── Capabilities │ │ │ ├── MetaSchema.hs │ │ │ └── MetaSchema │ │ │ │ ├── Group.hs │ │ │ │ ├── ResourceType.hs │ │ │ │ ├── SPConfig.hs │ │ │ │ ├── Schema.hs │ │ │ │ └── User.hs │ │ │ ├── Class │ │ │ ├── Auth.hs │ │ │ ├── Group.hs │ │ │ └── User.hs │ │ │ ├── Client.hs │ │ │ ├── ContentType.hs │ │ │ ├── Filter.hs │ │ │ ├── Handler.hs │ │ │ ├── Schema │ │ │ ├── AuthenticationScheme.hs │ │ │ ├── Common.hs │ │ │ ├── Error.hs │ │ │ ├── ListResponse.hs │ │ │ ├── Meta.hs │ │ │ ├── PatchOp.hs │ │ │ ├── ResourceType.hs │ │ │ ├── Schema.hs │ │ │ ├── User.hs │ │ │ ├── User │ │ │ │ ├── Address.hs │ │ │ │ ├── Certificate.hs │ │ │ │ ├── Email.hs │ │ │ │ ├── IM.hs │ │ │ │ ├── Name.hs │ │ │ │ ├── Phone.hs │ │ │ │ └── Photo.hs │ │ │ └── UserTypes.hs │ │ │ ├── Server.hs │ │ │ ├── Server │ │ │ └── Mock.hs │ │ │ └── Test │ │ │ ├── Acceptance.hs │ │ │ └── Util.hs │ └── test │ │ ├── Spec.hs │ │ └── Test │ │ ├── AcceptanceSpec.hs │ │ ├── Capabilities │ │ └── MetaSchemaSpec.hs │ │ ├── Class │ │ ├── AuthSpec.hs │ │ ├── GroupSpec.hs │ │ └── UserSpec.hs │ │ ├── FilterSpec.hs │ │ ├── MiscSpec.hs │ │ └── Schema │ │ ├── AuthenticationSchemeSpec.hs │ │ ├── GroupSpec.hs │ │ ├── MetaSchemaSpec.hs │ │ ├── PatchOpSpec.hs │ │ ├── ResourceSpec.hs │ │ ├── UserSpec.hs │ │ └── Util.hs ├── http2-manager │ ├── LICENSE │ ├── default.nix │ ├── http2-manager.cabal │ ├── src │ │ └── HTTP2 │ │ │ └── Client │ │ │ ├── Manager.hs │ │ │ └── Manager │ │ │ └── Internal.hs │ └── test │ │ ├── Main.hs │ │ ├── Test │ │ └── HTTP2 │ │ │ └── Client │ │ │ └── ManagerSpec.hs │ │ └── resources │ │ ├── .gitignore │ │ ├── gen-certs.sh │ │ ├── localhost-key.pem │ │ ├── localhost.example.com-key.pem │ │ ├── localhost.example.com.pem │ │ ├── localhost.pem │ │ ├── unit-ca-key.pem │ │ └── unit-ca.pem ├── imports │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── imports.cabal │ └── src │ │ └── Imports.hs ├── jwt-tools │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── jwt-tools.cabal │ ├── src │ │ └── Data │ │ │ └── Jwt │ │ │ └── Tools.hs │ └── test │ │ └── Spec.hs ├── libzauth │ ├── Makefile │ ├── README.md │ ├── libzauth-c │ │ ├── Cargo.lock │ │ ├── Cargo.nix │ │ ├── Cargo.toml │ │ ├── LICENSE │ │ ├── Makefile │ │ ├── crate-hashes.json │ │ ├── deb │ │ │ └── DEBIAN │ │ │ │ └── control │ │ └── src │ │ │ ├── lib.rs │ │ │ ├── libzauth.pc │ │ │ └── zauth.h │ └── libzauth │ │ ├── .gitignore │ │ ├── Cargo.toml │ │ ├── LICENSE │ │ ├── examples │ │ └── verify.rs │ │ ├── rustfmt.toml │ │ └── src │ │ ├── acl.rs │ │ ├── error.rs │ │ ├── lib.rs │ │ ├── matcher.rs │ │ ├── oauth.rs │ │ └── zauth.rs ├── metrics-core │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── metrics-core.cabal │ └── src │ │ └── Data │ │ └── Metrics │ │ ├── AWS.hs │ │ └── GC.hs ├── metrics-wai │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── metrics-wai.cabal │ ├── src │ │ └── Data │ │ │ └── Metrics │ │ │ ├── Middleware │ │ │ └── Prometheus.hs │ │ │ ├── Servant.hs │ │ │ ├── Test.hs │ │ │ └── Types.hs │ └── test │ │ ├── Spec.hs │ │ └── Test │ │ └── Data │ │ └── Metrics │ │ └── TypesSpec.hs ├── polysemy-wire-zoo │ ├── .ormolu │ ├── default.nix │ ├── polysemy-wire-zoo.cabal │ ├── src │ │ ├── Polysemy │ │ │ ├── Testing.hs │ │ │ └── TinyLog.hs │ │ └── Wire │ │ │ └── Sem │ │ │ ├── Concurrency.hs │ │ │ ├── Concurrency │ │ │ ├── IO.hs │ │ │ └── Sequential.hs │ │ │ ├── Delay.hs │ │ │ ├── FromUTC.hs │ │ │ ├── Jwk.hs │ │ │ ├── Logger.hs │ │ │ ├── Logger │ │ │ └── TinyLog.hs │ │ │ ├── Metrics.hs │ │ │ ├── Metrics │ │ │ └── IO.hs │ │ │ ├── Now.hs │ │ │ ├── Now │ │ │ ├── IO.hs │ │ │ ├── Input.hs │ │ │ └── Spec.hs │ │ │ ├── Paging.hs │ │ │ ├── Paging │ │ │ └── Cassandra.hs │ │ │ ├── Random.hs │ │ │ └── Random │ │ │ ├── IO.hs │ │ │ └── Null.hs │ └── test │ │ ├── Spec.hs │ │ └── Test │ │ └── IntersperseSpec.hs ├── saml2-web-sso │ ├── LICENSE │ ├── README.md │ ├── default.nix │ ├── saml2-web-sso.cabal │ ├── src │ │ ├── SAML2 │ │ │ ├── Util.hs │ │ │ ├── WebSSO.hs │ │ │ └── WebSSO │ │ │ │ ├── API.hs │ │ │ │ ├── API │ │ │ │ ├── Example.hs │ │ │ │ └── UnvalidatedSAMLStatus.hs │ │ │ │ ├── Config.hs │ │ │ │ ├── Cookie.hs │ │ │ │ ├── Error.hs │ │ │ │ ├── Orphans.hs │ │ │ │ ├── SP.hs │ │ │ │ ├── Servant.hs │ │ │ │ ├── Test │ │ │ │ ├── Arbitrary.hs │ │ │ │ ├── Lenses.hs │ │ │ │ ├── MockResponse.hs │ │ │ │ ├── Util.hs │ │ │ │ └── Util │ │ │ │ │ ├── Misc.hs │ │ │ │ │ ├── TestSP.hs │ │ │ │ │ ├── Types.hs │ │ │ │ │ └── VendorCompatibility.hs │ │ │ │ ├── Types.hs │ │ │ │ ├── Types │ │ │ │ ├── Email.hs │ │ │ │ └── TH.hs │ │ │ │ └── XML.hs │ │ └── Text │ │ │ └── XML │ │ │ ├── DSig.hs │ │ │ └── Util.hs │ └── test │ │ ├── Samples.hs │ │ ├── Spec.hs │ │ ├── Test │ │ ├── SAML2 │ │ │ ├── UtilSpec.hs │ │ │ └── WebSSO │ │ │ │ ├── APISpec.hs │ │ │ │ ├── ConfigSpec.hs │ │ │ │ ├── RoundtripSpec.hs │ │ │ │ ├── SPSpec.hs │ │ │ │ ├── XML │ │ │ │ ├── ExamplesSpec.hs │ │ │ │ └── MetaSpec.hs │ │ │ │ └── XMLSpec.hs │ │ └── Text │ │ │ └── XML │ │ │ ├── DSigSpec.hs │ │ │ └── UtilSpec.hs │ │ └── samples │ │ ├── authnresponse-1.xml │ │ ├── authnresponse-3.xml │ │ ├── authnresponse-case-insensitive.xml │ │ ├── keycloak-idp-metadata.xml │ │ ├── keycloak-response.xml │ │ ├── microsoft-authnrequest-1.xml │ │ ├── microsoft-authnresponse-2-badsig.xml │ │ ├── microsoft-authnresponse-2.xml │ │ ├── microsoft-azure-utf8-issue-authentication-request.xml │ │ ├── microsoft-azure-utf8-issue-metadata.xml │ │ ├── microsoft-idp-config-badkey.yaml │ │ ├── microsoft-idp-config.yaml │ │ ├── microsoft-idp-keyinfo.xml │ │ ├── microsoft-meta-2.xml │ │ ├── okta-keyinfo-1.xml │ │ ├── our-spssodescriptor.xml │ │ ├── post-missing.xml │ │ ├── server-config-minimal-contact-details.yaml │ │ ├── server-config.yaml │ │ └── vendors │ │ ├── azure.microsoft.com-authnresp.xml │ │ ├── azure.microsoft.com-metadata.xml │ │ ├── centrify.com-authnresp.xml │ │ ├── centrify.com-metadata.xml │ │ ├── okta.com-authnresp.xml │ │ └── okta.com-metadata.xml ├── schema-profunctor │ ├── .ormolu │ ├── LICENSE │ ├── README.md │ ├── default.nix │ ├── schema-profunctor.cabal │ ├── src │ │ └── Data │ │ │ └── Schema.hs │ └── test │ │ └── unit │ │ ├── Main.hs │ │ └── Test │ │ └── Data │ │ └── Schema.hs ├── sodium-crypto-sign │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── sodium-crypto-sign.cabal │ └── src │ │ └── Sodium │ │ └── Crypto │ │ └── Sign.hsc ├── ssl-util │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── src │ │ └── Ssl │ │ │ └── Util.hs │ └── ssl-util.cabal ├── tasty-cannon │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── src │ │ └── Test │ │ │ └── Tasty │ │ │ └── Cannon.hs │ └── tasty-cannon.cabal ├── types-common-aws │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── src │ │ ├── AWS │ │ │ └── Util.hs │ │ └── Util │ │ │ └── Test │ │ │ └── SQS.hs │ └── types-common-aws.cabal ├── types-common-journal │ ├── .ormolu │ ├── LICENSE │ ├── Setup.hs │ ├── default.nix │ ├── proto │ │ ├── TeamEvents.proto │ │ └── UserEvents.proto │ ├── src │ │ └── Data │ │ │ ├── Proto.hs │ │ │ └── Proto │ │ │ └── Id.hs │ └── types-common-journal.cabal ├── types-common │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── src │ │ ├── Data │ │ │ ├── Code.hs │ │ │ ├── CommaSeparatedList.hs │ │ │ ├── Credentials.hs │ │ │ ├── Domain.hs │ │ │ ├── ETag.hs │ │ │ ├── Handle.hs │ │ │ ├── HavePendingInvitations.hs │ │ │ ├── Id.hs │ │ │ ├── Json │ │ │ │ └── Util.hs │ │ │ ├── LegalHold.hs │ │ │ ├── Mailbox.hs │ │ │ ├── Misc.hs │ │ │ ├── Nonce.hs │ │ │ ├── PEMKeys.hs │ │ │ ├── Qualified.hs │ │ │ ├── Range.hs │ │ │ ├── RetryAfter.hs │ │ │ ├── SizedHashMap.hs │ │ │ ├── Text │ │ │ │ └── Ascii.hs │ │ │ └── UUID │ │ │ │ └── Tagged.hs │ │ ├── Test │ │ │ └── Tasty │ │ │ │ └── Pending.hs │ │ ├── Util │ │ │ ├── Attoparsec.hs │ │ │ ├── Logging.hs │ │ │ ├── Options.hs │ │ │ ├── Options │ │ │ │ └── Common.hs │ │ │ ├── SuffixNamer.hs │ │ │ ├── Test.hs │ │ │ └── Timeout.hs │ │ └── Wire │ │ │ └── Arbitrary.hs │ ├── test │ │ ├── Main.hs │ │ └── Test │ │ │ ├── Data │ │ │ ├── Mailbox.hs │ │ │ └── PEMKeys.hs │ │ │ ├── Domain.hs │ │ │ ├── Handle.hs │ │ │ ├── Properties.hs │ │ │ ├── Qualified.hs │ │ │ └── SizedHashMap.hs │ └── types-common.cabal ├── wai-utilities │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── src │ │ └── Network │ │ │ └── Wai │ │ │ ├── Utilities.hs │ │ │ └── Utilities │ │ │ ├── Error.hs │ │ │ ├── Headers.hs │ │ │ ├── JSONResponse.hs │ │ │ ├── MockServer.hs │ │ │ ├── Request.hs │ │ │ ├── Response.hs │ │ │ ├── Server.hs │ │ │ └── ZAuth.hs │ ├── test │ │ ├── Main.hs │ │ └── Network │ │ │ └── Wai │ │ │ └── Utilities │ │ │ └── ServerSpec.hs │ └── wai-utilities.cabal ├── wire-api-federation │ ├── .ormolu │ ├── LICENSE │ ├── default.nix │ ├── proto │ │ └── router.proto │ ├── src │ │ └── Wire │ │ │ └── API │ │ │ └── Federation │ │ │ ├── API.hs │ │ │ ├── API │ │ │ ├── Brig.hs │ │ │ ├── Brig │ │ │ │ └── Notifications.hs │ │ │ ├── Cargohold.hs │ │ │ ├── Common.hs │ │ │ ├── Galley.hs │ │ │ ├── Galley │ │ │ │ └── Notifications.hs │ │ │ └── Util.hs │ │ │ ├── BackendNotifications.hs │ │ │ ├── Client.hs │ │ │ ├── Component.hs │ │ │ ├── Domain.hs │ │ │ ├── Endpoint.hs │ │ │ ├── Error.hs │ │ │ ├── HasNotificationEndpoint.hs │ │ │ └── Version.hs │ ├── test │ │ ├── Main.hs │ │ ├── Test │ │ │ └── Wire │ │ │ │ └── API │ │ │ │ └── Federation │ │ │ │ ├── API │ │ │ │ ├── BrigSpec.hs │ │ │ │ ├── GalleySpec.hs │ │ │ │ └── Util.hs │ │ │ │ └── Golden │ │ │ │ ├── ConversationCreated.hs │ │ │ │ ├── ConversationUpdate.hs │ │ │ │ ├── GetOne2OneConversationResponse.hs │ │ │ │ ├── GoldenSpec.hs │ │ │ │ ├── LeaveConversationRequest.hs │ │ │ │ ├── LeaveConversationResponse.hs │ │ │ │ ├── MLSMessageSendingStatus.hs │ │ │ │ ├── MessageSendResponse.hs │ │ │ │ ├── NewConnectionRequest.hs │ │ │ │ ├── NewConnectionResponse.hs │ │ │ │ └── Runner.hs │ │ └── golden │ │ │ ├── testObject_ConversationCreated1.json │ │ │ ├── testObject_ConversationCreated2.json │ │ │ ├── testObject_ConversationUpdate1.json │ │ │ ├── testObject_ConversationUpdate1V0.json │ │ │ ├── testObject_ConversationUpdate2.json │ │ │ ├── testObject_ConversationUpdate2V0.json │ │ │ ├── testObject_GetOne2OneConversationResponseBackendMismatch.json │ │ │ ├── testObject_GetOne2OneConversationResponseNotConnected.json │ │ │ ├── testObject_GetOne2OneConversationResponseOk.json │ │ │ ├── testObject_GetOne2OneConversationResponseV2BackendMismatch.json │ │ │ ├── testObject_GetOne2OneConversationResponseV2NotConnected.json │ │ │ ├── testObject_GetOne2OneConversationResponseV2Ok.json │ │ │ ├── testObject_LeaveConversationRequest1.json │ │ │ ├── testObject_LeaveConversationResponse1.json │ │ │ ├── testObject_LeaveConversationResponse2.json │ │ │ ├── testObject_LeaveConversationResponse3.json │ │ │ ├── testObject_LeaveConversationResponse8.json │ │ │ ├── testObject_MLSMessageSendingStatus1.json │ │ │ ├── testObject_MLSMessageSendingStatus2.json │ │ │ ├── testObject_MLSMessageSendingStatus3.json │ │ │ ├── testObject_MessageSendResponse1.json │ │ │ ├── testObject_MessageSendResponse2.json │ │ │ ├── testObject_MessageSendResponse3.json │ │ │ ├── testObject_MessageSendResponse4.json │ │ │ ├── testObject_MessageSendResponse5.json │ │ │ ├── testObject_MessageSendResponse6.json │ │ │ ├── testObject_NewConnectionRequest1.json │ │ │ ├── testObject_NewConnectionRequest2.json │ │ │ ├── testObject_NewConnectionResponse1.json │ │ │ ├── testObject_NewConnectionResponse2.json │ │ │ ├── testObject_NewConnectionResponse3.json │ │ │ └── testObject_NewConnectionResponse4.json │ └── wire-api-federation.cabal ├── wire-api │ ├── .ormolu │ ├── LICENSE │ ├── Readme.md │ ├── default.nix │ ├── src │ │ └── Wire │ │ │ └── API │ │ │ ├── Allowlists.hs │ │ │ ├── App.hs │ │ │ ├── ApplyMods.hs │ │ │ ├── Asset.hs │ │ │ ├── BackgroundJobs.hs │ │ │ ├── Bot.hs │ │ │ ├── Bot │ │ │ └── Service.hs │ │ │ ├── Call │ │ │ └── Config.hs │ │ │ ├── CannonId.hs │ │ │ ├── Component.hs │ │ │ ├── Connection.hs │ │ │ ├── Conversation.hs │ │ │ ├── Conversation │ │ │ ├── Action.hs │ │ │ ├── Action │ │ │ │ └── Tag.hs │ │ │ ├── Bot.hs │ │ │ ├── CellsState.hs │ │ │ ├── Code.hs │ │ │ ├── Member.hs │ │ │ ├── Pagination.hs │ │ │ ├── Protocol.hs │ │ │ ├── Role.hs │ │ │ └── Typing.hs │ │ │ ├── CustomBackend.hs │ │ │ ├── Deprecated.hs │ │ │ ├── EnterpriseLogin.hs │ │ │ ├── Error.hs │ │ │ ├── Error │ │ │ ├── Brig.hs │ │ │ ├── Cannon.hs │ │ │ ├── Cargohold.hs │ │ │ ├── Empty.hs │ │ │ ├── Galley.hs │ │ │ └── Gundeck.hs │ │ │ ├── Event │ │ │ ├── Conversation.hs │ │ │ ├── FeatureConfig.hs │ │ │ ├── Federation.hs │ │ │ ├── Gundeck.hs │ │ │ ├── LeaveReason.hs │ │ │ ├── Team.hs │ │ │ └── WebSocketProtocol.hs │ │ │ ├── FederationStatus.hs │ │ │ ├── FederationUpdate.hs │ │ │ ├── Internal │ │ │ ├── BulkPush.hs │ │ │ └── Notification.hs │ │ │ ├── Locale.hs │ │ │ ├── MLS │ │ │ ├── AuthenticatedContent.hs │ │ │ ├── Capabilities.hs │ │ │ ├── CipherSuite.hs │ │ │ ├── Commit.hs │ │ │ ├── CommitBundle.hs │ │ │ ├── Context.hs │ │ │ ├── Credential.hs │ │ │ ├── ECDSA.hs │ │ │ ├── Epoch.hs │ │ │ ├── Extension.hs │ │ │ ├── Group.hs │ │ │ ├── Group │ │ │ │ └── Serialisation.hs │ │ │ ├── GroupInfo.hs │ │ │ ├── HPKEPublicKey.hs │ │ │ ├── KeyPackage.hs │ │ │ ├── Keys.hs │ │ │ ├── LeafNode.hs │ │ │ ├── Lifetime.hs │ │ │ ├── Message.hs │ │ │ ├── OutOfSync.hs │ │ │ ├── Proposal.hs │ │ │ ├── ProposalTag.hs │ │ │ ├── ProtocolVersion.hs │ │ │ ├── RatchetTree.hs │ │ │ ├── Serialisation.hs │ │ │ ├── Servant.hs │ │ │ ├── SubConversation.hs │ │ │ ├── Validation.hs │ │ │ ├── Validation │ │ │ │ └── Error.hs │ │ │ └── Welcome.hs │ │ │ ├── Message.hs │ │ │ ├── Message │ │ │ └── Proto.hs │ │ │ ├── Notification.hs │ │ │ ├── OAuth.hs │ │ │ ├── Pagination.hs │ │ │ ├── Password.hs │ │ │ ├── Password │ │ │ ├── Argon2id.hs │ │ │ └── Scrypt.hs │ │ │ ├── PostgresMarshall.hs │ │ │ ├── Presence.hs │ │ │ ├── Properties.hs │ │ │ ├── Provider.hs │ │ │ ├── Provider │ │ │ ├── Bot.hs │ │ │ ├── External.hs │ │ │ ├── Service.hs │ │ │ └── Service │ │ │ │ └── Tag.hs │ │ │ ├── Push │ │ │ ├── Token.hs │ │ │ ├── V2.hs │ │ │ └── V2 │ │ │ │ └── Token.hs │ │ │ ├── RawJson.hs │ │ │ ├── Routes │ │ │ ├── API.hs │ │ │ ├── AssetBody.hs │ │ │ ├── Bearer.hs │ │ │ ├── CSV.hs │ │ │ ├── ClientAlgebra.hs │ │ │ ├── Cookies.hs │ │ │ ├── Features.hs │ │ │ ├── FederationDomainConfig.hs │ │ │ ├── Internal │ │ │ │ ├── Brig.hs │ │ │ │ ├── Brig │ │ │ │ │ ├── Connection.hs │ │ │ │ │ ├── EJPD.hs │ │ │ │ │ ├── EnterpriseLogin.hs │ │ │ │ │ ├── OAuth.hs │ │ │ │ │ └── SearchIndex.hs │ │ │ │ ├── Cannon.hs │ │ │ │ ├── Cargohold.hs │ │ │ │ ├── Enterprise.hs │ │ │ │ ├── Galley.hs │ │ │ │ ├── Galley │ │ │ │ │ ├── ConversationsIntra.hs │ │ │ │ │ ├── TeamFeatureNoConfigMulti.hs │ │ │ │ │ └── TeamsIntra.hs │ │ │ │ ├── Gundeck.hs │ │ │ │ └── Spar.hs │ │ │ ├── LowLevelStream.hs │ │ │ ├── MultiTablePaging.hs │ │ │ ├── MultiTablePaging │ │ │ │ └── State.hs │ │ │ ├── MultiVerb.hs │ │ │ ├── Named.hs │ │ │ ├── Public.hs │ │ │ ├── Public │ │ │ │ ├── Brig.hs │ │ │ │ ├── Brig │ │ │ │ │ ├── Bot.hs │ │ │ │ │ ├── DomainVerification.hs │ │ │ │ │ ├── OAuth.hs │ │ │ │ │ ├── Provider.hs │ │ │ │ │ └── Services.hs │ │ │ │ ├── Cannon.hs │ │ │ │ ├── Cargohold.hs │ │ │ │ ├── Galley.hs │ │ │ │ ├── Galley │ │ │ │ │ ├── Bot.hs │ │ │ │ │ ├── Conversation.hs │ │ │ │ │ ├── CustomBackend.hs │ │ │ │ │ ├── Feature.hs │ │ │ │ │ ├── LegalHold.hs │ │ │ │ │ ├── MLS.hs │ │ │ │ │ ├── Messaging.hs │ │ │ │ │ ├── Team.hs │ │ │ │ │ ├── TeamConversation.hs │ │ │ │ │ ├── TeamMember.hs │ │ │ │ │ └── TeamNotification.hs │ │ │ │ ├── Gundeck.hs │ │ │ │ ├── Proxy.hs │ │ │ │ ├── Spar.hs │ │ │ │ └── Util.hs │ │ │ ├── QualifiedCapture.hs │ │ │ ├── SpecialiseToVersion.hs │ │ │ ├── Version.hs │ │ │ ├── Version │ │ │ │ └── Wai.hs │ │ │ ├── Versioned.hs │ │ │ └── WebSocket.hs │ │ │ ├── ServantProto.hs │ │ │ ├── SwaggerHelper.hs │ │ │ ├── SwaggerServant.hs │ │ │ ├── SystemSettings.hs │ │ │ ├── Team.hs │ │ │ ├── Team │ │ │ ├── Collaborator.hs │ │ │ ├── Conversation.hs │ │ │ ├── Export.hs │ │ │ ├── Feature.hs │ │ │ ├── Feature │ │ │ │ ├── Profunctor.hs │ │ │ │ └── TH.hs │ │ │ ├── HardTruncationLimit.hs │ │ │ ├── Invitation.hs │ │ │ ├── LegalHold.hs │ │ │ ├── LegalHold │ │ │ │ ├── External.hs │ │ │ │ └── Internal.hs │ │ │ ├── Member.hs │ │ │ ├── Member │ │ │ │ ├── Error.hs │ │ │ │ └── Info.hs │ │ │ ├── Permission.hs │ │ │ ├── Role.hs │ │ │ ├── SearchVisibility.hs │ │ │ └── Size.hs │ │ │ ├── Unreachable.hs │ │ │ ├── User.hs │ │ │ ├── User │ │ │ ├── Activation.hs │ │ │ ├── Auth.hs │ │ │ ├── Auth │ │ │ │ ├── LegalHold.hs │ │ │ │ ├── ReAuth.hs │ │ │ │ └── Sso.hs │ │ │ ├── Client.hs │ │ │ ├── Client │ │ │ │ ├── DPoPAccessToken.hs │ │ │ │ └── Prekey.hs │ │ │ ├── EmailAddress.hs │ │ │ ├── Handle.hs │ │ │ ├── Identity.hs │ │ │ ├── IdentityProvider.hs │ │ │ ├── Orphans.hs │ │ │ ├── Password.hs │ │ │ ├── Phone.hs │ │ │ ├── Profile.hs │ │ │ ├── RichInfo.hs │ │ │ ├── Saml.hs │ │ │ ├── Scim.hs │ │ │ └── Search.hs │ │ │ ├── UserEvent.hs │ │ │ ├── UserGroup.hs │ │ │ ├── UserGroup │ │ │ └── Pagination.hs │ │ │ ├── UserMap.hs │ │ │ ├── Util │ │ │ └── Aeson.hs │ │ │ ├── VersionInfo.hs │ │ │ └── Wrapped.hs │ ├── test │ │ ├── golden.hs │ │ ├── golden │ │ │ ├── 0001-Golden-test-generation-patch-DO-NOT-MERGE.patch │ │ │ ├── Test │ │ │ │ └── Wire │ │ │ │ │ └── API │ │ │ │ │ └── Golden │ │ │ │ │ ├── FromJSON.hs │ │ │ │ │ ├── Generated.hs │ │ │ │ │ ├── Generated │ │ │ │ │ ├── AccessRoleLegacy_user.hs │ │ │ │ │ ├── AccessToken_user.hs │ │ │ │ │ ├── Access_user.hs │ │ │ │ │ ├── Action_user.hs │ │ │ │ │ ├── ActivationCode_user.hs │ │ │ │ │ ├── ActivationKey_user.hs │ │ │ │ │ ├── ActivationResponse_user.hs │ │ │ │ │ ├── AddBotResponse_user.hs │ │ │ │ │ ├── AddBot_user.hs │ │ │ │ │ ├── AppName_user.hs │ │ │ │ │ ├── ApproveLegalHoldForUserRequest_team.hs │ │ │ │ │ ├── AssetKey_user.hs │ │ │ │ │ ├── AssetRetention_user.hs │ │ │ │ │ ├── AssetSettings_user.hs │ │ │ │ │ ├── AssetSize_user.hs │ │ │ │ │ ├── AssetToken_user.hs │ │ │ │ │ ├── Asset_asset.hs │ │ │ │ │ ├── BindingNewTeamUser_user.hs │ │ │ │ │ ├── BotConvView_provider.hs │ │ │ │ │ ├── BotUserView_provider.hs │ │ │ │ │ ├── CheckHandles_user.hs │ │ │ │ │ ├── ClientClass_user.hs │ │ │ │ │ ├── ClientMismatch_user.hs │ │ │ │ │ ├── ClientPrekey_user.hs │ │ │ │ │ ├── ClientType_user.hs │ │ │ │ │ ├── Client_user.hs │ │ │ │ │ ├── ColourId_user.hs │ │ │ │ │ ├── CompletePasswordReset_provider.hs │ │ │ │ │ ├── CompletePasswordReset_user.hs │ │ │ │ │ ├── Connect_user.hs │ │ │ │ │ ├── ConnectionRequest_user.hs │ │ │ │ │ ├── ConnectionUpdate_user.hs │ │ │ │ │ ├── Contact_user.hs │ │ │ │ │ ├── ConvMembers_user.hs │ │ │ │ │ ├── ConvTeamInfo_user.hs │ │ │ │ │ ├── ConvType_user.hs │ │ │ │ │ ├── ConversationAccessData_user.hs │ │ │ │ │ ├── ConversationCode_user.hs │ │ │ │ │ ├── ConversationList_20Conversation_user.hs │ │ │ │ │ ├── ConversationList_20_28Id_20_2a_20C_29_user.hs │ │ │ │ │ ├── ConversationMessageTimerUpdate_user.hs │ │ │ │ │ ├── ConversationReceiptModeUpdate_user.hs │ │ │ │ │ ├── ConversationRename_user.hs │ │ │ │ │ ├── ConversationRole_user.hs │ │ │ │ │ ├── ConversationRolesList_user.hs │ │ │ │ │ ├── Conversation_user.hs │ │ │ │ │ ├── CookieId_user.hs │ │ │ │ │ ├── CookieLabel_user.hs │ │ │ │ │ ├── CookieList_user.hs │ │ │ │ │ ├── CookieType_user.hs │ │ │ │ │ ├── Cookie_20_28_29_user.hs │ │ │ │ │ ├── CustomBackend_user.hs │ │ │ │ │ ├── DeleteProvider_provider.hs │ │ │ │ │ ├── DeleteService_provider.hs │ │ │ │ │ ├── DeleteUser_user.hs │ │ │ │ │ ├── DeletionCodeTimeout_user.hs │ │ │ │ │ ├── DisableLegalHoldForUserRequest_team.hs │ │ │ │ │ ├── EmailUpdate_provider.hs │ │ │ │ │ ├── EmailUpdate_user.hs │ │ │ │ │ ├── Email_user.hs │ │ │ │ │ ├── EventType_team.hs │ │ │ │ │ ├── EventType_user.hs │ │ │ │ │ ├── Event_conversation.hs │ │ │ │ │ ├── Event_featureConfig.hs │ │ │ │ │ ├── Event_team.hs │ │ │ │ │ ├── Event_user.hs │ │ │ │ │ ├── Feature_team.hs │ │ │ │ │ ├── HandleUpdate_user.hs │ │ │ │ │ ├── InvitationCode_user.hs │ │ │ │ │ ├── InvitationList_team.hs │ │ │ │ │ ├── InvitationRequest_team.hs │ │ │ │ │ ├── Invitation_team.hs │ │ │ │ │ ├── Invite_user.hs │ │ │ │ │ ├── LastPrekey_user.hs │ │ │ │ │ ├── LegalHoldServiceConfirm_team.hs │ │ │ │ │ ├── LegalHoldServiceRemove_team.hs │ │ │ │ │ ├── LimitedQualifiedUserIdList_user.hs │ │ │ │ │ ├── ListType_team.hs │ │ │ │ │ ├── LocaleUpdate_user.hs │ │ │ │ │ ├── Locale_user.hs │ │ │ │ │ ├── LockableFeaturePatch_team.hs │ │ │ │ │ ├── LockableFeature_team.hs │ │ │ │ │ ├── LoginCodeTimeout_user.hs │ │ │ │ │ ├── LoginCode_user.hs │ │ │ │ │ ├── ManagedBy_user.hs │ │ │ │ │ ├── MemberUpdateData_user.hs │ │ │ │ │ ├── MemberUpdate_user.hs │ │ │ │ │ ├── Member_user.hs │ │ │ │ │ ├── MembersJoin_user.hs │ │ │ │ │ ├── MutedStatus_user.hs │ │ │ │ │ ├── NameUpdate_user.hs │ │ │ │ │ ├── Name_user.hs │ │ │ │ │ ├── NewAssetToken_user.hs │ │ │ │ │ ├── NewBotRequest_provider.hs │ │ │ │ │ ├── NewBotResponse_provider.hs │ │ │ │ │ ├── NewClient_user.hs │ │ │ │ │ ├── NewConv_user.hs │ │ │ │ │ ├── NewLegalHoldClient_team.hs │ │ │ │ │ ├── NewLegalHoldService_team.hs │ │ │ │ │ ├── NewOne2OneConv_user.hs │ │ │ │ │ ├── NewOtrMessage_user.hs │ │ │ │ │ ├── NewPasswordReset_user.hs │ │ │ │ │ ├── NewProviderResponse_provider.hs │ │ │ │ │ ├── NewProvider_provider.hs │ │ │ │ │ ├── NewServiceResponse_provider.hs │ │ │ │ │ ├── NewService_provider.hs │ │ │ │ │ ├── NewTeamMember_team.hs │ │ │ │ │ ├── NewTeam_team.hs │ │ │ │ │ ├── NewUserPublic_user.hs │ │ │ │ │ ├── NewUser_user.hs │ │ │ │ │ ├── OtherMemberUpdate_user.hs │ │ │ │ │ ├── OtherMember_user.hs │ │ │ │ │ ├── OtrMessage_user.hs │ │ │ │ │ ├── OtrRecipients_user.hs │ │ │ │ │ ├── PasswordChange_provider.hs │ │ │ │ │ ├── PasswordChange_user.hs │ │ │ │ │ ├── PasswordResetCode_user.hs │ │ │ │ │ ├── PasswordResetKey_user.hs │ │ │ │ │ ├── PasswordReset_provider.hs │ │ │ │ │ ├── PendingLoginCode_user.hs │ │ │ │ │ ├── Permissions_team.hs │ │ │ │ │ ├── PhoneUpdate_user.hs │ │ │ │ │ ├── Phone_user.hs │ │ │ │ │ ├── Pict_user.hs │ │ │ │ │ ├── PrekeyBundle_user.hs │ │ │ │ │ ├── PrekeyId_user.hs │ │ │ │ │ ├── Prekey_user.hs │ │ │ │ │ ├── Priority_user.hs │ │ │ │ │ ├── PropertyKey_user.hs │ │ │ │ │ ├── ProviderActivationResponse_provider.hs │ │ │ │ │ ├── ProviderLogin_provider.hs │ │ │ │ │ ├── ProviderProfile_provider.hs │ │ │ │ │ ├── Provider_provider.hs │ │ │ │ │ ├── PubClient_user.hs │ │ │ │ │ ├── PushTokenList_user.hs │ │ │ │ │ ├── PushToken_user.hs │ │ │ │ │ ├── Push_2eToken_2eTransport_user.hs │ │ │ │ │ ├── QualifiedNewOtrMessage_user.hs │ │ │ │ │ ├── QualifiedUserClientPrekeyMapV4_user.hs │ │ │ │ │ ├── QueuedNotificationList_user.hs │ │ │ │ │ ├── QueuedNotification_user.hs │ │ │ │ │ ├── RTCConfiguration_user.hs │ │ │ │ │ ├── RTCIceServer_user.hs │ │ │ │ │ ├── ReceiptMode_user.hs │ │ │ │ │ ├── Relation_user.hs │ │ │ │ │ ├── RemoveBotResponse_user.hs │ │ │ │ │ ├── RemoveCookies_user.hs │ │ │ │ │ ├── RemoveLegalHoldSettingsRequest_team.hs │ │ │ │ │ ├── RequestNewLegalHoldClient_team.hs │ │ │ │ │ ├── RichField_user.hs │ │ │ │ │ ├── RichInfoAssocList_user.hs │ │ │ │ │ ├── RichInfo_user.hs │ │ │ │ │ ├── RmClient_user.hs │ │ │ │ │ ├── RoleName_user.hs │ │ │ │ │ ├── Role_team.hs │ │ │ │ │ ├── SFTServer_user.hs │ │ │ │ │ ├── Scheme_user.hs │ │ │ │ │ ├── SearchResult_20Contact_user.hs │ │ │ │ │ ├── SearchResult_20TeamContact_user.hs │ │ │ │ │ ├── SelfProfile_user.hs │ │ │ │ │ ├── SendLoginCode_user.hs │ │ │ │ │ ├── ServiceKeyPEM_provider.hs │ │ │ │ │ ├── ServiceKeyType_provider.hs │ │ │ │ │ ├── ServiceKey_provider.hs │ │ │ │ │ ├── ServiceProfilePage_provider.hs │ │ │ │ │ ├── ServiceProfile_provider.hs │ │ │ │ │ ├── ServiceRef_provider.hs │ │ │ │ │ ├── ServiceTagList_provider.hs │ │ │ │ │ ├── ServiceTag_provider.hs │ │ │ │ │ ├── ServiceToken_provider.hs │ │ │ │ │ ├── Service_provider.hs │ │ │ │ │ ├── SimpleMember_user.hs │ │ │ │ │ ├── TeamBinding_team.hs │ │ │ │ │ ├── TeamContact_user.hs │ │ │ │ │ ├── TeamConversationList_team.hs │ │ │ │ │ ├── TeamConversation_team.hs │ │ │ │ │ ├── TeamDeleteData_team.hs │ │ │ │ │ ├── TeamList_team.hs │ │ │ │ │ ├── TeamMemberDeleteData_team.hs │ │ │ │ │ ├── TeamMemberList_team.hs │ │ │ │ │ ├── TeamMember_team.hs │ │ │ │ │ ├── TeamSearchVisibilityView_team.hs │ │ │ │ │ ├── TeamSearchVisibility_team.hs │ │ │ │ │ ├── TeamUpdateData_team.hs │ │ │ │ │ ├── Team_team.hs │ │ │ │ │ ├── TokenType_user.hs │ │ │ │ │ ├── Token_user.hs │ │ │ │ │ ├── Transport_user.hs │ │ │ │ │ ├── TurnHost_user.hs │ │ │ │ │ ├── TurnURI_user.hs │ │ │ │ │ ├── TurnUsername_user.hs │ │ │ │ │ ├── TypingStatus_user.hs │ │ │ │ │ ├── UpdateBotPrekeys_user.hs │ │ │ │ │ ├── UpdateClient_user.hs │ │ │ │ │ ├── UpdateProvider_provider.hs │ │ │ │ │ ├── UpdateServiceConn_provider.hs │ │ │ │ │ ├── UpdateServiceWhitelist_provider.hs │ │ │ │ │ ├── UpdateService_provider.hs │ │ │ │ │ ├── UserClientMap_20Int_user.hs │ │ │ │ │ ├── UserClients_user.hs │ │ │ │ │ ├── UserConnectionList_user.hs │ │ │ │ │ ├── UserConnection_user.hs │ │ │ │ │ ├── UserHandleInfo_user.hs │ │ │ │ │ ├── UserLegalHoldStatusResponse_team.hs │ │ │ │ │ ├── UserProfile_user.hs │ │ │ │ │ ├── UserSSOId_user.hs │ │ │ │ │ ├── UserUpdate_user.hs │ │ │ │ │ ├── User_2eProfile_2eAsset_user.hs │ │ │ │ │ ├── User_user.hs │ │ │ │ │ ├── VerificationAction_user.hs │ │ │ │ │ ├── VerifyDeleteUser_user.hs │ │ │ │ │ ├── ViewLegalHoldServiceInfo_team.hs │ │ │ │ │ ├── ViewLegalHoldService_team.hs │ │ │ │ │ └── Wrapped_20_22some_5fint_22_20Int_user.hs │ │ │ │ │ ├── Manual.hs │ │ │ │ │ ├── Manual │ │ │ │ │ ├── Activate_user.hs │ │ │ │ │ ├── CannonId.hs │ │ │ │ │ ├── ClientCapability.hs │ │ │ │ │ ├── ClientCapabilityList.hs │ │ │ │ │ ├── Contact.hs │ │ │ │ │ ├── ConvIdsPage.hs │ │ │ │ │ ├── ConversationCoverView.hs │ │ │ │ │ ├── ConversationEvent.hs │ │ │ │ │ ├── ConversationPagingState.hs │ │ │ │ │ ├── ConversationRemoveMembers.hs │ │ │ │ │ ├── ConversationsResponse.hs │ │ │ │ │ ├── CreateGroupConversation.hs │ │ │ │ │ ├── CreateScimToken.hs │ │ │ │ │ ├── CreateScimTokenResponse.hs │ │ │ │ │ ├── DomainVerification.hs │ │ │ │ │ ├── EnterpriseLogin.hs │ │ │ │ │ ├── FeatureConfigEvent.hs │ │ │ │ │ ├── FederationDomainConfig.hs │ │ │ │ │ ├── FederationRestriction.hs │ │ │ │ │ ├── FederationStatus.hs │ │ │ │ │ ├── GetPaginatedConversationIds.hs │ │ │ │ │ ├── GroupId.hs │ │ │ │ │ ├── InvitationUserView.hs │ │ │ │ │ ├── ListConversations.hs │ │ │ │ │ ├── ListUsersById.hs │ │ │ │ │ ├── LoginId_user.hs │ │ │ │ │ ├── Login_user.hs │ │ │ │ │ ├── MLSKeys.hs │ │ │ │ │ ├── Pagination.hs │ │ │ │ │ ├── Presence.hs │ │ │ │ │ ├── Push.hs │ │ │ │ │ ├── PushRemove.hs │ │ │ │ │ ├── QualifiedUserClientPrekeyMap.hs │ │ │ │ │ ├── SearchResultContact.hs │ │ │ │ │ ├── SendActivationCode_user.hs │ │ │ │ │ ├── SubConversation.hs │ │ │ │ │ ├── TeamSize.hs │ │ │ │ │ ├── Token.hs │ │ │ │ │ ├── UserClientPrekeyMap.hs │ │ │ │ │ ├── UserEvent.hs │ │ │ │ │ ├── UserGroup.hs │ │ │ │ │ └── UserIdList.hs │ │ │ │ │ ├── Protobuf.hs │ │ │ │ │ ├── Run.hs │ │ │ │ │ └── Runner.hs │ │ │ ├── fromJSON │ │ │ │ ├── testObject_Conversation_qualifiedId.json │ │ │ │ ├── testObject_Invite_user_2.json │ │ │ │ ├── testObject_LockableFeature_team_14.json │ │ │ │ ├── testObject_MemberUpdateData_user_1.json │ │ │ │ ├── testObject_MemberUpdate_user_3.json │ │ │ │ ├── testObject_NewConv_user_1.json │ │ │ │ ├── testObject_NewOtrMessage_user_1.json │ │ │ │ ├── testObject_NewUserPublic_user_1-2.json │ │ │ │ ├── testObject_NewUserPublic_user_1-3.json │ │ │ │ ├── testObject_NewUser_user_3-2.json │ │ │ │ ├── testObject_NewUser_user_5-2.json │ │ │ │ ├── testObject_NewUser_user_6-3.json │ │ │ │ ├── testObject_OtherMemberUpdate_user_2.json │ │ │ │ ├── testObject_Presence_3.json │ │ │ │ ├── testObject_RmClient_failure.json │ │ │ │ ├── testObject_RmClient_user_4.json │ │ │ │ ├── testObject_SimpleMember_user_2-2.json │ │ │ │ └── testObject_SimpleMember_user_2.json │ │ │ ├── gentests.sh │ │ │ ├── testObject_AccessRoleLegacy_user_1.json │ │ │ ├── testObject_AccessRoleLegacy_user_2.json │ │ │ ├── testObject_AccessRoleLegacy_user_3.json │ │ │ ├── testObject_AccessRoleLegacy_user_4.json │ │ │ ├── testObject_AccessToken_user_1.json │ │ │ ├── testObject_AccessToken_user_10.json │ │ │ ├── testObject_AccessToken_user_11.json │ │ │ ├── testObject_AccessToken_user_12.json │ │ │ ├── testObject_AccessToken_user_13.json │ │ │ ├── testObject_AccessToken_user_14.json │ │ │ ├── testObject_AccessToken_user_15.json │ │ │ ├── testObject_AccessToken_user_16.json │ │ │ ├── testObject_AccessToken_user_17.json │ │ │ ├── testObject_AccessToken_user_18.json │ │ │ ├── testObject_AccessToken_user_19.json │ │ │ ├── testObject_AccessToken_user_2.json │ │ │ ├── testObject_AccessToken_user_20.json │ │ │ ├── testObject_AccessToken_user_3.json │ │ │ ├── testObject_AccessToken_user_4.json │ │ │ ├── testObject_AccessToken_user_5.json │ │ │ ├── testObject_AccessToken_user_6.json │ │ │ ├── testObject_AccessToken_user_7.json │ │ │ ├── testObject_AccessToken_user_8.json │ │ │ ├── testObject_AccessToken_user_9.json │ │ │ ├── testObject_Access_user_1.json │ │ │ ├── testObject_Access_user_2.json │ │ │ ├── testObject_Access_user_3.json │ │ │ ├── testObject_Access_user_4.json │ │ │ ├── testObject_Action_user_1.json │ │ │ ├── testObject_Action_user_2.json │ │ │ ├── testObject_Action_user_3.json │ │ │ ├── testObject_Action_user_4.json │ │ │ ├── testObject_Action_user_5.json │ │ │ ├── testObject_Action_user_6.json │ │ │ ├── testObject_Action_user_7.json │ │ │ ├── testObject_Action_user_8.json │ │ │ ├── testObject_Action_user_9.json │ │ │ ├── testObject_Activate_user_1.json │ │ │ ├── testObject_Activate_user_2.json │ │ │ ├── testObject_Activate_user_3.json │ │ │ ├── testObject_Activate_user_4.json │ │ │ ├── testObject_ActivationCode_user_1.json │ │ │ ├── testObject_ActivationCode_user_10.json │ │ │ ├── testObject_ActivationCode_user_11.json │ │ │ ├── testObject_ActivationCode_user_12.json │ │ │ ├── testObject_ActivationCode_user_13.json │ │ │ ├── testObject_ActivationCode_user_14.json │ │ │ ├── testObject_ActivationCode_user_15.json │ │ │ ├── testObject_ActivationCode_user_16.json │ │ │ ├── testObject_ActivationCode_user_17.json │ │ │ ├── testObject_ActivationCode_user_18.json │ │ │ ├── testObject_ActivationCode_user_19.json │ │ │ ├── testObject_ActivationCode_user_2.json │ │ │ ├── testObject_ActivationCode_user_20.json │ │ │ ├── testObject_ActivationCode_user_3.json │ │ │ ├── testObject_ActivationCode_user_4.json │ │ │ ├── testObject_ActivationCode_user_5.json │ │ │ ├── testObject_ActivationCode_user_6.json │ │ │ ├── testObject_ActivationCode_user_7.json │ │ │ ├── testObject_ActivationCode_user_8.json │ │ │ ├── testObject_ActivationCode_user_9.json │ │ │ ├── testObject_ActivationKey_user_1.json │ │ │ ├── testObject_ActivationKey_user_10.json │ │ │ ├── testObject_ActivationKey_user_11.json │ │ │ ├── testObject_ActivationKey_user_12.json │ │ │ ├── testObject_ActivationKey_user_13.json │ │ │ ├── testObject_ActivationKey_user_14.json │ │ │ ├── testObject_ActivationKey_user_15.json │ │ │ ├── testObject_ActivationKey_user_16.json │ │ │ ├── testObject_ActivationKey_user_17.json │ │ │ ├── testObject_ActivationKey_user_18.json │ │ │ ├── testObject_ActivationKey_user_19.json │ │ │ ├── testObject_ActivationKey_user_2.json │ │ │ ├── testObject_ActivationKey_user_20.json │ │ │ ├── testObject_ActivationKey_user_3.json │ │ │ ├── testObject_ActivationKey_user_4.json │ │ │ ├── testObject_ActivationKey_user_5.json │ │ │ ├── testObject_ActivationKey_user_6.json │ │ │ ├── testObject_ActivationKey_user_7.json │ │ │ ├── testObject_ActivationKey_user_8.json │ │ │ ├── testObject_ActivationKey_user_9.json │ │ │ ├── testObject_ActivationResponse_user_1.json │ │ │ ├── testObject_ActivationResponse_user_10.json │ │ │ ├── testObject_ActivationResponse_user_2.json │ │ │ ├── testObject_ActivationResponse_user_3.json │ │ │ ├── testObject_ActivationResponse_user_4.json │ │ │ ├── testObject_ActivationResponse_user_5.json │ │ │ ├── testObject_ActivationResponse_user_6.json │ │ │ ├── testObject_ActivationResponse_user_7.json │ │ │ ├── testObject_ActivationResponse_user_8.json │ │ │ ├── testObject_ActivationResponse_user_9.json │ │ │ ├── testObject_AddBotResponse_user_1.json │ │ │ ├── testObject_AddBotResponse_user_2.json │ │ │ ├── testObject_AddBot_user_1.json │ │ │ ├── testObject_AddBot_user_2.json │ │ │ ├── testObject_AppName_user_1.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_1.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_10.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_11.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_12.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_13.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_14.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_15.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_16.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_17.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_18.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_19.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_2.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_20.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_3.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_4.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_5.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_6.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_7.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_8.json │ │ │ ├── testObject_ApproveLegalHoldForUserRequest_team_9.json │ │ │ ├── testObject_AssetKey_user_1.json │ │ │ ├── testObject_AssetKey_user_2.json │ │ │ ├── testObject_AssetKey_user_3.json │ │ │ ├── testObject_AssetKey_user_4.json │ │ │ ├── testObject_AssetKey_user_5.json │ │ │ ├── testObject_AssetRetention_user_1.json │ │ │ ├── testObject_AssetRetention_user_13.json │ │ │ ├── testObject_AssetRetention_user_2.json │ │ │ ├── testObject_AssetRetention_user_3.json │ │ │ ├── testObject_AssetRetention_user_8.json │ │ │ ├── testObject_AssetSettings_user_1.json │ │ │ ├── testObject_AssetSettings_user_10.json │ │ │ ├── testObject_AssetSettings_user_14.json │ │ │ ├── testObject_AssetSettings_user_15.json │ │ │ ├── testObject_AssetSettings_user_16.json │ │ │ ├── testObject_AssetSettings_user_19.json │ │ │ ├── testObject_AssetSettings_user_2.json │ │ │ ├── testObject_AssetSettings_user_20.json │ │ │ ├── testObject_AssetSettings_user_3.json │ │ │ ├── testObject_AssetSettings_user_5.json │ │ │ ├── testObject_AssetSettings_user_6.json │ │ │ ├── testObject_AssetSize_user_1.json │ │ │ ├── testObject_AssetSize_user_10.json │ │ │ ├── testObject_AssetSize_user_11.json │ │ │ ├── testObject_AssetSize_user_12.json │ │ │ ├── testObject_AssetSize_user_13.json │ │ │ ├── testObject_AssetSize_user_14.json │ │ │ ├── testObject_AssetSize_user_15.json │ │ │ ├── testObject_AssetSize_user_16.json │ │ │ ├── testObject_AssetSize_user_17.json │ │ │ ├── testObject_AssetSize_user_18.json │ │ │ ├── testObject_AssetSize_user_19.json │ │ │ ├── testObject_AssetSize_user_2.json │ │ │ ├── testObject_AssetSize_user_20.json │ │ │ ├── testObject_AssetSize_user_3.json │ │ │ ├── testObject_AssetSize_user_4.json │ │ │ ├── testObject_AssetSize_user_5.json │ │ │ ├── testObject_AssetSize_user_6.json │ │ │ ├── testObject_AssetSize_user_7.json │ │ │ ├── testObject_AssetSize_user_8.json │ │ │ ├── testObject_AssetSize_user_9.json │ │ │ ├── testObject_AssetToken_user_1.json │ │ │ ├── testObject_AssetToken_user_12.json │ │ │ ├── testObject_AssetToken_user_15.json │ │ │ ├── testObject_AssetToken_user_20.json │ │ │ ├── testObject_AssetToken_user_4.json │ │ │ ├── testObject_AssetToken_user_5.json │ │ │ ├── testObject_AssetToken_user_7.json │ │ │ ├── testObject_Asset_asset_1.json │ │ │ ├── testObject_Asset_asset_10.json │ │ │ ├── testObject_Asset_asset_11.json │ │ │ ├── testObject_Asset_asset_12.json │ │ │ ├── testObject_Asset_asset_13.json │ │ │ ├── testObject_Asset_asset_14.json │ │ │ ├── testObject_Asset_asset_15.json │ │ │ ├── testObject_Asset_asset_16.json │ │ │ ├── testObject_Asset_asset_17.json │ │ │ ├── testObject_Asset_asset_18.json │ │ │ ├── testObject_Asset_asset_19.json │ │ │ ├── testObject_Asset_asset_2.json │ │ │ ├── testObject_Asset_asset_20.json │ │ │ ├── testObject_Asset_asset_3.json │ │ │ ├── testObject_Asset_asset_4.json │ │ │ ├── testObject_Asset_asset_5.json │ │ │ ├── testObject_Asset_asset_6.json │ │ │ ├── testObject_Asset_asset_7.json │ │ │ ├── testObject_Asset_asset_8.json │ │ │ ├── testObject_Asset_asset_9.json │ │ │ ├── testObject_BindingNewTeamUser_user_1.json │ │ │ ├── testObject_BindingNewTeamUser_user_2.json │ │ │ ├── testObject_BotConvView_provider_1.json │ │ │ ├── testObject_BotConvView_provider_10.json │ │ │ ├── testObject_BotConvView_provider_11.json │ │ │ ├── testObject_BotConvView_provider_12.json │ │ │ ├── testObject_BotConvView_provider_13.json │ │ │ ├── testObject_BotConvView_provider_14.json │ │ │ ├── testObject_BotConvView_provider_15.json │ │ │ ├── testObject_BotConvView_provider_16.json │ │ │ ├── testObject_BotConvView_provider_17.json │ │ │ ├── testObject_BotConvView_provider_18.json │ │ │ ├── testObject_BotConvView_provider_19.json │ │ │ ├── testObject_BotConvView_provider_2.json │ │ │ ├── testObject_BotConvView_provider_20.json │ │ │ ├── testObject_BotConvView_provider_3.json │ │ │ ├── testObject_BotConvView_provider_4.json │ │ │ ├── testObject_BotConvView_provider_5.json │ │ │ ├── testObject_BotConvView_provider_6.json │ │ │ ├── testObject_BotConvView_provider_7.json │ │ │ ├── testObject_BotConvView_provider_8.json │ │ │ ├── testObject_BotConvView_provider_9.json │ │ │ ├── testObject_BotUserView_provider_1.json │ │ │ ├── testObject_BotUserView_provider_10.json │ │ │ ├── testObject_BotUserView_provider_11.json │ │ │ ├── testObject_BotUserView_provider_12.json │ │ │ ├── testObject_BotUserView_provider_13.json │ │ │ ├── testObject_BotUserView_provider_14.json │ │ │ ├── testObject_BotUserView_provider_15.json │ │ │ ├── testObject_BotUserView_provider_16.json │ │ │ ├── testObject_BotUserView_provider_17.json │ │ │ ├── testObject_BotUserView_provider_18.json │ │ │ ├── testObject_BotUserView_provider_19.json │ │ │ ├── testObject_BotUserView_provider_2.json │ │ │ ├── testObject_BotUserView_provider_20.json │ │ │ ├── testObject_BotUserView_provider_3.json │ │ │ ├── testObject_BotUserView_provider_4.json │ │ │ ├── testObject_BotUserView_provider_5.json │ │ │ ├── testObject_BotUserView_provider_6.json │ │ │ ├── testObject_BotUserView_provider_7.json │ │ │ ├── testObject_BotUserView_provider_8.json │ │ │ ├── testObject_BotUserView_provider_9.json │ │ │ ├── testObject_CannonId_1.json │ │ │ ├── testObject_CannonId_2.json │ │ │ ├── testObject_CannonId_3.json │ │ │ ├── testObject_CheckHandles_user_1.json │ │ │ ├── testObject_CheckHandles_user_10.json │ │ │ ├── testObject_CheckHandles_user_11.json │ │ │ ├── testObject_CheckHandles_user_12.json │ │ │ ├── testObject_CheckHandles_user_13.json │ │ │ ├── testObject_CheckHandles_user_14.json │ │ │ ├── testObject_CheckHandles_user_15.json │ │ │ ├── testObject_CheckHandles_user_16.json │ │ │ ├── testObject_CheckHandles_user_17.json │ │ │ ├── testObject_CheckHandles_user_18.json │ │ │ ├── testObject_CheckHandles_user_19.json │ │ │ ├── testObject_CheckHandles_user_2.json │ │ │ ├── testObject_CheckHandles_user_20.json │ │ │ ├── testObject_CheckHandles_user_3.json │ │ │ ├── testObject_CheckHandles_user_4.json │ │ │ ├── testObject_CheckHandles_user_5.json │ │ │ ├── testObject_CheckHandles_user_6.json │ │ │ ├── testObject_CheckHandles_user_7.json │ │ │ ├── testObject_CheckHandles_user_8.json │ │ │ ├── testObject_CheckHandles_user_9.json │ │ │ ├── testObject_ClientCapabilityList_1.json │ │ │ ├── testObject_ClientCapabilityList_2.json │ │ │ ├── testObject_ClientCapabilityList_3.json │ │ │ ├── testObject_ClientCapabilityList_3_V7.json │ │ │ ├── testObject_ClientCapabilityList_4.json │ │ │ ├── testObject_ClientCapabilityList_5.json │ │ │ ├── testObject_ClientCapability_1.json │ │ │ ├── testObject_ClientCapability_2.json │ │ │ ├── testObject_ClientClass_user_1.json │ │ │ ├── testObject_ClientClass_user_10.json │ │ │ ├── testObject_ClientClass_user_11.json │ │ │ ├── testObject_ClientClass_user_12.json │ │ │ ├── testObject_ClientClass_user_13.json │ │ │ ├── testObject_ClientClass_user_14.json │ │ │ ├── testObject_ClientClass_user_15.json │ │ │ ├── testObject_ClientClass_user_16.json │ │ │ ├── testObject_ClientClass_user_17.json │ │ │ ├── testObject_ClientClass_user_18.json │ │ │ ├── testObject_ClientClass_user_19.json │ │ │ ├── testObject_ClientClass_user_2.json │ │ │ ├── testObject_ClientClass_user_20.json │ │ │ ├── testObject_ClientClass_user_3.json │ │ │ ├── testObject_ClientClass_user_4.json │ │ │ ├── testObject_ClientClass_user_5.json │ │ │ ├── testObject_ClientClass_user_6.json │ │ │ ├── testObject_ClientClass_user_7.json │ │ │ ├── testObject_ClientClass_user_8.json │ │ │ ├── testObject_ClientClass_user_9.json │ │ │ ├── testObject_ClientMismatch_user_1.json │ │ │ ├── testObject_ClientPrekey_user_1.json │ │ │ ├── testObject_ClientPrekey_user_10.json │ │ │ ├── testObject_ClientPrekey_user_11.json │ │ │ ├── testObject_ClientPrekey_user_12.json │ │ │ ├── testObject_ClientPrekey_user_13.json │ │ │ ├── testObject_ClientPrekey_user_14.json │ │ │ ├── testObject_ClientPrekey_user_15.json │ │ │ ├── testObject_ClientPrekey_user_16.json │ │ │ ├── testObject_ClientPrekey_user_17.json │ │ │ ├── testObject_ClientPrekey_user_18.json │ │ │ ├── testObject_ClientPrekey_user_19.json │ │ │ ├── testObject_ClientPrekey_user_2.json │ │ │ ├── testObject_ClientPrekey_user_20.json │ │ │ ├── testObject_ClientPrekey_user_3.json │ │ │ ├── testObject_ClientPrekey_user_4.json │ │ │ ├── testObject_ClientPrekey_user_5.json │ │ │ ├── testObject_ClientPrekey_user_6.json │ │ │ ├── testObject_ClientPrekey_user_7.json │ │ │ ├── testObject_ClientPrekey_user_8.json │ │ │ ├── testObject_ClientPrekey_user_9.json │ │ │ ├── testObject_ClientType_user_1.json │ │ │ ├── testObject_ClientType_user_10.json │ │ │ ├── testObject_ClientType_user_11.json │ │ │ ├── testObject_ClientType_user_12.json │ │ │ ├── testObject_ClientType_user_13.json │ │ │ ├── testObject_ClientType_user_14.json │ │ │ ├── testObject_ClientType_user_15.json │ │ │ ├── testObject_ClientType_user_16.json │ │ │ ├── testObject_ClientType_user_17.json │ │ │ ├── testObject_ClientType_user_18.json │ │ │ ├── testObject_ClientType_user_19.json │ │ │ ├── testObject_ClientType_user_2.json │ │ │ ├── testObject_ClientType_user_20.json │ │ │ ├── testObject_ClientType_user_3.json │ │ │ ├── testObject_ClientType_user_4.json │ │ │ ├── testObject_ClientType_user_5.json │ │ │ ├── testObject_ClientType_user_6.json │ │ │ ├── testObject_ClientType_user_7.json │ │ │ ├── testObject_ClientType_user_8.json │ │ │ ├── testObject_ClientType_user_9.json │ │ │ ├── testObject_ClientV6_user_1.json │ │ │ ├── testObject_ClientV6_user_10.json │ │ │ ├── testObject_ClientV6_user_11.json │ │ │ ├── testObject_ClientV6_user_12.json │ │ │ ├── testObject_ClientV6_user_13.json │ │ │ ├── testObject_ClientV6_user_14.json │ │ │ ├── testObject_ClientV6_user_15.json │ │ │ ├── testObject_ClientV6_user_16.json │ │ │ ├── testObject_ClientV6_user_17.json │ │ │ ├── testObject_ClientV6_user_18.json │ │ │ ├── testObject_ClientV6_user_19.json │ │ │ ├── testObject_ClientV6_user_2.json │ │ │ ├── testObject_ClientV6_user_20.json │ │ │ ├── testObject_ClientV6_user_3.json │ │ │ ├── testObject_ClientV6_user_4.json │ │ │ ├── testObject_ClientV6_user_5.json │ │ │ ├── testObject_ClientV6_user_6.json │ │ │ ├── testObject_ClientV6_user_7.json │ │ │ ├── testObject_ClientV6_user_8.json │ │ │ ├── testObject_ClientV6_user_9.json │ │ │ ├── testObject_Client_user_1.json │ │ │ ├── testObject_Client_user_10.json │ │ │ ├── testObject_Client_user_11.json │ │ │ ├── testObject_Client_user_12.json │ │ │ ├── testObject_Client_user_13.json │ │ │ ├── testObject_Client_user_14.json │ │ │ ├── testObject_Client_user_15.json │ │ │ ├── testObject_Client_user_16.json │ │ │ ├── testObject_Client_user_17.json │ │ │ ├── testObject_Client_user_18.json │ │ │ ├── testObject_Client_user_19.json │ │ │ ├── testObject_Client_user_2.json │ │ │ ├── testObject_Client_user_20.json │ │ │ ├── testObject_Client_user_3.json │ │ │ ├── testObject_Client_user_4.json │ │ │ ├── testObject_Client_user_5.json │ │ │ ├── testObject_Client_user_6.json │ │ │ ├── testObject_Client_user_7.json │ │ │ ├── testObject_Client_user_8.json │ │ │ ├── testObject_Client_user_9.json │ │ │ ├── testObject_ColourId_user_1.json │ │ │ ├── testObject_ColourId_user_10.json │ │ │ ├── testObject_ColourId_user_11.json │ │ │ ├── testObject_ColourId_user_12.json │ │ │ ├── testObject_ColourId_user_13.json │ │ │ ├── testObject_ColourId_user_14.json │ │ │ ├── testObject_ColourId_user_15.json │ │ │ ├── testObject_ColourId_user_16.json │ │ │ ├── testObject_ColourId_user_17.json │ │ │ ├── testObject_ColourId_user_18.json │ │ │ ├── testObject_ColourId_user_19.json │ │ │ ├── testObject_ColourId_user_2.json │ │ │ ├── testObject_ColourId_user_20.json │ │ │ ├── testObject_ColourId_user_3.json │ │ │ ├── testObject_ColourId_user_4.json │ │ │ ├── testObject_ColourId_user_5.json │ │ │ ├── testObject_ColourId_user_6.json │ │ │ ├── testObject_ColourId_user_7.json │ │ │ ├── testObject_ColourId_user_8.json │ │ │ ├── testObject_ColourId_user_9.json │ │ │ ├── testObject_CompletePasswordReset_provider_1.json │ │ │ ├── testObject_CompletePasswordReset_provider_10.json │ │ │ ├── testObject_CompletePasswordReset_provider_11.json │ │ │ ├── testObject_CompletePasswordReset_provider_12.json │ │ │ ├── testObject_CompletePasswordReset_provider_13.json │ │ │ ├── testObject_CompletePasswordReset_provider_14.json │ │ │ ├── testObject_CompletePasswordReset_provider_15.json │ │ │ ├── testObject_CompletePasswordReset_provider_16.json │ │ │ ├── testObject_CompletePasswordReset_provider_17.json │ │ │ ├── testObject_CompletePasswordReset_provider_18.json │ │ │ ├── testObject_CompletePasswordReset_provider_19.json │ │ │ ├── testObject_CompletePasswordReset_provider_2.json │ │ │ ├── testObject_CompletePasswordReset_provider_20.json │ │ │ ├── testObject_CompletePasswordReset_provider_3.json │ │ │ ├── testObject_CompletePasswordReset_provider_4.json │ │ │ ├── testObject_CompletePasswordReset_provider_5.json │ │ │ ├── testObject_CompletePasswordReset_provider_6.json │ │ │ ├── testObject_CompletePasswordReset_provider_7.json │ │ │ ├── testObject_CompletePasswordReset_provider_8.json │ │ │ ├── testObject_CompletePasswordReset_provider_9.json │ │ │ ├── testObject_CompletePasswordReset_user_1.json │ │ │ ├── testObject_CompletePasswordReset_user_10.json │ │ │ ├── testObject_CompletePasswordReset_user_11.json │ │ │ ├── testObject_CompletePasswordReset_user_12.json │ │ │ ├── testObject_CompletePasswordReset_user_13.json │ │ │ ├── testObject_CompletePasswordReset_user_14.json │ │ │ ├── testObject_CompletePasswordReset_user_15.json │ │ │ ├── testObject_CompletePasswordReset_user_16.json │ │ │ ├── testObject_CompletePasswordReset_user_17.json │ │ │ ├── testObject_CompletePasswordReset_user_18.json │ │ │ ├── testObject_CompletePasswordReset_user_19.json │ │ │ ├── testObject_CompletePasswordReset_user_2.json │ │ │ ├── testObject_CompletePasswordReset_user_20.json │ │ │ ├── testObject_CompletePasswordReset_user_3.json │ │ │ ├── testObject_CompletePasswordReset_user_4.json │ │ │ ├── testObject_CompletePasswordReset_user_5.json │ │ │ ├── testObject_CompletePasswordReset_user_6.json │ │ │ ├── testObject_CompletePasswordReset_user_7.json │ │ │ ├── testObject_CompletePasswordReset_user_8.json │ │ │ ├── testObject_CompletePasswordReset_user_9.json │ │ │ ├── testObject_Connect_user_1.json │ │ │ ├── testObject_Connect_user_2.json │ │ │ ├── testObject_ConnectionRequest_user_1.json │ │ │ ├── testObject_ConnectionRequest_user_2.json │ │ │ ├── testObject_ConnectionUpdate_user_1.json │ │ │ ├── testObject_Contact_1.json │ │ │ ├── testObject_Contact_2.json │ │ │ ├── testObject_Contact_user_1.json │ │ │ ├── testObject_Contact_user_10.json │ │ │ ├── testObject_Contact_user_11.json │ │ │ ├── testObject_Contact_user_12.json │ │ │ ├── testObject_Contact_user_13.json │ │ │ ├── testObject_Contact_user_14.json │ │ │ ├── testObject_Contact_user_15.json │ │ │ ├── testObject_Contact_user_16.json │ │ │ ├── testObject_Contact_user_17.json │ │ │ ├── testObject_Contact_user_18.json │ │ │ ├── testObject_Contact_user_19.json │ │ │ ├── testObject_Contact_user_2.json │ │ │ ├── testObject_Contact_user_20.json │ │ │ ├── testObject_Contact_user_3.json │ │ │ ├── testObject_Contact_user_4.json │ │ │ ├── testObject_Contact_user_5.json │ │ │ ├── testObject_Contact_user_6.json │ │ │ ├── testObject_Contact_user_7.json │ │ │ ├── testObject_Contact_user_8.json │ │ │ ├── testObject_Contact_user_9.json │ │ │ ├── testObject_ConvIdsPage_1.json │ │ │ ├── testObject_ConvIdsPage_2.json │ │ │ ├── testObject_ConvTeamInfo_user_1.json │ │ │ ├── testObject_ConvType_user_1.json │ │ │ ├── testObject_ConvType_user_2.json │ │ │ ├── testObject_ConvType_user_3.json │ │ │ ├── testObject_ConvType_user_4.json │ │ │ ├── testObject_ConversationAccessData_user_1.json │ │ │ ├── testObject_ConversationAccessData_user_2.json │ │ │ ├── testObject_ConversationAccessData_v2_user_1.json │ │ │ ├── testObject_ConversationAccessData_v2_user_2.json │ │ │ ├── testObject_ConversationCode_user_1.json │ │ │ ├── testObject_ConversationCode_user_2.json │ │ │ ├── testObject_ConversationCoverView_1.json │ │ │ ├── testObject_ConversationCoverView_2.json │ │ │ ├── testObject_ConversationCoverView_3.json │ │ │ ├── testObject_ConversationList_20Conversation_v2_user_1.json │ │ │ ├── testObject_ConversationList_20Conversation_v2_user_2.json │ │ │ ├── testObject_ConversationList_20_28Id_20_2a_20C_29_user_1.json │ │ │ ├── testObject_ConversationList_20_28Id_20_2a_20C_29_user_2.json │ │ │ ├── testObject_ConversationMessageTimerUpdate_user_1.json │ │ │ ├── testObject_ConversationMessageTimerUpdate_user_2.json │ │ │ ├── testObject_ConversationPagingState_1.json │ │ │ ├── testObject_ConversationPagingState_2.json │ │ │ ├── testObject_ConversationPagingState_3.json │ │ │ ├── testObject_ConversationPagingState_4.json │ │ │ ├── testObject_ConversationReceiptModeUpdate_user_1.json │ │ │ ├── testObject_ConversationRemoveMembers_1.json │ │ │ ├── testObject_ConversationRemoveMembers_2.json │ │ │ ├── testObject_ConversationRemoveMembers_3.json │ │ │ ├── testObject_ConversationRename_user_1.json │ │ │ ├── testObject_ConversationRole_user_1.json │ │ │ ├── testObject_ConversationRole_user_2.json │ │ │ ├── testObject_ConversationRole_user_3.json │ │ │ ├── testObject_ConversationRolesList_user_1.json │ │ │ ├── testObject_ConversationRolesList_user_2.json │ │ │ ├── testObject_Conversation_user_1.json │ │ │ ├── testObject_Conversation_user_2.json │ │ │ ├── testObject_Conversation_user_3.json │ │ │ ├── testObject_Conversation_user_4.json │ │ │ ├── testObject_Conversation_user_5.json │ │ │ ├── testObject_Conversation_v2_user_1.json │ │ │ ├── testObject_Conversation_v2_user_2.json │ │ │ ├── testObject_Conversation_v2_user_3.json │ │ │ ├── testObject_Conversation_v2_user_4.json │ │ │ ├── testObject_Conversation_v2_user_5.json │ │ │ ├── testObject_Conversation_v5_user_1.json │ │ │ ├── testObject_Conversation_v5_user_2.json │ │ │ ├── testObject_Conversation_v5_user_3.json │ │ │ ├── testObject_Conversation_v5_user_4.json │ │ │ ├── testObject_Conversation_v5_user_5.json │ │ │ ├── testObject_ConversationsResponse_1.json │ │ │ ├── testObject_ConversationsResponse_v2_1.json │ │ │ ├── testObject_ConversationsResponse_v5_1.json │ │ │ ├── testObject_CookieId_user_1.json │ │ │ ├── testObject_CookieId_user_10.json │ │ │ ├── testObject_CookieId_user_11.json │ │ │ ├── testObject_CookieId_user_12.json │ │ │ ├── testObject_CookieId_user_13.json │ │ │ ├── testObject_CookieId_user_14.json │ │ │ ├── testObject_CookieId_user_15.json │ │ │ ├── testObject_CookieId_user_16.json │ │ │ ├── testObject_CookieId_user_17.json │ │ │ ├── testObject_CookieId_user_18.json │ │ │ ├── testObject_CookieId_user_19.json │ │ │ ├── testObject_CookieId_user_2.json │ │ │ ├── testObject_CookieId_user_20.json │ │ │ ├── testObject_CookieId_user_3.json │ │ │ ├── testObject_CookieId_user_4.json │ │ │ ├── testObject_CookieId_user_5.json │ │ │ ├── testObject_CookieId_user_6.json │ │ │ ├── testObject_CookieId_user_7.json │ │ │ ├── testObject_CookieId_user_8.json │ │ │ ├── testObject_CookieId_user_9.json │ │ │ ├── testObject_CookieLabel_user_1.json │ │ │ ├── testObject_CookieLabel_user_10.json │ │ │ ├── testObject_CookieLabel_user_11.json │ │ │ ├── testObject_CookieLabel_user_12.json │ │ │ ├── testObject_CookieLabel_user_13.json │ │ │ ├── testObject_CookieLabel_user_14.json │ │ │ ├── testObject_CookieLabel_user_15.json │ │ │ ├── testObject_CookieLabel_user_16.json │ │ │ ├── testObject_CookieLabel_user_17.json │ │ │ ├── testObject_CookieLabel_user_18.json │ │ │ ├── testObject_CookieLabel_user_19.json │ │ │ ├── testObject_CookieLabel_user_2.json │ │ │ ├── testObject_CookieLabel_user_20.json │ │ │ ├── testObject_CookieLabel_user_3.json │ │ │ ├── testObject_CookieLabel_user_4.json │ │ │ ├── testObject_CookieLabel_user_5.json │ │ │ ├── testObject_CookieLabel_user_6.json │ │ │ ├── testObject_CookieLabel_user_7.json │ │ │ ├── testObject_CookieLabel_user_8.json │ │ │ ├── testObject_CookieLabel_user_9.json │ │ │ ├── testObject_CookieList_user_1.json │ │ │ ├── testObject_CookieList_user_10.json │ │ │ ├── testObject_CookieList_user_11.json │ │ │ ├── testObject_CookieList_user_12.json │ │ │ ├── testObject_CookieList_user_13.json │ │ │ ├── testObject_CookieList_user_14.json │ │ │ ├── testObject_CookieList_user_15.json │ │ │ ├── testObject_CookieList_user_16.json │ │ │ ├── testObject_CookieList_user_17.json │ │ │ ├── testObject_CookieList_user_18.json │ │ │ ├── testObject_CookieList_user_19.json │ │ │ ├── testObject_CookieList_user_2.json │ │ │ ├── testObject_CookieList_user_20.json │ │ │ ├── testObject_CookieList_user_3.json │ │ │ ├── testObject_CookieList_user_4.json │ │ │ ├── testObject_CookieList_user_5.json │ │ │ ├── testObject_CookieList_user_6.json │ │ │ ├── testObject_CookieList_user_7.json │ │ │ ├── testObject_CookieList_user_8.json │ │ │ ├── testObject_CookieList_user_9.json │ │ │ ├── testObject_CookieType_user_1.json │ │ │ ├── testObject_CookieType_user_10.json │ │ │ ├── testObject_CookieType_user_11.json │ │ │ ├── testObject_CookieType_user_12.json │ │ │ ├── testObject_CookieType_user_13.json │ │ │ ├── testObject_CookieType_user_14.json │ │ │ ├── testObject_CookieType_user_15.json │ │ │ ├── testObject_CookieType_user_16.json │ │ │ ├── testObject_CookieType_user_17.json │ │ │ ├── testObject_CookieType_user_18.json │ │ │ ├── testObject_CookieType_user_19.json │ │ │ ├── testObject_CookieType_user_2.json │ │ │ ├── testObject_CookieType_user_20.json │ │ │ ├── testObject_CookieType_user_3.json │ │ │ ├── testObject_CookieType_user_4.json │ │ │ ├── testObject_CookieType_user_5.json │ │ │ ├── testObject_CookieType_user_6.json │ │ │ ├── testObject_CookieType_user_7.json │ │ │ ├── testObject_CookieType_user_8.json │ │ │ ├── testObject_CookieType_user_9.json │ │ │ ├── testObject_Cookie_20_28_29_user_1.json │ │ │ ├── testObject_Cookie_20_28_29_user_10.json │ │ │ ├── testObject_Cookie_20_28_29_user_11.json │ │ │ ├── testObject_Cookie_20_28_29_user_12.json │ │ │ ├── testObject_Cookie_20_28_29_user_13.json │ │ │ ├── testObject_Cookie_20_28_29_user_14.json │ │ │ ├── testObject_Cookie_20_28_29_user_15.json │ │ │ ├── testObject_Cookie_20_28_29_user_16.json │ │ │ ├── testObject_Cookie_20_28_29_user_17.json │ │ │ ├── testObject_Cookie_20_28_29_user_18.json │ │ │ ├── testObject_Cookie_20_28_29_user_19.json │ │ │ ├── testObject_Cookie_20_28_29_user_2.json │ │ │ ├── testObject_Cookie_20_28_29_user_20.json │ │ │ ├── testObject_Cookie_20_28_29_user_3.json │ │ │ ├── testObject_Cookie_20_28_29_user_4.json │ │ │ ├── testObject_Cookie_20_28_29_user_5.json │ │ │ ├── testObject_Cookie_20_28_29_user_6.json │ │ │ ├── testObject_Cookie_20_28_29_user_7.json │ │ │ ├── testObject_Cookie_20_28_29_user_8.json │ │ │ ├── testObject_Cookie_20_28_29_user_9.json │ │ │ ├── testObject_CreateGroupConversation_1.json │ │ │ ├── testObject_CreateGroupConversation_2.json │ │ │ ├── testObject_CreateGroupConversation_3.json │ │ │ ├── testObject_CreateScimTokenResponse_1.json │ │ │ ├── testObject_CreateScimToken_1.json │ │ │ ├── testObject_CreateScimToken_2.json │ │ │ ├── testObject_CreateScimToken_3.json │ │ │ ├── testObject_CreateScimToken_4.json │ │ │ ├── testObject_CustomBackend_user_1.json │ │ │ ├── testObject_CustomBackend_user_10.json │ │ │ ├── testObject_CustomBackend_user_11.json │ │ │ ├── testObject_CustomBackend_user_12.json │ │ │ ├── testObject_CustomBackend_user_13.json │ │ │ ├── testObject_CustomBackend_user_14.json │ │ │ ├── testObject_CustomBackend_user_15.json │ │ │ ├── testObject_CustomBackend_user_16.json │ │ │ ├── testObject_CustomBackend_user_17.json │ │ │ ├── testObject_CustomBackend_user_18.json │ │ │ ├── testObject_CustomBackend_user_19.json │ │ │ ├── testObject_CustomBackend_user_2.json │ │ │ ├── testObject_CustomBackend_user_20.json │ │ │ ├── testObject_CustomBackend_user_3.json │ │ │ ├── testObject_CustomBackend_user_4.json │ │ │ ├── testObject_CustomBackend_user_5.json │ │ │ ├── testObject_CustomBackend_user_6.json │ │ │ ├── testObject_CustomBackend_user_7.json │ │ │ ├── testObject_CustomBackend_user_8.json │ │ │ ├── testObject_CustomBackend_user_9.json │ │ │ ├── testObject_DeleteProvider_provider_1.json │ │ │ ├── testObject_DeleteProvider_provider_10.json │ │ │ ├── testObject_DeleteProvider_provider_11.json │ │ │ ├── testObject_DeleteProvider_provider_12.json │ │ │ ├── testObject_DeleteProvider_provider_13.json │ │ │ ├── testObject_DeleteProvider_provider_14.json │ │ │ ├── testObject_DeleteProvider_provider_15.json │ │ │ ├── testObject_DeleteProvider_provider_16.json │ │ │ ├── testObject_DeleteProvider_provider_17.json │ │ │ ├── testObject_DeleteProvider_provider_18.json │ │ │ ├── testObject_DeleteProvider_provider_19.json │ │ │ ├── testObject_DeleteProvider_provider_2.json │ │ │ ├── testObject_DeleteProvider_provider_20.json │ │ │ ├── testObject_DeleteProvider_provider_3.json │ │ │ ├── testObject_DeleteProvider_provider_4.json │ │ │ ├── testObject_DeleteProvider_provider_5.json │ │ │ ├── testObject_DeleteProvider_provider_6.json │ │ │ ├── testObject_DeleteProvider_provider_7.json │ │ │ ├── testObject_DeleteProvider_provider_8.json │ │ │ ├── testObject_DeleteProvider_provider_9.json │ │ │ ├── testObject_DeleteService_provider_1.json │ │ │ ├── testObject_DeleteService_provider_10.json │ │ │ ├── testObject_DeleteService_provider_11.json │ │ │ ├── testObject_DeleteService_provider_12.json │ │ │ ├── testObject_DeleteService_provider_13.json │ │ │ ├── testObject_DeleteService_provider_14.json │ │ │ ├── testObject_DeleteService_provider_15.json │ │ │ ├── testObject_DeleteService_provider_16.json │ │ │ ├── testObject_DeleteService_provider_17.json │ │ │ ├── testObject_DeleteService_provider_18.json │ │ │ ├── testObject_DeleteService_provider_19.json │ │ │ ├── testObject_DeleteService_provider_2.json │ │ │ ├── testObject_DeleteService_provider_20.json │ │ │ ├── testObject_DeleteService_provider_3.json │ │ │ ├── testObject_DeleteService_provider_4.json │ │ │ ├── testObject_DeleteService_provider_5.json │ │ │ ├── testObject_DeleteService_provider_6.json │ │ │ ├── testObject_DeleteService_provider_7.json │ │ │ ├── testObject_DeleteService_provider_8.json │ │ │ ├── testObject_DeleteService_provider_9.json │ │ │ ├── testObject_DeleteUser_user_1.json │ │ │ ├── testObject_DeleteUser_user_10.json │ │ │ ├── testObject_DeleteUser_user_11.json │ │ │ ├── testObject_DeleteUser_user_12.json │ │ │ ├── testObject_DeleteUser_user_13.json │ │ │ ├── testObject_DeleteUser_user_14.json │ │ │ ├── testObject_DeleteUser_user_15.json │ │ │ ├── testObject_DeleteUser_user_16.json │ │ │ ├── testObject_DeleteUser_user_17.json │ │ │ ├── testObject_DeleteUser_user_18.json │ │ │ ├── testObject_DeleteUser_user_19.json │ │ │ ├── testObject_DeleteUser_user_2.json │ │ │ ├── testObject_DeleteUser_user_20.json │ │ │ ├── testObject_DeleteUser_user_3.json │ │ │ ├── testObject_DeleteUser_user_4.json │ │ │ ├── testObject_DeleteUser_user_5.json │ │ │ ├── testObject_DeleteUser_user_6.json │ │ │ ├── testObject_DeleteUser_user_7.json │ │ │ ├── testObject_DeleteUser_user_8.json │ │ │ ├── testObject_DeleteUser_user_9.json │ │ │ ├── testObject_DeletionCodeTimeout_user_1.json │ │ │ ├── testObject_DeletionCodeTimeout_user_10.json │ │ │ ├── testObject_DeletionCodeTimeout_user_11.json │ │ │ ├── testObject_DeletionCodeTimeout_user_12.json │ │ │ ├── testObject_DeletionCodeTimeout_user_13.json │ │ │ ├── testObject_DeletionCodeTimeout_user_14.json │ │ │ ├── testObject_DeletionCodeTimeout_user_15.json │ │ │ ├── testObject_DeletionCodeTimeout_user_16.json │ │ │ ├── testObject_DeletionCodeTimeout_user_17.json │ │ │ ├── testObject_DeletionCodeTimeout_user_18.json │ │ │ ├── testObject_DeletionCodeTimeout_user_19.json │ │ │ ├── testObject_DeletionCodeTimeout_user_2.json │ │ │ ├── testObject_DeletionCodeTimeout_user_20.json │ │ │ ├── testObject_DeletionCodeTimeout_user_3.json │ │ │ ├── testObject_DeletionCodeTimeout_user_4.json │ │ │ ├── testObject_DeletionCodeTimeout_user_5.json │ │ │ ├── testObject_DeletionCodeTimeout_user_6.json │ │ │ ├── testObject_DeletionCodeTimeout_user_7.json │ │ │ ├── testObject_DeletionCodeTimeout_user_8.json │ │ │ ├── testObject_DeletionCodeTimeout_user_9.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_1.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_10.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_11.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_12.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_13.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_14.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_15.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_16.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_17.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_18.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_19.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_2.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_20.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_3.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_4.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_5.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_6.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_7.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_8.json │ │ │ ├── testObject_DisableLegalHoldForUserRequest_team_9.json │ │ │ ├── testObject_DomainRedirectConfigV9_1.json │ │ │ ├── testObject_DomainRedirectConfigV9_2.json │ │ │ ├── testObject_DomainRedirectConfigV9_3.json │ │ │ ├── testObject_DomainRedirectConfigV9_4.json │ │ │ ├── testObject_DomainRedirectConfig_1.json │ │ │ ├── testObject_DomainRedirectConfig_2.json │ │ │ ├── testObject_DomainRedirectConfig_4.json │ │ │ ├── testObject_DomainRedirectResponseV10_1.json │ │ │ ├── testObject_DomainRedirectResponseV10_2.json │ │ │ ├── testObject_DomainRedirectResponseV10_3.json │ │ │ ├── testObject_DomainRedirectResponseV10_4.json │ │ │ ├── testObject_DomainRedirectResponseV10_5.json │ │ │ ├── testObject_DomainRedirectResponseV10_6.json │ │ │ ├── testObject_DomainRedirectResponseV10_7.json │ │ │ ├── testObject_DomainRedirectResponseV9_1.json │ │ │ ├── testObject_DomainRedirectResponseV9_2.json │ │ │ ├── testObject_DomainRedirectResponseV9_3.json │ │ │ ├── testObject_DomainRedirectResponseV9_4.json │ │ │ ├── testObject_DomainRedirectResponseV9_5.json │ │ │ ├── testObject_DomainRedirectResponseV9_6.json │ │ │ ├── testObject_DomainRedirectResponseV9_7.json │ │ │ ├── testObject_DomainRegistrationResponseV10_1.json │ │ │ ├── testObject_DomainRegistrationResponseV10_2.json │ │ │ ├── testObject_DomainRegistrationResponseV10_3.json │ │ │ ├── testObject_DomainRegistrationResponseV10_4.json │ │ │ ├── testObject_DomainRegistrationResponseV10_5.json │ │ │ ├── testObject_DomainRegistrationResponseV10_6.json │ │ │ ├── testObject_DomainRegistrationResponseV10_7.json │ │ │ ├── testObject_DomainRegistrationResponseV9_1.json │ │ │ ├── testObject_DomainRegistrationResponseV9_2.json │ │ │ ├── testObject_DomainRegistrationResponseV9_3.json │ │ │ ├── testObject_DomainRegistrationResponseV9_4.json │ │ │ ├── testObject_DomainRegistrationResponseV9_5.json │ │ │ ├── testObject_DomainRegistrationResponseV9_6.json │ │ │ ├── testObject_DomainRegistrationResponseV9_7.json │ │ │ ├── testObject_DomainRegistrationUpdate_1.json │ │ │ ├── testObject_DomainRegistrationUpdate_2.json │ │ │ ├── testObject_DomainRegistrationUpdate_3.json │ │ │ ├── testObject_DomainRegistrationUpdate_4.json │ │ │ ├── testObject_DomainRegistrationUpdate_5.json │ │ │ ├── testObject_DomainRegistrationUpdate_6.json │ │ │ ├── testObject_DomainRegistrationUpdate_7.json │ │ │ ├── testObject_EmailUpdate_provider_1.json │ │ │ ├── testObject_EmailUpdate_user_1.json │ │ │ ├── testObject_EmailUpdate_user_10.json │ │ │ ├── testObject_EmailUpdate_user_11.json │ │ │ ├── testObject_EmailUpdate_user_12.json │ │ │ ├── testObject_EmailUpdate_user_13.json │ │ │ ├── testObject_EmailUpdate_user_14.json │ │ │ ├── testObject_EmailUpdate_user_15.json │ │ │ ├── testObject_EmailUpdate_user_16.json │ │ │ ├── testObject_EmailUpdate_user_17.json │ │ │ ├── testObject_EmailUpdate_user_18.json │ │ │ ├── testObject_EmailUpdate_user_19.json │ │ │ ├── testObject_EmailUpdate_user_2.json │ │ │ ├── testObject_EmailUpdate_user_20.json │ │ │ ├── testObject_EmailUpdate_user_3.json │ │ │ ├── testObject_EmailUpdate_user_4.json │ │ │ ├── testObject_EmailUpdate_user_5.json │ │ │ ├── testObject_EmailUpdate_user_6.json │ │ │ ├── testObject_EmailUpdate_user_7.json │ │ │ ├── testObject_EmailUpdate_user_8.json │ │ │ ├── testObject_EmailUpdate_user_9.json │ │ │ ├── testObject_Email_user_1.json │ │ │ ├── testObject_EventType_team_1.json │ │ │ ├── testObject_EventType_team_10.json │ │ │ ├── testObject_EventType_team_11.json │ │ │ ├── testObject_EventType_team_12.json │ │ │ ├── testObject_EventType_team_13.json │ │ │ ├── testObject_EventType_team_14.json │ │ │ ├── testObject_EventType_team_15.json │ │ │ ├── testObject_EventType_team_16.json │ │ │ ├── testObject_EventType_team_17.json │ │ │ ├── testObject_EventType_team_18.json │ │ │ ├── testObject_EventType_team_19.json │ │ │ ├── testObject_EventType_team_2.json │ │ │ ├── testObject_EventType_team_20.json │ │ │ ├── testObject_EventType_team_3.json │ │ │ ├── testObject_EventType_team_4.json │ │ │ ├── testObject_EventType_team_5.json │ │ │ ├── testObject_EventType_team_6.json │ │ │ ├── testObject_EventType_team_7.json │ │ │ ├── testObject_EventType_team_8.json │ │ │ ├── testObject_EventType_team_9.json │ │ │ ├── testObject_EventType_user_1.json │ │ │ ├── testObject_EventType_user_10.json │ │ │ ├── testObject_EventType_user_11.json │ │ │ ├── testObject_EventType_user_12.json │ │ │ ├── testObject_EventType_user_13.json │ │ │ ├── testObject_EventType_user_14.json │ │ │ ├── testObject_EventType_user_2.json │ │ │ ├── testObject_EventType_user_3.json │ │ │ ├── testObject_EventType_user_4.json │ │ │ ├── testObject_EventType_user_5.json │ │ │ ├── testObject_EventType_user_6.json │ │ │ ├── testObject_EventType_user_7.json │ │ │ ├── testObject_EventType_user_8.json │ │ │ ├── testObject_EventType_user_9.json │ │ │ ├── testObject_Event_conversation_1.json │ │ │ ├── testObject_Event_conversation_10.json │ │ │ ├── testObject_Event_conversation_11.json │ │ │ ├── testObject_Event_conversation_2.json │ │ │ ├── testObject_Event_conversation_3.json │ │ │ ├── testObject_Event_conversation_4.json │ │ │ ├── testObject_Event_conversation_5.json │ │ │ ├── testObject_Event_conversation_6.json │ │ │ ├── testObject_Event_conversation_7.json │ │ │ ├── testObject_Event_conversation_8.json │ │ │ ├── testObject_Event_conversation_9.json │ │ │ ├── testObject_Event_conversation_manual_1.json │ │ │ ├── testObject_Event_conversation_manual_2.json │ │ │ ├── testObject_Event_conversation_manual_3.json │ │ │ ├── testObject_Event_featureConfig_1.json │ │ │ ├── testObject_Event_featureConfig_10.json │ │ │ ├── testObject_Event_featureConfig_2.json │ │ │ ├── testObject_Event_featureConfig_3.json │ │ │ ├── testObject_Event_featureConfig_4.json │ │ │ ├── testObject_Event_featureConfig_5.json │ │ │ ├── testObject_Event_featureConfig_6.json │ │ │ ├── testObject_Event_featureConfig_7.json │ │ │ ├── testObject_Event_featureConfig_8.json │ │ │ ├── testObject_Event_featureConfig_9.json │ │ │ ├── testObject_Event_team_1.json │ │ │ ├── testObject_Event_team_10.json │ │ │ ├── testObject_Event_team_11.json │ │ │ ├── testObject_Event_team_12.json │ │ │ ├── testObject_Event_team_13.json │ │ │ ├── testObject_Event_team_14.json │ │ │ ├── testObject_Event_team_15.json │ │ │ ├── testObject_Event_team_16.json │ │ │ ├── testObject_Event_team_17.json │ │ │ ├── testObject_Event_team_18.json │ │ │ ├── testObject_Event_team_19.json │ │ │ ├── testObject_Event_team_2.json │ │ │ ├── testObject_Event_team_20.json │ │ │ ├── testObject_Event_team_3.json │ │ │ ├── testObject_Event_team_4.json │ │ │ ├── testObject_Event_team_5.json │ │ │ ├── testObject_Event_team_6.json │ │ │ ├── testObject_Event_team_7.json │ │ │ ├── testObject_Event_team_8.json │ │ │ ├── testObject_Event_team_9.json │ │ │ ├── testObject_Event_user_1.json │ │ │ ├── testObject_Event_user_10.json │ │ │ ├── testObject_Event_user_11.json │ │ │ ├── testObject_Event_user_12.json │ │ │ ├── testObject_Event_user_13.json │ │ │ ├── testObject_Event_user_14.json │ │ │ ├── testObject_Event_user_15.json │ │ │ ├── testObject_Event_user_16.json │ │ │ ├── testObject_Event_user_2.json │ │ │ ├── testObject_Event_user_3.json │ │ │ ├── testObject_Event_user_4.json │ │ │ ├── testObject_Event_user_5.json │ │ │ ├── testObject_Event_user_6.json │ │ │ ├── testObject_Event_user_7.json │ │ │ ├── testObject_Event_user_8.json │ │ │ ├── testObject_Event_user_9.json │ │ │ ├── testObject_FeatureConfigEvent_1.json │ │ │ ├── testObject_FeatureConfigEvent_2.json │ │ │ ├── testObject_FeatureConfigEvent_3.json │ │ │ ├── testObject_Feature_team_1.json │ │ │ ├── testObject_Feature_team_10.json │ │ │ ├── testObject_Feature_team_11.json │ │ │ ├── testObject_Feature_team_12.json │ │ │ ├── testObject_Feature_team_13.json │ │ │ ├── testObject_Feature_team_14.json │ │ │ ├── testObject_Feature_team_15.json │ │ │ ├── testObject_Feature_team_16.json │ │ │ ├── testObject_Feature_team_17.json │ │ │ ├── testObject_Feature_team_2.json │ │ │ ├── testObject_Feature_team_3.json │ │ │ ├── testObject_Feature_team_4.json │ │ │ ├── testObject_Feature_team_5.json │ │ │ ├── testObject_Feature_team_6.json │ │ │ ├── testObject_Feature_team_7.json │ │ │ ├── testObject_Feature_team_8.json │ │ │ ├── testObject_Feature_team_9.json │ │ │ ├── testObject_FederationDomainConfig_1.json │ │ │ ├── testObject_FederationDomainConfig_2.json │ │ │ ├── testObject_FederationDomainConfig_3.json │ │ │ ├── testObject_FederationRestriction_1.json │ │ │ ├── testObject_FederationRestriction_2.json │ │ │ ├── testObject_FederationRestriction_3.json │ │ │ ├── testObject_FederationStatus_1.json │ │ │ ├── testObject_FederationStatus_2.json │ │ │ ├── testObject_GetPaginatedConversationIds_1.json │ │ │ ├── testObject_GetPaginatedConversationIds_2.json │ │ │ ├── testObject_GroupId_1.json │ │ │ ├── testObject_HandleUpdate_user_1.json │ │ │ ├── testObject_HandleUpdate_user_10.json │ │ │ ├── testObject_HandleUpdate_user_11.json │ │ │ ├── testObject_HandleUpdate_user_12.json │ │ │ ├── testObject_HandleUpdate_user_13.json │ │ │ ├── testObject_HandleUpdate_user_14.json │ │ │ ├── testObject_HandleUpdate_user_15.json │ │ │ ├── testObject_HandleUpdate_user_16.json │ │ │ ├── testObject_HandleUpdate_user_17.json │ │ │ ├── testObject_HandleUpdate_user_18.json │ │ │ ├── testObject_HandleUpdate_user_19.json │ │ │ ├── testObject_HandleUpdate_user_2.json │ │ │ ├── testObject_HandleUpdate_user_20.json │ │ │ ├── testObject_HandleUpdate_user_3.json │ │ │ ├── testObject_HandleUpdate_user_4.json │ │ │ ├── testObject_HandleUpdate_user_5.json │ │ │ ├── testObject_HandleUpdate_user_6.json │ │ │ ├── testObject_HandleUpdate_user_7.json │ │ │ ├── testObject_HandleUpdate_user_8.json │ │ │ ├── testObject_HandleUpdate_user_9.json │ │ │ ├── testObject_InvitationCode_user_1.json │ │ │ ├── testObject_InvitationCode_user_2.json │ │ │ ├── testObject_InvitationCode_user_3.json │ │ │ ├── testObject_InvitationCode_user_4.json │ │ │ ├── testObject_InvitationCode_user_5.json │ │ │ ├── testObject_InvitationList_team_1.json │ │ │ ├── testObject_InvitationList_team_10.json │ │ │ ├── testObject_InvitationList_team_11.json │ │ │ ├── testObject_InvitationList_team_12.json │ │ │ ├── testObject_InvitationList_team_13.json │ │ │ ├── testObject_InvitationList_team_14.json │ │ │ ├── testObject_InvitationList_team_15.json │ │ │ ├── testObject_InvitationList_team_16.json │ │ │ ├── testObject_InvitationList_team_17.json │ │ │ ├── testObject_InvitationList_team_18.json │ │ │ ├── testObject_InvitationList_team_19.json │ │ │ ├── testObject_InvitationList_team_2.json │ │ │ ├── testObject_InvitationList_team_20.json │ │ │ ├── testObject_InvitationList_team_3.json │ │ │ ├── testObject_InvitationList_team_4.json │ │ │ ├── testObject_InvitationList_team_5.json │ │ │ ├── testObject_InvitationList_team_6.json │ │ │ ├── testObject_InvitationList_team_7.json │ │ │ ├── testObject_InvitationList_team_8.json │ │ │ ├── testObject_InvitationList_team_9.json │ │ │ ├── testObject_InvitationRequest_team_1.json │ │ │ ├── testObject_InvitationRequest_team_10.json │ │ │ ├── testObject_InvitationRequest_team_11.json │ │ │ ├── testObject_InvitationRequest_team_12.json │ │ │ ├── testObject_InvitationRequest_team_13.json │ │ │ ├── testObject_InvitationRequest_team_14.json │ │ │ ├── testObject_InvitationRequest_team_15.json │ │ │ ├── testObject_InvitationRequest_team_16.json │ │ │ ├── testObject_InvitationRequest_team_17.json │ │ │ ├── testObject_InvitationRequest_team_18.json │ │ │ ├── testObject_InvitationRequest_team_19.json │ │ │ ├── testObject_InvitationRequest_team_2.json │ │ │ ├── testObject_InvitationRequest_team_20.json │ │ │ ├── testObject_InvitationRequest_team_3.json │ │ │ ├── testObject_InvitationRequest_team_4.json │ │ │ ├── testObject_InvitationRequest_team_5.json │ │ │ ├── testObject_InvitationRequest_team_6.json │ │ │ ├── testObject_InvitationRequest_team_7.json │ │ │ ├── testObject_InvitationRequest_team_8.json │ │ │ ├── testObject_InvitationRequest_team_9.json │ │ │ ├── testObject_InvitationUserView_team_1.json │ │ │ ├── testObject_InvitationUserView_team_2.json │ │ │ ├── testObject_Invitation_team_1.json │ │ │ ├── testObject_Invitation_team_10.json │ │ │ ├── testObject_Invitation_team_11.json │ │ │ ├── testObject_Invitation_team_12.json │ │ │ ├── testObject_Invitation_team_13.json │ │ │ ├── testObject_Invitation_team_14.json │ │ │ ├── testObject_Invitation_team_15.json │ │ │ ├── testObject_Invitation_team_16.json │ │ │ ├── testObject_Invitation_team_17.json │ │ │ ├── testObject_Invitation_team_18.json │ │ │ ├── testObject_Invitation_team_19.json │ │ │ ├── testObject_Invitation_team_2.json │ │ │ ├── testObject_Invitation_team_20.json │ │ │ ├── testObject_Invitation_team_3.json │ │ │ ├── testObject_Invitation_team_4.json │ │ │ ├── testObject_Invitation_team_5.json │ │ │ ├── testObject_Invitation_team_6.json │ │ │ ├── testObject_Invitation_team_7.json │ │ │ ├── testObject_Invitation_team_8.json │ │ │ ├── testObject_Invitation_team_9.json │ │ │ ├── testObject_Invite_user_1.json │ │ │ ├── testObject_LastPrekey_user_1.json │ │ │ ├── testObject_LastPrekey_user_10.json │ │ │ ├── testObject_LastPrekey_user_11.json │ │ │ ├── testObject_LastPrekey_user_12.json │ │ │ ├── testObject_LastPrekey_user_13.json │ │ │ ├── testObject_LastPrekey_user_14.json │ │ │ ├── testObject_LastPrekey_user_15.json │ │ │ ├── testObject_LastPrekey_user_16.json │ │ │ ├── testObject_LastPrekey_user_17.json │ │ │ ├── testObject_LastPrekey_user_18.json │ │ │ ├── testObject_LastPrekey_user_19.json │ │ │ ├── testObject_LastPrekey_user_2.json │ │ │ ├── testObject_LastPrekey_user_20.json │ │ │ ├── testObject_LastPrekey_user_3.json │ │ │ ├── testObject_LastPrekey_user_4.json │ │ │ ├── testObject_LastPrekey_user_5.json │ │ │ ├── testObject_LastPrekey_user_6.json │ │ │ ├── testObject_LastPrekey_user_7.json │ │ │ ├── testObject_LastPrekey_user_8.json │ │ │ ├── testObject_LastPrekey_user_9.json │ │ │ ├── testObject_LegalHoldServiceConfirmV0_team_1.json │ │ │ ├── testObject_LegalHoldServiceConfirmV0_team_2.json │ │ │ ├── testObject_LegalHoldServiceConfirm_team_1.json │ │ │ ├── testObject_LegalHoldServiceConfirm_team_2.json │ │ │ ├── testObject_LegalHoldServiceRemoveV0_team_1.json │ │ │ ├── testObject_LegalHoldServiceRemoveV0_team_2.json │ │ │ ├── testObject_LegalHoldServiceRemove_team_1.json │ │ │ ├── testObject_LegalHoldServiceRemove_team_2.json │ │ │ ├── testObject_LimitedQualifiedUserIdList_user_1.json │ │ │ ├── testObject_LimitedQualifiedUserIdList_user_2.json │ │ │ ├── testObject_LimitedQualifiedUserIdList_user_3.json │ │ │ ├── testObject_ListConversations_1.json │ │ │ ├── testObject_ListType_team_1.json │ │ │ ├── testObject_ListType_team_10.json │ │ │ ├── testObject_ListType_team_11.json │ │ │ ├── testObject_ListType_team_12.json │ │ │ ├── testObject_ListType_team_13.json │ │ │ ├── testObject_ListType_team_14.json │ │ │ ├── testObject_ListType_team_15.json │ │ │ ├── testObject_ListType_team_16.json │ │ │ ├── testObject_ListType_team_17.json │ │ │ ├── testObject_ListType_team_18.json │ │ │ ├── testObject_ListType_team_19.json │ │ │ ├── testObject_ListType_team_2.json │ │ │ ├── testObject_ListType_team_20.json │ │ │ ├── testObject_ListType_team_3.json │ │ │ ├── testObject_ListType_team_4.json │ │ │ ├── testObject_ListType_team_5.json │ │ │ ├── testObject_ListType_team_6.json │ │ │ ├── testObject_ListType_team_7.json │ │ │ ├── testObject_ListType_team_8.json │ │ │ ├── testObject_ListType_team_9.json │ │ │ ├── testObject_ListUsersById_user_1.json │ │ │ ├── testObject_ListUsersById_user_2.json │ │ │ ├── testObject_ListUsersById_user_3.json │ │ │ ├── testObject_LocaleUpdate_user_1.json │ │ │ ├── testObject_LocaleUpdate_user_10.json │ │ │ ├── testObject_LocaleUpdate_user_11.json │ │ │ ├── testObject_LocaleUpdate_user_12.json │ │ │ ├── testObject_LocaleUpdate_user_13.json │ │ │ ├── testObject_LocaleUpdate_user_14.json │ │ │ ├── testObject_LocaleUpdate_user_15.json │ │ │ ├── testObject_LocaleUpdate_user_16.json │ │ │ ├── testObject_LocaleUpdate_user_17.json │ │ │ ├── testObject_LocaleUpdate_user_18.json │ │ │ ├── testObject_LocaleUpdate_user_19.json │ │ │ ├── testObject_LocaleUpdate_user_2.json │ │ │ ├── testObject_LocaleUpdate_user_20.json │ │ │ ├── testObject_LocaleUpdate_user_3.json │ │ │ ├── testObject_LocaleUpdate_user_4.json │ │ │ ├── testObject_LocaleUpdate_user_5.json │ │ │ ├── testObject_LocaleUpdate_user_6.json │ │ │ ├── testObject_LocaleUpdate_user_7.json │ │ │ ├── testObject_LocaleUpdate_user_8.json │ │ │ ├── testObject_LocaleUpdate_user_9.json │ │ │ ├── testObject_Locale_user_1.json │ │ │ ├── testObject_Locale_user_10.json │ │ │ ├── testObject_Locale_user_11.json │ │ │ ├── testObject_Locale_user_12.json │ │ │ ├── testObject_Locale_user_13.json │ │ │ ├── testObject_Locale_user_14.json │ │ │ ├── testObject_Locale_user_15.json │ │ │ ├── testObject_Locale_user_16.json │ │ │ ├── testObject_Locale_user_17.json │ │ │ ├── testObject_Locale_user_18.json │ │ │ ├── testObject_Locale_user_19.json │ │ │ ├── testObject_Locale_user_2.json │ │ │ ├── testObject_Locale_user_20.json │ │ │ ├── testObject_Locale_user_3.json │ │ │ ├── testObject_Locale_user_4.json │ │ │ ├── testObject_Locale_user_5.json │ │ │ ├── testObject_Locale_user_6.json │ │ │ ├── testObject_Locale_user_7.json │ │ │ ├── testObject_Locale_user_8.json │ │ │ ├── testObject_Locale_user_9.json │ │ │ ├── testObject_LockableFeaturePatch_team_1.json │ │ │ ├── testObject_LockableFeaturePatch_team_10.json │ │ │ ├── testObject_LockableFeaturePatch_team_11.json │ │ │ ├── testObject_LockableFeaturePatch_team_12.json │ │ │ ├── testObject_LockableFeaturePatch_team_13.json │ │ │ ├── testObject_LockableFeaturePatch_team_14.json │ │ │ ├── testObject_LockableFeaturePatch_team_15.json │ │ │ ├── testObject_LockableFeaturePatch_team_16.json │ │ │ ├── testObject_LockableFeaturePatch_team_17.json │ │ │ ├── testObject_LockableFeaturePatch_team_18.json │ │ │ ├── testObject_LockableFeaturePatch_team_19.json │ │ │ ├── testObject_LockableFeaturePatch_team_2.json │ │ │ ├── testObject_LockableFeaturePatch_team_3.json │ │ │ ├── testObject_LockableFeaturePatch_team_4.json │ │ │ ├── testObject_LockableFeaturePatch_team_5.json │ │ │ ├── testObject_LockableFeaturePatch_team_6.json │ │ │ ├── testObject_LockableFeaturePatch_team_7.json │ │ │ ├── testObject_LockableFeaturePatch_team_8.json │ │ │ ├── testObject_LockableFeaturePatch_team_9.json │ │ │ ├── testObject_LockableFeature_team_1.json │ │ │ ├── testObject_LockableFeature_team_10.json │ │ │ ├── testObject_LockableFeature_team_11.json │ │ │ ├── testObject_LockableFeature_team_12.json │ │ │ ├── testObject_LockableFeature_team_13.json │ │ │ ├── testObject_LockableFeature_team_14.json │ │ │ ├── testObject_LockableFeature_team_15.json │ │ │ ├── testObject_LockableFeature_team_16.json │ │ │ ├── testObject_LockableFeature_team_17.json │ │ │ ├── testObject_LockableFeature_team_18.json │ │ │ ├── testObject_LockableFeature_team_19.json │ │ │ ├── testObject_LockableFeature_team_2.json │ │ │ ├── testObject_LockableFeature_team_3.json │ │ │ ├── testObject_LockableFeature_team_4.json │ │ │ ├── testObject_LockableFeature_team_5.json │ │ │ ├── testObject_LockableFeature_team_6.json │ │ │ ├── testObject_LockableFeature_team_7.json │ │ │ ├── testObject_LockableFeature_team_8.json │ │ │ ├── testObject_LockableFeature_team_9.json │ │ │ ├── testObject_LoginCodeTimeout_user_1.json │ │ │ ├── testObject_LoginCodeTimeout_user_10.json │ │ │ ├── testObject_LoginCodeTimeout_user_11.json │ │ │ ├── testObject_LoginCodeTimeout_user_12.json │ │ │ ├── testObject_LoginCodeTimeout_user_13.json │ │ │ ├── testObject_LoginCodeTimeout_user_14.json │ │ │ ├── testObject_LoginCodeTimeout_user_15.json │ │ │ ├── testObject_LoginCodeTimeout_user_16.json │ │ │ ├── testObject_LoginCodeTimeout_user_17.json │ │ │ ├── testObject_LoginCodeTimeout_user_18.json │ │ │ ├── testObject_LoginCodeTimeout_user_19.json │ │ │ ├── testObject_LoginCodeTimeout_user_2.json │ │ │ ├── testObject_LoginCodeTimeout_user_20.json │ │ │ ├── testObject_LoginCodeTimeout_user_3.json │ │ │ ├── testObject_LoginCodeTimeout_user_4.json │ │ │ ├── testObject_LoginCodeTimeout_user_5.json │ │ │ ├── testObject_LoginCodeTimeout_user_6.json │ │ │ ├── testObject_LoginCodeTimeout_user_7.json │ │ │ ├── testObject_LoginCodeTimeout_user_8.json │ │ │ ├── testObject_LoginCodeTimeout_user_9.json │ │ │ ├── testObject_LoginCode_user_1.json │ │ │ ├── testObject_LoginCode_user_10.json │ │ │ ├── testObject_LoginCode_user_11.json │ │ │ ├── testObject_LoginCode_user_12.json │ │ │ ├── testObject_LoginCode_user_13.json │ │ │ ├── testObject_LoginCode_user_14.json │ │ │ ├── testObject_LoginCode_user_15.json │ │ │ ├── testObject_LoginCode_user_16.json │ │ │ ├── testObject_LoginCode_user_17.json │ │ │ ├── testObject_LoginCode_user_18.json │ │ │ ├── testObject_LoginCode_user_19.json │ │ │ ├── testObject_LoginCode_user_2.json │ │ │ ├── testObject_LoginCode_user_20.json │ │ │ ├── testObject_LoginCode_user_3.json │ │ │ ├── testObject_LoginCode_user_4.json │ │ │ ├── testObject_LoginCode_user_5.json │ │ │ ├── testObject_LoginCode_user_6.json │ │ │ ├── testObject_LoginCode_user_7.json │ │ │ ├── testObject_LoginCode_user_8.json │ │ │ ├── testObject_LoginCode_user_9.json │ │ │ ├── testObject_LoginId_user_1.json │ │ │ ├── testObject_LoginId_user_2.json │ │ │ ├── testObject_LoginId_user_3.json │ │ │ ├── testObject_LoginId_user_4.json │ │ │ ├── testObject_LoginId_user_5.json │ │ │ ├── testObject_LoginId_user_6.json │ │ │ ├── testObject_Login_user_1.json │ │ │ ├── testObject_Login_user_2.json │ │ │ ├── testObject_Login_user_3.json │ │ │ ├── testObject_Login_user_4.json │ │ │ ├── testObject_Login_user_5.json │ │ │ ├── testObject_MLSKeysByPurpose_1.json │ │ │ ├── testObject_MLSPublicKeys_1.json │ │ │ ├── testObject_ManagedBy_user_1.json │ │ │ ├── testObject_ManagedBy_user_10.json │ │ │ ├── testObject_ManagedBy_user_11.json │ │ │ ├── testObject_ManagedBy_user_12.json │ │ │ ├── testObject_ManagedBy_user_13.json │ │ │ ├── testObject_ManagedBy_user_14.json │ │ │ ├── testObject_ManagedBy_user_15.json │ │ │ ├── testObject_ManagedBy_user_16.json │ │ │ ├── testObject_ManagedBy_user_17.json │ │ │ ├── testObject_ManagedBy_user_18.json │ │ │ ├── testObject_ManagedBy_user_19.json │ │ │ ├── testObject_ManagedBy_user_2.json │ │ │ ├── testObject_ManagedBy_user_20.json │ │ │ ├── testObject_ManagedBy_user_3.json │ │ │ ├── testObject_ManagedBy_user_4.json │ │ │ ├── testObject_ManagedBy_user_5.json │ │ │ ├── testObject_ManagedBy_user_6.json │ │ │ ├── testObject_ManagedBy_user_7.json │ │ │ ├── testObject_ManagedBy_user_8.json │ │ │ ├── testObject_ManagedBy_user_9.json │ │ │ ├── testObject_MemberUpdateData_user_1.json │ │ │ ├── testObject_MemberUpdateData_user_2.json │ │ │ ├── testObject_MemberUpdate_user_1.json │ │ │ ├── testObject_MemberUpdate_user_2.json │ │ │ ├── testObject_Member_user_1.json │ │ │ ├── testObject_Member_user_2.json │ │ │ ├── testObject_MembersJoin_user_1.json │ │ │ ├── testObject_MembersJoin_user_2.json │ │ │ ├── testObject_MutedStatus_user_1.json │ │ │ ├── testObject_NameUpdate_user_1.json │ │ │ ├── testObject_Name_user_1.json │ │ │ ├── testObject_Name_user_10.json │ │ │ ├── testObject_Name_user_11.json │ │ │ ├── testObject_Name_user_12.json │ │ │ ├── testObject_Name_user_13.json │ │ │ ├── testObject_Name_user_14.json │ │ │ ├── testObject_Name_user_15.json │ │ │ ├── testObject_Name_user_16.json │ │ │ ├── testObject_Name_user_17.json │ │ │ ├── testObject_Name_user_18.json │ │ │ ├── testObject_Name_user_19.json │ │ │ ├── testObject_Name_user_2.json │ │ │ ├── testObject_Name_user_20.json │ │ │ ├── testObject_Name_user_3.json │ │ │ ├── testObject_Name_user_4.json │ │ │ ├── testObject_Name_user_5.json │ │ │ ├── testObject_Name_user_6.json │ │ │ ├── testObject_Name_user_7.json │ │ │ ├── testObject_Name_user_8.json │ │ │ ├── testObject_Name_user_9.json │ │ │ ├── testObject_NewAssetToken_user_3.json │ │ │ ├── testObject_NewAssetToken_user_6.json │ │ │ ├── testObject_NewAssetToken_user_9.json │ │ │ ├── testObject_NewBotRequest_provider_1.json │ │ │ ├── testObject_NewBotRequest_provider_10.json │ │ │ ├── testObject_NewBotRequest_provider_11.json │ │ │ ├── testObject_NewBotRequest_provider_12.json │ │ │ ├── testObject_NewBotRequest_provider_13.json │ │ │ ├── testObject_NewBotRequest_provider_14.json │ │ │ ├── testObject_NewBotRequest_provider_15.json │ │ │ ├── testObject_NewBotRequest_provider_16.json │ │ │ ├── testObject_NewBotRequest_provider_17.json │ │ │ ├── testObject_NewBotRequest_provider_18.json │ │ │ ├── testObject_NewBotRequest_provider_19.json │ │ │ ├── testObject_NewBotRequest_provider_2.json │ │ │ ├── testObject_NewBotRequest_provider_20.json │ │ │ ├── testObject_NewBotRequest_provider_3.json │ │ │ ├── testObject_NewBotRequest_provider_4.json │ │ │ ├── testObject_NewBotRequest_provider_5.json │ │ │ ├── testObject_NewBotRequest_provider_6.json │ │ │ ├── testObject_NewBotRequest_provider_7.json │ │ │ ├── testObject_NewBotRequest_provider_8.json │ │ │ ├── testObject_NewBotRequest_provider_9.json │ │ │ ├── testObject_NewBotResponse_provider_1.json │ │ │ ├── testObject_NewBotResponse_provider_10.json │ │ │ ├── testObject_NewBotResponse_provider_11.json │ │ │ ├── testObject_NewBotResponse_provider_12.json │ │ │ ├── testObject_NewBotResponse_provider_13.json │ │ │ ├── testObject_NewBotResponse_provider_14.json │ │ │ ├── testObject_NewBotResponse_provider_15.json │ │ │ ├── testObject_NewBotResponse_provider_16.json │ │ │ ├── testObject_NewBotResponse_provider_17.json │ │ │ ├── testObject_NewBotResponse_provider_18.json │ │ │ ├── testObject_NewBotResponse_provider_19.json │ │ │ ├── testObject_NewBotResponse_provider_2.json │ │ │ ├── testObject_NewBotResponse_provider_20.json │ │ │ ├── testObject_NewBotResponse_provider_3.json │ │ │ ├── testObject_NewBotResponse_provider_4.json │ │ │ ├── testObject_NewBotResponse_provider_5.json │ │ │ ├── testObject_NewBotResponse_provider_6.json │ │ │ ├── testObject_NewBotResponse_provider_7.json │ │ │ ├── testObject_NewBotResponse_provider_8.json │ │ │ ├── testObject_NewBotResponse_provider_9.json │ │ │ ├── testObject_NewClient_user_1.json │ │ │ ├── testObject_NewClient_user_10.json │ │ │ ├── testObject_NewClient_user_11.json │ │ │ ├── testObject_NewClient_user_12.json │ │ │ ├── testObject_NewClient_user_13.json │ │ │ ├── testObject_NewClient_user_14.json │ │ │ ├── testObject_NewClient_user_15.json │ │ │ ├── testObject_NewClient_user_16.json │ │ │ ├── testObject_NewClient_user_17.json │ │ │ ├── testObject_NewClient_user_18.json │ │ │ ├── testObject_NewClient_user_19.json │ │ │ ├── testObject_NewClient_user_2.json │ │ │ ├── testObject_NewClient_user_20.json │ │ │ ├── testObject_NewClient_user_3.json │ │ │ ├── testObject_NewClient_user_4.json │ │ │ ├── testObject_NewClient_user_5.json │ │ │ ├── testObject_NewClient_user_6.json │ │ │ ├── testObject_NewClient_user_7.json │ │ │ ├── testObject_NewClient_user_8.json │ │ │ ├── testObject_NewClient_user_9.json │ │ │ ├── testObject_NewConv_user_1.json │ │ │ ├── testObject_NewConv_user_3.json │ │ │ ├── testObject_NewConv_v2_user_1.json │ │ │ ├── testObject_NewConv_v2_user_3.json │ │ │ ├── testObject_NewLegalHoldClient_team_1.json │ │ │ ├── testObject_NewLegalHoldClient_team_10.json │ │ │ ├── testObject_NewLegalHoldClient_team_11.json │ │ │ ├── testObject_NewLegalHoldClient_team_12.json │ │ │ ├── testObject_NewLegalHoldClient_team_13.json │ │ │ ├── testObject_NewLegalHoldClient_team_14.json │ │ │ ├── testObject_NewLegalHoldClient_team_15.json │ │ │ ├── testObject_NewLegalHoldClient_team_16.json │ │ │ ├── testObject_NewLegalHoldClient_team_17.json │ │ │ ├── testObject_NewLegalHoldClient_team_18.json │ │ │ ├── testObject_NewLegalHoldClient_team_19.json │ │ │ ├── testObject_NewLegalHoldClient_team_2.json │ │ │ ├── testObject_NewLegalHoldClient_team_20.json │ │ │ ├── testObject_NewLegalHoldClient_team_3.json │ │ │ ├── testObject_NewLegalHoldClient_team_4.json │ │ │ ├── testObject_NewLegalHoldClient_team_5.json │ │ │ ├── testObject_NewLegalHoldClient_team_6.json │ │ │ ├── testObject_NewLegalHoldClient_team_7.json │ │ │ ├── testObject_NewLegalHoldClient_team_8.json │ │ │ ├── testObject_NewLegalHoldClient_team_9.json │ │ │ ├── testObject_NewLegalHoldService_team_1.json │ │ │ ├── testObject_NewLegalHoldService_team_10.json │ │ │ ├── testObject_NewLegalHoldService_team_11.json │ │ │ ├── testObject_NewLegalHoldService_team_12.json │ │ │ ├── testObject_NewLegalHoldService_team_13.json │ │ │ ├── testObject_NewLegalHoldService_team_14.json │ │ │ ├── testObject_NewLegalHoldService_team_15.json │ │ │ ├── testObject_NewLegalHoldService_team_16.json │ │ │ ├── testObject_NewLegalHoldService_team_17.json │ │ │ ├── testObject_NewLegalHoldService_team_18.json │ │ │ ├── testObject_NewLegalHoldService_team_19.json │ │ │ ├── testObject_NewLegalHoldService_team_2.json │ │ │ ├── testObject_NewLegalHoldService_team_20.json │ │ │ ├── testObject_NewLegalHoldService_team_3.json │ │ │ ├── testObject_NewLegalHoldService_team_4.json │ │ │ ├── testObject_NewLegalHoldService_team_5.json │ │ │ ├── testObject_NewLegalHoldService_team_6.json │ │ │ ├── testObject_NewLegalHoldService_team_7.json │ │ │ ├── testObject_NewLegalHoldService_team_8.json │ │ │ ├── testObject_NewLegalHoldService_team_9.json │ │ │ ├── testObject_NewOne2OneConv_user_1.json │ │ │ ├── testObject_NewOne2OneConv_user_3.json │ │ │ ├── testObject_NewOtrMessage_user_1.json │ │ │ ├── testObject_NewOtrMessage_user_2.json │ │ │ ├── testObject_NewPasswordReset_user_1.json │ │ │ ├── testObject_NewProviderResponse_provider_1.json │ │ │ ├── testObject_NewProviderResponse_provider_10.json │ │ │ ├── testObject_NewProviderResponse_provider_11.json │ │ │ ├── testObject_NewProviderResponse_provider_12.json │ │ │ ├── testObject_NewProviderResponse_provider_13.json │ │ │ ├── testObject_NewProviderResponse_provider_14.json │ │ │ ├── testObject_NewProviderResponse_provider_15.json │ │ │ ├── testObject_NewProviderResponse_provider_16.json │ │ │ ├── testObject_NewProviderResponse_provider_17.json │ │ │ ├── testObject_NewProviderResponse_provider_18.json │ │ │ ├── testObject_NewProviderResponse_provider_19.json │ │ │ ├── testObject_NewProviderResponse_provider_2.json │ │ │ ├── testObject_NewProviderResponse_provider_20.json │ │ │ ├── testObject_NewProviderResponse_provider_3.json │ │ │ ├── testObject_NewProviderResponse_provider_4.json │ │ │ ├── testObject_NewProviderResponse_provider_5.json │ │ │ ├── testObject_NewProviderResponse_provider_6.json │ │ │ ├── testObject_NewProviderResponse_provider_7.json │ │ │ ├── testObject_NewProviderResponse_provider_8.json │ │ │ ├── testObject_NewProviderResponse_provider_9.json │ │ │ ├── testObject_NewProvider_provider_1.json │ │ │ ├── testObject_NewProvider_provider_10.json │ │ │ ├── testObject_NewProvider_provider_11.json │ │ │ ├── testObject_NewProvider_provider_12.json │ │ │ ├── testObject_NewProvider_provider_13.json │ │ │ ├── testObject_NewProvider_provider_14.json │ │ │ ├── testObject_NewProvider_provider_15.json │ │ │ ├── testObject_NewProvider_provider_16.json │ │ │ ├── testObject_NewProvider_provider_17.json │ │ │ ├── testObject_NewProvider_provider_18.json │ │ │ ├── testObject_NewProvider_provider_19.json │ │ │ ├── testObject_NewProvider_provider_2.json │ │ │ ├── testObject_NewProvider_provider_20.json │ │ │ ├── testObject_NewProvider_provider_3.json │ │ │ ├── testObject_NewProvider_provider_4.json │ │ │ ├── testObject_NewProvider_provider_5.json │ │ │ ├── testObject_NewProvider_provider_6.json │ │ │ ├── testObject_NewProvider_provider_7.json │ │ │ ├── testObject_NewProvider_provider_8.json │ │ │ ├── testObject_NewProvider_provider_9.json │ │ │ ├── testObject_NewServiceResponse_provider_1.json │ │ │ ├── testObject_NewServiceResponse_provider_10.json │ │ │ ├── testObject_NewServiceResponse_provider_11.json │ │ │ ├── testObject_NewServiceResponse_provider_12.json │ │ │ ├── testObject_NewServiceResponse_provider_13.json │ │ │ ├── testObject_NewServiceResponse_provider_14.json │ │ │ ├── testObject_NewServiceResponse_provider_15.json │ │ │ ├── testObject_NewServiceResponse_provider_16.json │ │ │ ├── testObject_NewServiceResponse_provider_17.json │ │ │ ├── testObject_NewServiceResponse_provider_18.json │ │ │ ├── testObject_NewServiceResponse_provider_19.json │ │ │ ├── testObject_NewServiceResponse_provider_2.json │ │ │ ├── testObject_NewServiceResponse_provider_20.json │ │ │ ├── testObject_NewServiceResponse_provider_3.json │ │ │ ├── testObject_NewServiceResponse_provider_4.json │ │ │ ├── testObject_NewServiceResponse_provider_5.json │ │ │ ├── testObject_NewServiceResponse_provider_6.json │ │ │ ├── testObject_NewServiceResponse_provider_7.json │ │ │ ├── testObject_NewServiceResponse_provider_8.json │ │ │ ├── testObject_NewServiceResponse_provider_9.json │ │ │ ├── testObject_NewService_provider_1.json │ │ │ ├── testObject_NewService_provider_10.json │ │ │ ├── testObject_NewService_provider_11.json │ │ │ ├── testObject_NewService_provider_12.json │ │ │ ├── testObject_NewService_provider_13.json │ │ │ ├── testObject_NewService_provider_14.json │ │ │ ├── testObject_NewService_provider_15.json │ │ │ ├── testObject_NewService_provider_16.json │ │ │ ├── testObject_NewService_provider_17.json │ │ │ ├── testObject_NewService_provider_18.json │ │ │ ├── testObject_NewService_provider_19.json │ │ │ ├── testObject_NewService_provider_2.json │ │ │ ├── testObject_NewService_provider_20.json │ │ │ ├── testObject_NewService_provider_3.json │ │ │ ├── testObject_NewService_provider_4.json │ │ │ ├── testObject_NewService_provider_5.json │ │ │ ├── testObject_NewService_provider_6.json │ │ │ ├── testObject_NewService_provider_7.json │ │ │ ├── testObject_NewService_provider_8.json │ │ │ ├── testObject_NewService_provider_9.json │ │ │ ├── testObject_NewTeamMember_team_1.json │ │ │ ├── testObject_NewTeamMember_team_10.json │ │ │ ├── testObject_NewTeamMember_team_11.json │ │ │ ├── testObject_NewTeamMember_team_12.json │ │ │ ├── testObject_NewTeamMember_team_13.json │ │ │ ├── testObject_NewTeamMember_team_14.json │ │ │ ├── testObject_NewTeamMember_team_15.json │ │ │ ├── testObject_NewTeamMember_team_16.json │ │ │ ├── testObject_NewTeamMember_team_17.json │ │ │ ├── testObject_NewTeamMember_team_18.json │ │ │ ├── testObject_NewTeamMember_team_19.json │ │ │ ├── testObject_NewTeamMember_team_2.json │ │ │ ├── testObject_NewTeamMember_team_20.json │ │ │ ├── testObject_NewTeamMember_team_3.json │ │ │ ├── testObject_NewTeamMember_team_4.json │ │ │ ├── testObject_NewTeamMember_team_5.json │ │ │ ├── testObject_NewTeamMember_team_6.json │ │ │ ├── testObject_NewTeamMember_team_7.json │ │ │ ├── testObject_NewTeamMember_team_8.json │ │ │ ├── testObject_NewTeamMember_team_9.json │ │ │ ├── testObject_NewTeam_team_1.json │ │ │ ├── testObject_NewTeam_team_10.json │ │ │ ├── testObject_NewTeam_team_11.json │ │ │ ├── testObject_NewTeam_team_12.json │ │ │ ├── testObject_NewTeam_team_13.json │ │ │ ├── testObject_NewTeam_team_14.json │ │ │ ├── testObject_NewTeam_team_15.json │ │ │ ├── testObject_NewTeam_team_16.json │ │ │ ├── testObject_NewTeam_team_17.json │ │ │ ├── testObject_NewTeam_team_18.json │ │ │ ├── testObject_NewTeam_team_19.json │ │ │ ├── testObject_NewTeam_team_2.json │ │ │ ├── testObject_NewTeam_team_20.json │ │ │ ├── testObject_NewTeam_team_3.json │ │ │ ├── testObject_NewTeam_team_4.json │ │ │ ├── testObject_NewTeam_team_5.json │ │ │ ├── testObject_NewTeam_team_6.json │ │ │ ├── testObject_NewTeam_team_7.json │ │ │ ├── testObject_NewTeam_team_8.json │ │ │ ├── testObject_NewTeam_team_9.json │ │ │ ├── testObject_NewUserGroup_1.json │ │ │ ├── testObject_NewUserGroup_2.json │ │ │ ├── testObject_NewUserPublic_user_1.json │ │ │ ├── testObject_NewUser_user_1.json │ │ │ ├── testObject_NewUser_user_2.json │ │ │ ├── testObject_NewUser_user_3.json │ │ │ ├── testObject_NewUser_user_4.json │ │ │ ├── testObject_NewUser_user_5.json │ │ │ ├── testObject_NewUser_user_6.json │ │ │ ├── testObject_NewUser_user_7.json │ │ │ ├── testObject_NewUser_user_8.json │ │ │ ├── testObject_OtherMemberUpdate_user_1.json │ │ │ ├── testObject_OtherMember_user_1.json │ │ │ ├── testObject_OtherMember_user_2.json │ │ │ ├── testObject_OtrMessage_user_1.json │ │ │ ├── testObject_OtrMessage_user_2.json │ │ │ ├── testObject_OtrRecipients_user_1.json │ │ │ ├── testObject_OwnConvMembers_user_1.json │ │ │ ├── testObject_OwnConvMembers_user_2.json │ │ │ ├── testObject_PasswordChange_provider_1.json │ │ │ ├── testObject_PasswordChange_provider_10.json │ │ │ ├── testObject_PasswordChange_provider_11.json │ │ │ ├── testObject_PasswordChange_provider_12.json │ │ │ ├── testObject_PasswordChange_provider_13.json │ │ │ ├── testObject_PasswordChange_provider_14.json │ │ │ ├── testObject_PasswordChange_provider_15.json │ │ │ ├── testObject_PasswordChange_provider_16.json │ │ │ ├── testObject_PasswordChange_provider_17.json │ │ │ ├── testObject_PasswordChange_provider_18.json │ │ │ ├── testObject_PasswordChange_provider_19.json │ │ │ ├── testObject_PasswordChange_provider_2.json │ │ │ ├── testObject_PasswordChange_provider_20.json │ │ │ ├── testObject_PasswordChange_provider_3.json │ │ │ ├── testObject_PasswordChange_provider_4.json │ │ │ ├── testObject_PasswordChange_provider_5.json │ │ │ ├── testObject_PasswordChange_provider_6.json │ │ │ ├── testObject_PasswordChange_provider_7.json │ │ │ ├── testObject_PasswordChange_provider_8.json │ │ │ ├── testObject_PasswordChange_provider_9.json │ │ │ ├── testObject_PasswordChange_user_1.json │ │ │ ├── testObject_PasswordChange_user_10.json │ │ │ ├── testObject_PasswordChange_user_11.json │ │ │ ├── testObject_PasswordChange_user_12.json │ │ │ ├── testObject_PasswordChange_user_13.json │ │ │ ├── testObject_PasswordChange_user_14.json │ │ │ ├── testObject_PasswordChange_user_15.json │ │ │ ├── testObject_PasswordChange_user_16.json │ │ │ ├── testObject_PasswordChange_user_17.json │ │ │ ├── testObject_PasswordChange_user_18.json │ │ │ ├── testObject_PasswordChange_user_19.json │ │ │ ├── testObject_PasswordChange_user_2.json │ │ │ ├── testObject_PasswordChange_user_20.json │ │ │ ├── testObject_PasswordChange_user_3.json │ │ │ ├── testObject_PasswordChange_user_4.json │ │ │ ├── testObject_PasswordChange_user_5.json │ │ │ ├── testObject_PasswordChange_user_6.json │ │ │ ├── testObject_PasswordChange_user_7.json │ │ │ ├── testObject_PasswordChange_user_8.json │ │ │ ├── testObject_PasswordChange_user_9.json │ │ │ ├── testObject_PasswordResetCode_user_1.json │ │ │ ├── testObject_PasswordResetCode_user_10.json │ │ │ ├── testObject_PasswordResetCode_user_11.json │ │ │ ├── testObject_PasswordResetCode_user_12.json │ │ │ ├── testObject_PasswordResetCode_user_13.json │ │ │ ├── testObject_PasswordResetCode_user_14.json │ │ │ ├── testObject_PasswordResetCode_user_15.json │ │ │ ├── testObject_PasswordResetCode_user_16.json │ │ │ ├── testObject_PasswordResetCode_user_17.json │ │ │ ├── testObject_PasswordResetCode_user_18.json │ │ │ ├── testObject_PasswordResetCode_user_19.json │ │ │ ├── testObject_PasswordResetCode_user_2.json │ │ │ ├── testObject_PasswordResetCode_user_20.json │ │ │ ├── testObject_PasswordResetCode_user_3.json │ │ │ ├── testObject_PasswordResetCode_user_4.json │ │ │ ├── testObject_PasswordResetCode_user_5.json │ │ │ ├── testObject_PasswordResetCode_user_6.json │ │ │ ├── testObject_PasswordResetCode_user_7.json │ │ │ ├── testObject_PasswordResetCode_user_8.json │ │ │ ├── testObject_PasswordResetCode_user_9.json │ │ │ ├── testObject_PasswordResetKey_user_1.json │ │ │ ├── testObject_PasswordResetKey_user_10.json │ │ │ ├── testObject_PasswordResetKey_user_11.json │ │ │ ├── testObject_PasswordResetKey_user_12.json │ │ │ ├── testObject_PasswordResetKey_user_13.json │ │ │ ├── testObject_PasswordResetKey_user_14.json │ │ │ ├── testObject_PasswordResetKey_user_15.json │ │ │ ├── testObject_PasswordResetKey_user_16.json │ │ │ ├── testObject_PasswordResetKey_user_17.json │ │ │ ├── testObject_PasswordResetKey_user_18.json │ │ │ ├── testObject_PasswordResetKey_user_19.json │ │ │ ├── testObject_PasswordResetKey_user_2.json │ │ │ ├── testObject_PasswordResetKey_user_20.json │ │ │ ├── testObject_PasswordResetKey_user_3.json │ │ │ ├── testObject_PasswordResetKey_user_4.json │ │ │ ├── testObject_PasswordResetKey_user_5.json │ │ │ ├── testObject_PasswordResetKey_user_6.json │ │ │ ├── testObject_PasswordResetKey_user_7.json │ │ │ ├── testObject_PasswordResetKey_user_8.json │ │ │ ├── testObject_PasswordResetKey_user_9.json │ │ │ ├── testObject_PasswordReset_provider_1.json │ │ │ ├── testObject_PasswordReset_provider_10.json │ │ │ ├── testObject_PasswordReset_provider_11.json │ │ │ ├── testObject_PasswordReset_provider_12.json │ │ │ ├── testObject_PasswordReset_provider_13.json │ │ │ ├── testObject_PasswordReset_provider_14.json │ │ │ ├── testObject_PasswordReset_provider_15.json │ │ │ ├── testObject_PasswordReset_provider_16.json │ │ │ ├── testObject_PasswordReset_provider_17.json │ │ │ ├── testObject_PasswordReset_provider_18.json │ │ │ ├── testObject_PasswordReset_provider_19.json │ │ │ ├── testObject_PasswordReset_provider_2.json │ │ │ ├── testObject_PasswordReset_provider_20.json │ │ │ ├── testObject_PasswordReset_provider_3.json │ │ │ ├── testObject_PasswordReset_provider_4.json │ │ │ ├── testObject_PasswordReset_provider_5.json │ │ │ ├── testObject_PasswordReset_provider_6.json │ │ │ ├── testObject_PasswordReset_provider_7.json │ │ │ ├── testObject_PasswordReset_provider_8.json │ │ │ ├── testObject_PasswordReset_provider_9.json │ │ │ ├── testObject_PendingLoginCode_user_1.json │ │ │ ├── testObject_PendingLoginCode_user_10.json │ │ │ ├── testObject_PendingLoginCode_user_11.json │ │ │ ├── testObject_PendingLoginCode_user_12.json │ │ │ ├── testObject_PendingLoginCode_user_13.json │ │ │ ├── testObject_PendingLoginCode_user_14.json │ │ │ ├── testObject_PendingLoginCode_user_15.json │ │ │ ├── testObject_PendingLoginCode_user_16.json │ │ │ ├── testObject_PendingLoginCode_user_17.json │ │ │ ├── testObject_PendingLoginCode_user_18.json │ │ │ ├── testObject_PendingLoginCode_user_19.json │ │ │ ├── testObject_PendingLoginCode_user_2.json │ │ │ ├── testObject_PendingLoginCode_user_20.json │ │ │ ├── testObject_PendingLoginCode_user_3.json │ │ │ ├── testObject_PendingLoginCode_user_4.json │ │ │ ├── testObject_PendingLoginCode_user_5.json │ │ │ ├── testObject_PendingLoginCode_user_6.json │ │ │ ├── testObject_PendingLoginCode_user_7.json │ │ │ ├── testObject_PendingLoginCode_user_8.json │ │ │ ├── testObject_PendingLoginCode_user_9.json │ │ │ ├── testObject_Permissions_team_1.json │ │ │ ├── testObject_Permissions_team_10.json │ │ │ ├── testObject_Permissions_team_11.json │ │ │ ├── testObject_Permissions_team_12.json │ │ │ ├── testObject_Permissions_team_13.json │ │ │ ├── testObject_Permissions_team_14.json │ │ │ ├── testObject_Permissions_team_15.json │ │ │ ├── testObject_Permissions_team_16.json │ │ │ ├── testObject_Permissions_team_17.json │ │ │ ├── testObject_Permissions_team_18.json │ │ │ ├── testObject_Permissions_team_19.json │ │ │ ├── testObject_Permissions_team_2.json │ │ │ ├── testObject_Permissions_team_20.json │ │ │ ├── testObject_Permissions_team_3.json │ │ │ ├── testObject_Permissions_team_4.json │ │ │ ├── testObject_Permissions_team_5.json │ │ │ ├── testObject_Permissions_team_6.json │ │ │ ├── testObject_Permissions_team_7.json │ │ │ ├── testObject_Permissions_team_8.json │ │ │ ├── testObject_Permissions_team_9.json │ │ │ ├── testObject_PhoneUpdate_user_1.json │ │ │ ├── testObject_PhoneUpdate_user_10.json │ │ │ ├── testObject_PhoneUpdate_user_11.json │ │ │ ├── testObject_PhoneUpdate_user_12.json │ │ │ ├── testObject_PhoneUpdate_user_13.json │ │ │ ├── testObject_PhoneUpdate_user_14.json │ │ │ ├── testObject_PhoneUpdate_user_15.json │ │ │ ├── testObject_PhoneUpdate_user_16.json │ │ │ ├── testObject_PhoneUpdate_user_17.json │ │ │ ├── testObject_PhoneUpdate_user_18.json │ │ │ ├── testObject_PhoneUpdate_user_19.json │ │ │ ├── testObject_PhoneUpdate_user_2.json │ │ │ ├── testObject_PhoneUpdate_user_20.json │ │ │ ├── testObject_PhoneUpdate_user_3.json │ │ │ ├── testObject_PhoneUpdate_user_4.json │ │ │ ├── testObject_PhoneUpdate_user_5.json │ │ │ ├── testObject_PhoneUpdate_user_6.json │ │ │ ├── testObject_PhoneUpdate_user_7.json │ │ │ ├── testObject_PhoneUpdate_user_8.json │ │ │ ├── testObject_PhoneUpdate_user_9.json │ │ │ ├── testObject_Phone_user_1.json │ │ │ ├── testObject_Phone_user_10.json │ │ │ ├── testObject_Phone_user_11.json │ │ │ ├── testObject_Phone_user_12.json │ │ │ ├── testObject_Phone_user_13.json │ │ │ ├── testObject_Phone_user_14.json │ │ │ ├── testObject_Phone_user_15.json │ │ │ ├── testObject_Phone_user_16.json │ │ │ ├── testObject_Phone_user_17.json │ │ │ ├── testObject_Phone_user_18.json │ │ │ ├── testObject_Phone_user_19.json │ │ │ ├── testObject_Phone_user_2.json │ │ │ ├── testObject_Phone_user_20.json │ │ │ ├── testObject_Phone_user_3.json │ │ │ ├── testObject_Phone_user_4.json │ │ │ ├── testObject_Phone_user_5.json │ │ │ ├── testObject_Phone_user_6.json │ │ │ ├── testObject_Phone_user_7.json │ │ │ ├── testObject_Phone_user_8.json │ │ │ ├── testObject_Phone_user_9.json │ │ │ ├── testObject_Pict_user_1.json │ │ │ ├── testObject_Pict_user_10.json │ │ │ ├── testObject_Pict_user_11.json │ │ │ ├── testObject_Pict_user_12.json │ │ │ ├── testObject_Pict_user_13.json │ │ │ ├── testObject_Pict_user_14.json │ │ │ ├── testObject_Pict_user_15.json │ │ │ ├── testObject_Pict_user_16.json │ │ │ ├── testObject_Pict_user_17.json │ │ │ ├── testObject_Pict_user_18.json │ │ │ ├── testObject_Pict_user_19.json │ │ │ ├── testObject_Pict_user_2.json │ │ │ ├── testObject_Pict_user_20.json │ │ │ ├── testObject_Pict_user_3.json │ │ │ ├── testObject_Pict_user_4.json │ │ │ ├── testObject_Pict_user_5.json │ │ │ ├── testObject_Pict_user_6.json │ │ │ ├── testObject_Pict_user_7.json │ │ │ ├── testObject_Pict_user_8.json │ │ │ ├── testObject_Pict_user_9.json │ │ │ ├── testObject_PrekeyBundle_user_1.json │ │ │ ├── testObject_PrekeyBundle_user_10.json │ │ │ ├── testObject_PrekeyBundle_user_11.json │ │ │ ├── testObject_PrekeyBundle_user_12.json │ │ │ ├── testObject_PrekeyBundle_user_13.json │ │ │ ├── testObject_PrekeyBundle_user_14.json │ │ │ ├── testObject_PrekeyBundle_user_15.json │ │ │ ├── testObject_PrekeyBundle_user_16.json │ │ │ ├── testObject_PrekeyBundle_user_17.json │ │ │ ├── testObject_PrekeyBundle_user_18.json │ │ │ ├── testObject_PrekeyBundle_user_19.json │ │ │ ├── testObject_PrekeyBundle_user_2.json │ │ │ ├── testObject_PrekeyBundle_user_20.json │ │ │ ├── testObject_PrekeyBundle_user_3.json │ │ │ ├── testObject_PrekeyBundle_user_4.json │ │ │ ├── testObject_PrekeyBundle_user_5.json │ │ │ ├── testObject_PrekeyBundle_user_6.json │ │ │ ├── testObject_PrekeyBundle_user_7.json │ │ │ ├── testObject_PrekeyBundle_user_8.json │ │ │ ├── testObject_PrekeyBundle_user_9.json │ │ │ ├── testObject_PrekeyId_user_1.json │ │ │ ├── testObject_PrekeyId_user_10.json │ │ │ ├── testObject_PrekeyId_user_11.json │ │ │ ├── testObject_PrekeyId_user_12.json │ │ │ ├── testObject_PrekeyId_user_13.json │ │ │ ├── testObject_PrekeyId_user_14.json │ │ │ ├── testObject_PrekeyId_user_15.json │ │ │ ├── testObject_PrekeyId_user_16.json │ │ │ ├── testObject_PrekeyId_user_17.json │ │ │ ├── testObject_PrekeyId_user_18.json │ │ │ ├── testObject_PrekeyId_user_19.json │ │ │ ├── testObject_PrekeyId_user_2.json │ │ │ ├── testObject_PrekeyId_user_20.json │ │ │ ├── testObject_PrekeyId_user_3.json │ │ │ ├── testObject_PrekeyId_user_4.json │ │ │ ├── testObject_PrekeyId_user_5.json │ │ │ ├── testObject_PrekeyId_user_6.json │ │ │ ├── testObject_PrekeyId_user_7.json │ │ │ ├── testObject_PrekeyId_user_8.json │ │ │ ├── testObject_PrekeyId_user_9.json │ │ │ ├── testObject_Prekey_user_1.json │ │ │ ├── testObject_Prekey_user_10.json │ │ │ ├── testObject_Prekey_user_11.json │ │ │ ├── testObject_Prekey_user_12.json │ │ │ ├── testObject_Prekey_user_13.json │ │ │ ├── testObject_Prekey_user_14.json │ │ │ ├── testObject_Prekey_user_15.json │ │ │ ├── testObject_Prekey_user_16.json │ │ │ ├── testObject_Prekey_user_17.json │ │ │ ├── testObject_Prekey_user_18.json │ │ │ ├── testObject_Prekey_user_19.json │ │ │ ├── testObject_Prekey_user_2.json │ │ │ ├── testObject_Prekey_user_20.json │ │ │ ├── testObject_Prekey_user_3.json │ │ │ ├── testObject_Prekey_user_4.json │ │ │ ├── testObject_Prekey_user_5.json │ │ │ ├── testObject_Prekey_user_6.json │ │ │ ├── testObject_Prekey_user_7.json │ │ │ ├── testObject_Prekey_user_8.json │ │ │ ├── testObject_Prekey_user_9.json │ │ │ ├── testObject_Presence_1.json │ │ │ ├── testObject_Presence_2.json │ │ │ ├── testObject_Priority_user_1.json │ │ │ ├── testObject_Priority_user_2.json │ │ │ ├── testObject_PropertyKey_user_1.json │ │ │ ├── testObject_PropertyKey_user_10.json │ │ │ ├── testObject_PropertyKey_user_11.json │ │ │ ├── testObject_PropertyKey_user_12.json │ │ │ ├── testObject_PropertyKey_user_13.json │ │ │ ├── testObject_PropertyKey_user_14.json │ │ │ ├── testObject_PropertyKey_user_15.json │ │ │ ├── testObject_PropertyKey_user_16.json │ │ │ ├── testObject_PropertyKey_user_17.json │ │ │ ├── testObject_PropertyKey_user_18.json │ │ │ ├── testObject_PropertyKey_user_19.json │ │ │ ├── testObject_PropertyKey_user_2.json │ │ │ ├── testObject_PropertyKey_user_20.json │ │ │ ├── testObject_PropertyKey_user_3.json │ │ │ ├── testObject_PropertyKey_user_4.json │ │ │ ├── testObject_PropertyKey_user_5.json │ │ │ ├── testObject_PropertyKey_user_6.json │ │ │ ├── testObject_PropertyKey_user_7.json │ │ │ ├── testObject_PropertyKey_user_8.json │ │ │ ├── testObject_PropertyKey_user_9.json │ │ │ ├── testObject_ProviderActivationResponse_provider_1.json │ │ │ ├── testObject_ProviderActivationResponse_provider_10.json │ │ │ ├── testObject_ProviderActivationResponse_provider_11.json │ │ │ ├── testObject_ProviderActivationResponse_provider_12.json │ │ │ ├── testObject_ProviderActivationResponse_provider_13.json │ │ │ ├── testObject_ProviderActivationResponse_provider_14.json │ │ │ ├── testObject_ProviderActivationResponse_provider_15.json │ │ │ ├── testObject_ProviderActivationResponse_provider_16.json │ │ │ ├── testObject_ProviderActivationResponse_provider_17.json │ │ │ ├── testObject_ProviderActivationResponse_provider_18.json │ │ │ ├── testObject_ProviderActivationResponse_provider_19.json │ │ │ ├── testObject_ProviderActivationResponse_provider_2.json │ │ │ ├── testObject_ProviderActivationResponse_provider_20.json │ │ │ ├── testObject_ProviderActivationResponse_provider_3.json │ │ │ ├── testObject_ProviderActivationResponse_provider_4.json │ │ │ ├── testObject_ProviderActivationResponse_provider_5.json │ │ │ ├── testObject_ProviderActivationResponse_provider_6.json │ │ │ ├── testObject_ProviderActivationResponse_provider_7.json │ │ │ ├── testObject_ProviderActivationResponse_provider_8.json │ │ │ ├── testObject_ProviderActivationResponse_provider_9.json │ │ │ ├── testObject_ProviderLogin_provider_1.json │ │ │ ├── testObject_ProviderLogin_provider_10.json │ │ │ ├── testObject_ProviderLogin_provider_11.json │ │ │ ├── testObject_ProviderLogin_provider_12.json │ │ │ ├── testObject_ProviderLogin_provider_13.json │ │ │ ├── testObject_ProviderLogin_provider_14.json │ │ │ ├── testObject_ProviderLogin_provider_15.json │ │ │ ├── testObject_ProviderLogin_provider_16.json │ │ │ ├── testObject_ProviderLogin_provider_17.json │ │ │ ├── testObject_ProviderLogin_provider_18.json │ │ │ ├── testObject_ProviderLogin_provider_19.json │ │ │ ├── testObject_ProviderLogin_provider_2.json │ │ │ ├── testObject_ProviderLogin_provider_20.json │ │ │ ├── testObject_ProviderLogin_provider_3.json │ │ │ ├── testObject_ProviderLogin_provider_4.json │ │ │ ├── testObject_ProviderLogin_provider_5.json │ │ │ ├── testObject_ProviderLogin_provider_6.json │ │ │ ├── testObject_ProviderLogin_provider_7.json │ │ │ ├── testObject_ProviderLogin_provider_8.json │ │ │ ├── testObject_ProviderLogin_provider_9.json │ │ │ ├── testObject_ProviderProfile_provider_1.json │ │ │ ├── testObject_ProviderProfile_provider_10.json │ │ │ ├── testObject_ProviderProfile_provider_11.json │ │ │ ├── testObject_ProviderProfile_provider_12.json │ │ │ ├── testObject_ProviderProfile_provider_13.json │ │ │ ├── testObject_ProviderProfile_provider_14.json │ │ │ ├── testObject_ProviderProfile_provider_15.json │ │ │ ├── testObject_ProviderProfile_provider_16.json │ │ │ ├── testObject_ProviderProfile_provider_17.json │ │ │ ├── testObject_ProviderProfile_provider_18.json │ │ │ ├── testObject_ProviderProfile_provider_19.json │ │ │ ├── testObject_ProviderProfile_provider_2.json │ │ │ ├── testObject_ProviderProfile_provider_20.json │ │ │ ├── testObject_ProviderProfile_provider_3.json │ │ │ ├── testObject_ProviderProfile_provider_4.json │ │ │ ├── testObject_ProviderProfile_provider_5.json │ │ │ ├── testObject_ProviderProfile_provider_6.json │ │ │ ├── testObject_ProviderProfile_provider_7.json │ │ │ ├── testObject_ProviderProfile_provider_8.json │ │ │ ├── testObject_ProviderProfile_provider_9.json │ │ │ ├── testObject_Provider_provider_1.json │ │ │ ├── testObject_Provider_provider_10.json │ │ │ ├── testObject_Provider_provider_11.json │ │ │ ├── testObject_Provider_provider_12.json │ │ │ ├── testObject_Provider_provider_13.json │ │ │ ├── testObject_Provider_provider_14.json │ │ │ ├── testObject_Provider_provider_15.json │ │ │ ├── testObject_Provider_provider_16.json │ │ │ ├── testObject_Provider_provider_17.json │ │ │ ├── testObject_Provider_provider_18.json │ │ │ ├── testObject_Provider_provider_19.json │ │ │ ├── testObject_Provider_provider_2.json │ │ │ ├── testObject_Provider_provider_20.json │ │ │ ├── testObject_Provider_provider_3.json │ │ │ ├── testObject_Provider_provider_4.json │ │ │ ├── testObject_Provider_provider_5.json │ │ │ ├── testObject_Provider_provider_6.json │ │ │ ├── testObject_Provider_provider_7.json │ │ │ ├── testObject_Provider_provider_8.json │ │ │ ├── testObject_Provider_provider_9.json │ │ │ ├── testObject_PubClient_user_1.json │ │ │ ├── testObject_PubClient_user_10.json │ │ │ ├── testObject_PubClient_user_11.json │ │ │ ├── testObject_PubClient_user_12.json │ │ │ ├── testObject_PubClient_user_13.json │ │ │ ├── testObject_PubClient_user_14.json │ │ │ ├── testObject_PubClient_user_15.json │ │ │ ├── testObject_PubClient_user_16.json │ │ │ ├── testObject_PubClient_user_17.json │ │ │ ├── testObject_PubClient_user_18.json │ │ │ ├── testObject_PubClient_user_19.json │ │ │ ├── testObject_PubClient_user_2.json │ │ │ ├── testObject_PubClient_user_20.json │ │ │ ├── testObject_PubClient_user_3.json │ │ │ ├── testObject_PubClient_user_4.json │ │ │ ├── testObject_PubClient_user_5.json │ │ │ ├── testObject_PubClient_user_6.json │ │ │ ├── testObject_PubClient_user_7.json │ │ │ ├── testObject_PubClient_user_8.json │ │ │ ├── testObject_PubClient_user_9.json │ │ │ ├── testObject_PublicSubConversation_1.json │ │ │ ├── testObject_PublicSubConversation_2.json │ │ │ ├── testObject_PublicSubConversation_v5_1.json │ │ │ ├── testObject_PublicSubConversation_v5_2.json │ │ │ ├── testObject_PushRemove_1.json │ │ │ ├── testObject_PushTokenList_user_1.json │ │ │ ├── testObject_PushTokenList_user_2.json │ │ │ ├── testObject_PushToken_user_1.json │ │ │ ├── testObject_Push_1.json │ │ │ ├── testObject_Push_2.json │ │ │ ├── testObject_Push_2eToken_2eTransport_user_1.json │ │ │ ├── testObject_Push_2eToken_2eTransport_user_2.json │ │ │ ├── testObject_Push_2eToken_2eTransport_user_3.json │ │ │ ├── testObject_Push_2eToken_2eTransport_user_4.json │ │ │ ├── testObject_Push_2eToken_2eTransport_user_5.json │ │ │ ├── testObject_QualifiedNewOtrMessage_user_1.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_10.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_11.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_12.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_13.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_14.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_15.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_16.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_17.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_18.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_19.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_2.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_20.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_3.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_4.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_5.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_6.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_7.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_8.protobuf │ │ │ ├── testObject_QualifiedNewOtrMessage_user_9.protobuf │ │ │ ├── testObject_QualifiedUserClientPrekeyMapV4_1.json │ │ │ ├── testObject_QualifiedUserClientPrekeyMapV4_2.json │ │ │ ├── testObject_QualifiedUserClientPrekeyMapV4_3.json │ │ │ ├── testObject_QualifiedUserClientPrekeyMap_1.json │ │ │ ├── testObject_QualifiedUserClientPrekeyMap_2.json │ │ │ ├── testObject_QueuedNotificationList_user_1.json │ │ │ ├── testObject_QueuedNotificationList_user_2.json │ │ │ ├── testObject_QueuedNotification_user_1.json │ │ │ ├── testObject_RTCConfiguration_user_1.json │ │ │ ├── testObject_RTCConfiguration_user_2.json │ │ │ ├── testObject_RTCConfiguration_user_3.json │ │ │ ├── testObject_RTCConfiguration_user_4.json │ │ │ ├── testObject_RTCConfiguration_user_5.json │ │ │ ├── testObject_RTCConfiguration_user_6.json │ │ │ ├── testObject_RTCConfiguration_user_7.json │ │ │ ├── testObject_RTCConfiguration_user_8.json │ │ │ ├── testObject_RTCIceServer_user_1.json │ │ │ ├── testObject_RTCIceServer_user_2.json │ │ │ ├── testObject_ReceiptMode_user_1.json │ │ │ ├── testObject_ReceiptMode_user_2.json │ │ │ ├── testObject_Relation_user_1.json │ │ │ ├── testObject_Relation_user_2.json │ │ │ ├── testObject_Relation_user_3.json │ │ │ ├── testObject_Relation_user_4.json │ │ │ ├── testObject_Relation_user_5.json │ │ │ ├── testObject_Relation_user_6.json │ │ │ ├── testObject_Relation_user_7.json │ │ │ ├── testObject_RemoteDomains_1.json │ │ │ ├── testObject_RemoteDomains_2.json │ │ │ ├── testObject_RemoveBotResponse_user_1.json │ │ │ ├── testObject_RemoveCookies_user_1.json │ │ │ ├── testObject_RemoveCookies_user_10.json │ │ │ ├── testObject_RemoveCookies_user_11.json │ │ │ ├── testObject_RemoveCookies_user_12.json │ │ │ ├── testObject_RemoveCookies_user_13.json │ │ │ ├── testObject_RemoveCookies_user_14.json │ │ │ ├── testObject_RemoveCookies_user_15.json │ │ │ ├── testObject_RemoveCookies_user_16.json │ │ │ ├── testObject_RemoveCookies_user_17.json │ │ │ ├── testObject_RemoveCookies_user_18.json │ │ │ ├── testObject_RemoveCookies_user_19.json │ │ │ ├── testObject_RemoveCookies_user_2.json │ │ │ ├── testObject_RemoveCookies_user_20.json │ │ │ ├── testObject_RemoveCookies_user_3.json │ │ │ ├── testObject_RemoveCookies_user_4.json │ │ │ ├── testObject_RemoveCookies_user_5.json │ │ │ ├── testObject_RemoveCookies_user_6.json │ │ │ ├── testObject_RemoveCookies_user_7.json │ │ │ ├── testObject_RemoveCookies_user_8.json │ │ │ ├── testObject_RemoveCookies_user_9.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_1.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_10.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_11.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_12.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_13.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_14.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_15.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_16.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_17.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_18.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_19.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_2.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_20.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_3.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_4.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_5.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_6.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_7.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_8.json │ │ │ ├── testObject_RemoveLegalHoldSettingsRequest_team_9.json │ │ │ ├── testObject_RequestNewLegalHoldClientV0_team_1.json │ │ │ ├── testObject_RequestNewLegalHoldClientV0_team_2.json │ │ │ ├── testObject_RequestNewLegalHoldClient_team_1.json │ │ │ ├── testObject_RequestNewLegalHoldClient_team_2.json │ │ │ ├── testObject_RichField_user_1.json │ │ │ ├── testObject_RichField_user_10.json │ │ │ ├── testObject_RichField_user_11.json │ │ │ ├── testObject_RichField_user_12.json │ │ │ ├── testObject_RichField_user_13.json │ │ │ ├── testObject_RichField_user_14.json │ │ │ ├── testObject_RichField_user_15.json │ │ │ ├── testObject_RichField_user_16.json │ │ │ ├── testObject_RichField_user_17.json │ │ │ ├── testObject_RichField_user_18.json │ │ │ ├── testObject_RichField_user_19.json │ │ │ ├── testObject_RichField_user_2.json │ │ │ ├── testObject_RichField_user_20.json │ │ │ ├── testObject_RichField_user_3.json │ │ │ ├── testObject_RichField_user_4.json │ │ │ ├── testObject_RichField_user_5.json │ │ │ ├── testObject_RichField_user_6.json │ │ │ ├── testObject_RichField_user_7.json │ │ │ ├── testObject_RichField_user_8.json │ │ │ ├── testObject_RichField_user_9.json │ │ │ ├── testObject_RichInfoAssocList_user_1.json │ │ │ ├── testObject_RichInfoAssocList_user_10.json │ │ │ ├── testObject_RichInfoAssocList_user_11.json │ │ │ ├── testObject_RichInfoAssocList_user_12.json │ │ │ ├── testObject_RichInfoAssocList_user_13.json │ │ │ ├── testObject_RichInfoAssocList_user_14.json │ │ │ ├── testObject_RichInfoAssocList_user_15.json │ │ │ ├── testObject_RichInfoAssocList_user_16.json │ │ │ ├── testObject_RichInfoAssocList_user_17.json │ │ │ ├── testObject_RichInfoAssocList_user_18.json │ │ │ ├── testObject_RichInfoAssocList_user_19.json │ │ │ ├── testObject_RichInfoAssocList_user_2.json │ │ │ ├── testObject_RichInfoAssocList_user_20.json │ │ │ ├── testObject_RichInfoAssocList_user_3.json │ │ │ ├── testObject_RichInfoAssocList_user_4.json │ │ │ ├── testObject_RichInfoAssocList_user_5.json │ │ │ ├── testObject_RichInfoAssocList_user_6.json │ │ │ ├── testObject_RichInfoAssocList_user_7.json │ │ │ ├── testObject_RichInfoAssocList_user_8.json │ │ │ ├── testObject_RichInfoAssocList_user_9.json │ │ │ ├── testObject_RichInfo_user_1.json │ │ │ ├── testObject_RichInfo_user_10.json │ │ │ ├── testObject_RichInfo_user_11.json │ │ │ ├── testObject_RichInfo_user_12.json │ │ │ ├── testObject_RichInfo_user_13.json │ │ │ ├── testObject_RichInfo_user_14.json │ │ │ ├── testObject_RichInfo_user_15.json │ │ │ ├── testObject_RichInfo_user_16.json │ │ │ ├── testObject_RichInfo_user_17.json │ │ │ ├── testObject_RichInfo_user_18.json │ │ │ ├── testObject_RichInfo_user_19.json │ │ │ ├── testObject_RichInfo_user_2.json │ │ │ ├── testObject_RichInfo_user_20.json │ │ │ ├── testObject_RichInfo_user_3.json │ │ │ ├── testObject_RichInfo_user_4.json │ │ │ ├── testObject_RichInfo_user_5.json │ │ │ ├── testObject_RichInfo_user_6.json │ │ │ ├── testObject_RichInfo_user_7.json │ │ │ ├── testObject_RichInfo_user_8.json │ │ │ ├── testObject_RichInfo_user_9.json │ │ │ ├── testObject_RmClient_user_1.json │ │ │ ├── testObject_RmClient_user_10.json │ │ │ ├── testObject_RmClient_user_11.json │ │ │ ├── testObject_RmClient_user_12.json │ │ │ ├── testObject_RmClient_user_13.json │ │ │ ├── testObject_RmClient_user_14.json │ │ │ ├── testObject_RmClient_user_15.json │ │ │ ├── testObject_RmClient_user_16.json │ │ │ ├── testObject_RmClient_user_17.json │ │ │ ├── testObject_RmClient_user_18.json │ │ │ ├── testObject_RmClient_user_19.json │ │ │ ├── testObject_RmClient_user_2.json │ │ │ ├── testObject_RmClient_user_20.json │ │ │ ├── testObject_RmClient_user_3.json │ │ │ ├── testObject_RmClient_user_4.json │ │ │ ├── testObject_RmClient_user_5.json │ │ │ ├── testObject_RmClient_user_6.json │ │ │ ├── testObject_RmClient_user_7.json │ │ │ ├── testObject_RmClient_user_8.json │ │ │ ├── testObject_RmClient_user_9.json │ │ │ ├── testObject_RoleName_user_1.json │ │ │ ├── testObject_Role_team_1.json │ │ │ ├── testObject_Role_team_10.json │ │ │ ├── testObject_Role_team_11.json │ │ │ ├── testObject_Role_team_12.json │ │ │ ├── testObject_Role_team_13.json │ │ │ ├── testObject_Role_team_14.json │ │ │ ├── testObject_Role_team_15.json │ │ │ ├── testObject_Role_team_16.json │ │ │ ├── testObject_Role_team_17.json │ │ │ ├── testObject_Role_team_18.json │ │ │ ├── testObject_Role_team_19.json │ │ │ ├── testObject_Role_team_2.json │ │ │ ├── testObject_Role_team_20.json │ │ │ ├── testObject_Role_team_3.json │ │ │ ├── testObject_Role_team_4.json │ │ │ ├── testObject_Role_team_5.json │ │ │ ├── testObject_Role_team_6.json │ │ │ ├── testObject_Role_team_7.json │ │ │ ├── testObject_Role_team_8.json │ │ │ ├── testObject_Role_team_9.json │ │ │ ├── testObject_SFTServer_user_1.json │ │ │ ├── testObject_Scheme_user_1.json │ │ │ ├── testObject_Scheme_user_2.json │ │ │ ├── testObject_SearchResultContact_1.json │ │ │ ├── testObject_SearchResultContact_2.json │ │ │ ├── testObject_SearchResult_20Contact_user_1.json │ │ │ ├── testObject_SearchResult_20Contact_user_10.json │ │ │ ├── testObject_SearchResult_20Contact_user_11.json │ │ │ ├── testObject_SearchResult_20Contact_user_12.json │ │ │ ├── testObject_SearchResult_20Contact_user_13.json │ │ │ ├── testObject_SearchResult_20Contact_user_14.json │ │ │ ├── testObject_SearchResult_20Contact_user_15.json │ │ │ ├── testObject_SearchResult_20Contact_user_16.json │ │ │ ├── testObject_SearchResult_20Contact_user_17.json │ │ │ ├── testObject_SearchResult_20Contact_user_18.json │ │ │ ├── testObject_SearchResult_20Contact_user_19.json │ │ │ ├── testObject_SearchResult_20Contact_user_2.json │ │ │ ├── testObject_SearchResult_20Contact_user_20.json │ │ │ ├── testObject_SearchResult_20Contact_user_3.json │ │ │ ├── testObject_SearchResult_20Contact_user_4.json │ │ │ ├── testObject_SearchResult_20Contact_user_5.json │ │ │ ├── testObject_SearchResult_20Contact_user_6.json │ │ │ ├── testObject_SearchResult_20Contact_user_7.json │ │ │ ├── testObject_SearchResult_20Contact_user_8.json │ │ │ ├── testObject_SearchResult_20Contact_user_9.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_1.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_10.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_11.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_12.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_13.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_14.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_15.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_16.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_17.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_18.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_19.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_2.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_20.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_3.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_4.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_5.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_6.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_7.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_8.json │ │ │ ├── testObject_SearchResult_20TeamContact_user_9.json │ │ │ ├── testObject_SelfProfile_user_1.json │ │ │ ├── testObject_SendActivationCode_1.json │ │ │ ├── testObject_SendActivationCode_2.json │ │ │ ├── testObject_SendLoginCode_user_1.json │ │ │ ├── testObject_SendLoginCode_user_10.json │ │ │ ├── testObject_SendLoginCode_user_11.json │ │ │ ├── testObject_SendLoginCode_user_12.json │ │ │ ├── testObject_SendLoginCode_user_13.json │ │ │ ├── testObject_SendLoginCode_user_14.json │ │ │ ├── testObject_SendLoginCode_user_15.json │ │ │ ├── testObject_SendLoginCode_user_16.json │ │ │ ├── testObject_SendLoginCode_user_17.json │ │ │ ├── testObject_SendLoginCode_user_18.json │ │ │ ├── testObject_SendLoginCode_user_19.json │ │ │ ├── testObject_SendLoginCode_user_2.json │ │ │ ├── testObject_SendLoginCode_user_20.json │ │ │ ├── testObject_SendLoginCode_user_3.json │ │ │ ├── testObject_SendLoginCode_user_4.json │ │ │ ├── testObject_SendLoginCode_user_5.json │ │ │ ├── testObject_SendLoginCode_user_6.json │ │ │ ├── testObject_SendLoginCode_user_7.json │ │ │ ├── testObject_SendLoginCode_user_8.json │ │ │ ├── testObject_SendLoginCode_user_9.json │ │ │ ├── testObject_ServiceKeyPEM_provider_1.json │ │ │ ├── testObject_ServiceKeyPEM_provider_10.json │ │ │ ├── testObject_ServiceKeyPEM_provider_11.json │ │ │ ├── testObject_ServiceKeyPEM_provider_12.json │ │ │ ├── testObject_ServiceKeyPEM_provider_13.json │ │ │ ├── testObject_ServiceKeyPEM_provider_14.json │ │ │ ├── testObject_ServiceKeyPEM_provider_15.json │ │ │ ├── testObject_ServiceKeyPEM_provider_16.json │ │ │ ├── testObject_ServiceKeyPEM_provider_17.json │ │ │ ├── testObject_ServiceKeyPEM_provider_18.json │ │ │ ├── testObject_ServiceKeyPEM_provider_19.json │ │ │ ├── testObject_ServiceKeyPEM_provider_2.json │ │ │ ├── testObject_ServiceKeyPEM_provider_20.json │ │ │ ├── testObject_ServiceKeyPEM_provider_3.json │ │ │ ├── testObject_ServiceKeyPEM_provider_4.json │ │ │ ├── testObject_ServiceKeyPEM_provider_5.json │ │ │ ├── testObject_ServiceKeyPEM_provider_6.json │ │ │ ├── testObject_ServiceKeyPEM_provider_7.json │ │ │ ├── testObject_ServiceKeyPEM_provider_8.json │ │ │ ├── testObject_ServiceKeyPEM_provider_9.json │ │ │ ├── testObject_ServiceKeyType_provider_1.json │ │ │ ├── testObject_ServiceKeyType_provider_10.json │ │ │ ├── testObject_ServiceKeyType_provider_11.json │ │ │ ├── testObject_ServiceKeyType_provider_12.json │ │ │ ├── testObject_ServiceKeyType_provider_13.json │ │ │ ├── testObject_ServiceKeyType_provider_14.json │ │ │ ├── testObject_ServiceKeyType_provider_15.json │ │ │ ├── testObject_ServiceKeyType_provider_16.json │ │ │ ├── testObject_ServiceKeyType_provider_17.json │ │ │ ├── testObject_ServiceKeyType_provider_18.json │ │ │ ├── testObject_ServiceKeyType_provider_19.json │ │ │ ├── testObject_ServiceKeyType_provider_2.json │ │ │ ├── testObject_ServiceKeyType_provider_20.json │ │ │ ├── testObject_ServiceKeyType_provider_3.json │ │ │ ├── testObject_ServiceKeyType_provider_4.json │ │ │ ├── testObject_ServiceKeyType_provider_5.json │ │ │ ├── testObject_ServiceKeyType_provider_6.json │ │ │ ├── testObject_ServiceKeyType_provider_7.json │ │ │ ├── testObject_ServiceKeyType_provider_8.json │ │ │ ├── testObject_ServiceKeyType_provider_9.json │ │ │ ├── testObject_ServiceKey_provider_1.json │ │ │ ├── testObject_ServiceKey_provider_10.json │ │ │ ├── testObject_ServiceKey_provider_11.json │ │ │ ├── testObject_ServiceKey_provider_12.json │ │ │ ├── testObject_ServiceKey_provider_13.json │ │ │ ├── testObject_ServiceKey_provider_14.json │ │ │ ├── testObject_ServiceKey_provider_15.json │ │ │ ├── testObject_ServiceKey_provider_16.json │ │ │ ├── testObject_ServiceKey_provider_17.json │ │ │ ├── testObject_ServiceKey_provider_18.json │ │ │ ├── testObject_ServiceKey_provider_19.json │ │ │ ├── testObject_ServiceKey_provider_2.json │ │ │ ├── testObject_ServiceKey_provider_20.json │ │ │ ├── testObject_ServiceKey_provider_3.json │ │ │ ├── testObject_ServiceKey_provider_4.json │ │ │ ├── testObject_ServiceKey_provider_5.json │ │ │ ├── testObject_ServiceKey_provider_6.json │ │ │ ├── testObject_ServiceKey_provider_7.json │ │ │ ├── testObject_ServiceKey_provider_8.json │ │ │ ├── testObject_ServiceKey_provider_9.json │ │ │ ├── testObject_ServiceProfilePage_provider_1.json │ │ │ ├── testObject_ServiceProfilePage_provider_10.json │ │ │ ├── testObject_ServiceProfilePage_provider_11.json │ │ │ ├── testObject_ServiceProfilePage_provider_12.json │ │ │ ├── testObject_ServiceProfilePage_provider_13.json │ │ │ ├── testObject_ServiceProfilePage_provider_14.json │ │ │ ├── testObject_ServiceProfilePage_provider_15.json │ │ │ ├── testObject_ServiceProfilePage_provider_16.json │ │ │ ├── testObject_ServiceProfilePage_provider_17.json │ │ │ ├── testObject_ServiceProfilePage_provider_18.json │ │ │ ├── testObject_ServiceProfilePage_provider_19.json │ │ │ ├── testObject_ServiceProfilePage_provider_2.json │ │ │ ├── testObject_ServiceProfilePage_provider_20.json │ │ │ ├── testObject_ServiceProfilePage_provider_3.json │ │ │ ├── testObject_ServiceProfilePage_provider_4.json │ │ │ ├── testObject_ServiceProfilePage_provider_5.json │ │ │ ├── testObject_ServiceProfilePage_provider_6.json │ │ │ ├── testObject_ServiceProfilePage_provider_7.json │ │ │ ├── testObject_ServiceProfilePage_provider_8.json │ │ │ ├── testObject_ServiceProfilePage_provider_9.json │ │ │ ├── testObject_ServiceProfile_provider_1.json │ │ │ ├── testObject_ServiceProfile_provider_10.json │ │ │ ├── testObject_ServiceProfile_provider_11.json │ │ │ ├── testObject_ServiceProfile_provider_12.json │ │ │ ├── testObject_ServiceProfile_provider_13.json │ │ │ ├── testObject_ServiceProfile_provider_14.json │ │ │ ├── testObject_ServiceProfile_provider_15.json │ │ │ ├── testObject_ServiceProfile_provider_16.json │ │ │ ├── testObject_ServiceProfile_provider_17.json │ │ │ ├── testObject_ServiceProfile_provider_18.json │ │ │ ├── testObject_ServiceProfile_provider_19.json │ │ │ ├── testObject_ServiceProfile_provider_2.json │ │ │ ├── testObject_ServiceProfile_provider_20.json │ │ │ ├── testObject_ServiceProfile_provider_3.json │ │ │ ├── testObject_ServiceProfile_provider_4.json │ │ │ ├── testObject_ServiceProfile_provider_5.json │ │ │ ├── testObject_ServiceProfile_provider_6.json │ │ │ ├── testObject_ServiceProfile_provider_7.json │ │ │ ├── testObject_ServiceProfile_provider_8.json │ │ │ ├── testObject_ServiceProfile_provider_9.json │ │ │ ├── testObject_ServiceRef_provider_1.json │ │ │ ├── testObject_ServiceRef_provider_10.json │ │ │ ├── testObject_ServiceRef_provider_11.json │ │ │ ├── testObject_ServiceRef_provider_12.json │ │ │ ├── testObject_ServiceRef_provider_13.json │ │ │ ├── testObject_ServiceRef_provider_14.json │ │ │ ├── testObject_ServiceRef_provider_15.json │ │ │ ├── testObject_ServiceRef_provider_16.json │ │ │ ├── testObject_ServiceRef_provider_17.json │ │ │ ├── testObject_ServiceRef_provider_18.json │ │ │ ├── testObject_ServiceRef_provider_19.json │ │ │ ├── testObject_ServiceRef_provider_2.json │ │ │ ├── testObject_ServiceRef_provider_20.json │ │ │ ├── testObject_ServiceRef_provider_3.json │ │ │ ├── testObject_ServiceRef_provider_4.json │ │ │ ├── testObject_ServiceRef_provider_5.json │ │ │ ├── testObject_ServiceRef_provider_6.json │ │ │ ├── testObject_ServiceRef_provider_7.json │ │ │ ├── testObject_ServiceRef_provider_8.json │ │ │ ├── testObject_ServiceRef_provider_9.json │ │ │ ├── testObject_ServiceTagList_provider_1.json │ │ │ ├── testObject_ServiceTagList_provider_10.json │ │ │ ├── testObject_ServiceTagList_provider_11.json │ │ │ ├── testObject_ServiceTagList_provider_12.json │ │ │ ├── testObject_ServiceTagList_provider_13.json │ │ │ ├── testObject_ServiceTagList_provider_14.json │ │ │ ├── testObject_ServiceTagList_provider_15.json │ │ │ ├── testObject_ServiceTagList_provider_16.json │ │ │ ├── testObject_ServiceTagList_provider_17.json │ │ │ ├── testObject_ServiceTagList_provider_18.json │ │ │ ├── testObject_ServiceTagList_provider_19.json │ │ │ ├── testObject_ServiceTagList_provider_2.json │ │ │ ├── testObject_ServiceTagList_provider_20.json │ │ │ ├── testObject_ServiceTagList_provider_3.json │ │ │ ├── testObject_ServiceTagList_provider_4.json │ │ │ ├── testObject_ServiceTagList_provider_5.json │ │ │ ├── testObject_ServiceTagList_provider_6.json │ │ │ ├── testObject_ServiceTagList_provider_7.json │ │ │ ├── testObject_ServiceTagList_provider_8.json │ │ │ ├── testObject_ServiceTagList_provider_9.json │ │ │ ├── testObject_ServiceTag_provider_1.json │ │ │ ├── testObject_ServiceTag_provider_10.json │ │ │ ├── testObject_ServiceTag_provider_11.json │ │ │ ├── testObject_ServiceTag_provider_12.json │ │ │ ├── testObject_ServiceTag_provider_13.json │ │ │ ├── testObject_ServiceTag_provider_14.json │ │ │ ├── testObject_ServiceTag_provider_15.json │ │ │ ├── testObject_ServiceTag_provider_16.json │ │ │ ├── testObject_ServiceTag_provider_17.json │ │ │ ├── testObject_ServiceTag_provider_18.json │ │ │ ├── testObject_ServiceTag_provider_19.json │ │ │ ├── testObject_ServiceTag_provider_2.json │ │ │ ├── testObject_ServiceTag_provider_20.json │ │ │ ├── testObject_ServiceTag_provider_3.json │ │ │ ├── testObject_ServiceTag_provider_4.json │ │ │ ├── testObject_ServiceTag_provider_5.json │ │ │ ├── testObject_ServiceTag_provider_6.json │ │ │ ├── testObject_ServiceTag_provider_7.json │ │ │ ├── testObject_ServiceTag_provider_8.json │ │ │ ├── testObject_ServiceTag_provider_9.json │ │ │ ├── testObject_ServiceToken_provider_1.json │ │ │ ├── testObject_ServiceToken_provider_10.json │ │ │ ├── testObject_ServiceToken_provider_11.json │ │ │ ├── testObject_ServiceToken_provider_12.json │ │ │ ├── testObject_ServiceToken_provider_13.json │ │ │ ├── testObject_ServiceToken_provider_14.json │ │ │ ├── testObject_ServiceToken_provider_15.json │ │ │ ├── testObject_ServiceToken_provider_16.json │ │ │ ├── testObject_ServiceToken_provider_17.json │ │ │ ├── testObject_ServiceToken_provider_18.json │ │ │ ├── testObject_ServiceToken_provider_19.json │ │ │ ├── testObject_ServiceToken_provider_2.json │ │ │ ├── testObject_ServiceToken_provider_20.json │ │ │ ├── testObject_ServiceToken_provider_3.json │ │ │ ├── testObject_ServiceToken_provider_4.json │ │ │ ├── testObject_ServiceToken_provider_5.json │ │ │ ├── testObject_ServiceToken_provider_6.json │ │ │ ├── testObject_ServiceToken_provider_7.json │ │ │ ├── testObject_ServiceToken_provider_8.json │ │ │ ├── testObject_ServiceToken_provider_9.json │ │ │ ├── testObject_Service_provider_1.json │ │ │ ├── testObject_Service_provider_10.json │ │ │ ├── testObject_Service_provider_11.json │ │ │ ├── testObject_Service_provider_12.json │ │ │ ├── testObject_Service_provider_13.json │ │ │ ├── testObject_Service_provider_14.json │ │ │ ├── testObject_Service_provider_15.json │ │ │ ├── testObject_Service_provider_16.json │ │ │ ├── testObject_Service_provider_17.json │ │ │ ├── testObject_Service_provider_18.json │ │ │ ├── testObject_Service_provider_19.json │ │ │ ├── testObject_Service_provider_2.json │ │ │ ├── testObject_Service_provider_20.json │ │ │ ├── testObject_Service_provider_3.json │ │ │ ├── testObject_Service_provider_4.json │ │ │ ├── testObject_Service_provider_5.json │ │ │ ├── testObject_Service_provider_6.json │ │ │ ├── testObject_Service_provider_7.json │ │ │ ├── testObject_Service_provider_8.json │ │ │ ├── testObject_Service_provider_9.json │ │ │ ├── testObject_SimpleMember_user_1.json │ │ │ ├── testObject_TeamBinding_team_1.json │ │ │ ├── testObject_TeamBinding_team_10.json │ │ │ ├── testObject_TeamBinding_team_11.json │ │ │ ├── testObject_TeamBinding_team_12.json │ │ │ ├── testObject_TeamBinding_team_13.json │ │ │ ├── testObject_TeamBinding_team_14.json │ │ │ ├── testObject_TeamBinding_team_15.json │ │ │ ├── testObject_TeamBinding_team_16.json │ │ │ ├── testObject_TeamBinding_team_17.json │ │ │ ├── testObject_TeamBinding_team_18.json │ │ │ ├── testObject_TeamBinding_team_19.json │ │ │ ├── testObject_TeamBinding_team_2.json │ │ │ ├── testObject_TeamBinding_team_20.json │ │ │ ├── testObject_TeamBinding_team_3.json │ │ │ ├── testObject_TeamBinding_team_4.json │ │ │ ├── testObject_TeamBinding_team_5.json │ │ │ ├── testObject_TeamBinding_team_6.json │ │ │ ├── testObject_TeamBinding_team_7.json │ │ │ ├── testObject_TeamBinding_team_8.json │ │ │ ├── testObject_TeamBinding_team_9.json │ │ │ ├── testObject_TeamContact_user_1.json │ │ │ ├── testObject_TeamContact_user_10.json │ │ │ ├── testObject_TeamContact_user_11.json │ │ │ ├── testObject_TeamContact_user_12.json │ │ │ ├── testObject_TeamContact_user_13.json │ │ │ ├── testObject_TeamContact_user_14.json │ │ │ ├── testObject_TeamContact_user_15.json │ │ │ ├── testObject_TeamContact_user_16.json │ │ │ ├── testObject_TeamContact_user_17.json │ │ │ ├── testObject_TeamContact_user_18.json │ │ │ ├── testObject_TeamContact_user_19.json │ │ │ ├── testObject_TeamContact_user_2.json │ │ │ ├── testObject_TeamContact_user_20.json │ │ │ ├── testObject_TeamContact_user_3.json │ │ │ ├── testObject_TeamContact_user_4.json │ │ │ ├── testObject_TeamContact_user_5.json │ │ │ ├── testObject_TeamContact_user_6.json │ │ │ ├── testObject_TeamContact_user_7.json │ │ │ ├── testObject_TeamContact_user_8.json │ │ │ ├── testObject_TeamContact_user_9.json │ │ │ ├── testObject_TeamConversationList_team_1.json │ │ │ ├── testObject_TeamConversationList_team_2.json │ │ │ ├── testObject_TeamConversation_team_1.json │ │ │ ├── testObject_TeamConversation_team_2.json │ │ │ ├── testObject_TeamDeleteData_team_1.json │ │ │ ├── testObject_TeamDeleteData_team_10.json │ │ │ ├── testObject_TeamDeleteData_team_11.json │ │ │ ├── testObject_TeamDeleteData_team_12.json │ │ │ ├── testObject_TeamDeleteData_team_13.json │ │ │ ├── testObject_TeamDeleteData_team_14.json │ │ │ ├── testObject_TeamDeleteData_team_15.json │ │ │ ├── testObject_TeamDeleteData_team_16.json │ │ │ ├── testObject_TeamDeleteData_team_17.json │ │ │ ├── testObject_TeamDeleteData_team_18.json │ │ │ ├── testObject_TeamDeleteData_team_19.json │ │ │ ├── testObject_TeamDeleteData_team_2.json │ │ │ ├── testObject_TeamDeleteData_team_20.json │ │ │ ├── testObject_TeamDeleteData_team_3.json │ │ │ ├── testObject_TeamDeleteData_team_4.json │ │ │ ├── testObject_TeamDeleteData_team_5.json │ │ │ ├── testObject_TeamDeleteData_team_6.json │ │ │ ├── testObject_TeamDeleteData_team_7.json │ │ │ ├── testObject_TeamDeleteData_team_8.json │ │ │ ├── testObject_TeamDeleteData_team_9.json │ │ │ ├── testObject_TeamList_team_1.json │ │ │ ├── testObject_TeamList_team_10.json │ │ │ ├── testObject_TeamList_team_11.json │ │ │ ├── testObject_TeamList_team_12.json │ │ │ ├── testObject_TeamList_team_13.json │ │ │ ├── testObject_TeamList_team_14.json │ │ │ ├── testObject_TeamList_team_15.json │ │ │ ├── testObject_TeamList_team_16.json │ │ │ ├── testObject_TeamList_team_17.json │ │ │ ├── testObject_TeamList_team_18.json │ │ │ ├── testObject_TeamList_team_19.json │ │ │ ├── testObject_TeamList_team_2.json │ │ │ ├── testObject_TeamList_team_20.json │ │ │ ├── testObject_TeamList_team_3.json │ │ │ ├── testObject_TeamList_team_4.json │ │ │ ├── testObject_TeamList_team_5.json │ │ │ ├── testObject_TeamList_team_6.json │ │ │ ├── testObject_TeamList_team_7.json │ │ │ ├── testObject_TeamList_team_8.json │ │ │ ├── testObject_TeamList_team_9.json │ │ │ ├── testObject_TeamMemberDeleteData_team_1.json │ │ │ ├── testObject_TeamMemberDeleteData_team_10.json │ │ │ ├── testObject_TeamMemberDeleteData_team_11.json │ │ │ ├── testObject_TeamMemberDeleteData_team_12.json │ │ │ ├── testObject_TeamMemberDeleteData_team_13.json │ │ │ ├── testObject_TeamMemberDeleteData_team_14.json │ │ │ ├── testObject_TeamMemberDeleteData_team_15.json │ │ │ ├── testObject_TeamMemberDeleteData_team_16.json │ │ │ ├── testObject_TeamMemberDeleteData_team_17.json │ │ │ ├── testObject_TeamMemberDeleteData_team_18.json │ │ │ ├── testObject_TeamMemberDeleteData_team_19.json │ │ │ ├── testObject_TeamMemberDeleteData_team_2.json │ │ │ ├── testObject_TeamMemberDeleteData_team_20.json │ │ │ ├── testObject_TeamMemberDeleteData_team_3.json │ │ │ ├── testObject_TeamMemberDeleteData_team_4.json │ │ │ ├── testObject_TeamMemberDeleteData_team_5.json │ │ │ ├── testObject_TeamMemberDeleteData_team_6.json │ │ │ ├── testObject_TeamMemberDeleteData_team_7.json │ │ │ ├── testObject_TeamMemberDeleteData_team_8.json │ │ │ ├── testObject_TeamMemberDeleteData_team_9.json │ │ │ ├── testObject_TeamMemberList_team_1.json │ │ │ ├── testObject_TeamMemberList_team_10.json │ │ │ ├── testObject_TeamMemberList_team_11.json │ │ │ ├── testObject_TeamMemberList_team_12.json │ │ │ ├── testObject_TeamMemberList_team_13.json │ │ │ ├── testObject_TeamMemberList_team_14.json │ │ │ ├── testObject_TeamMemberList_team_15.json │ │ │ ├── testObject_TeamMemberList_team_16.json │ │ │ ├── testObject_TeamMemberList_team_17.json │ │ │ ├── testObject_TeamMemberList_team_18.json │ │ │ ├── testObject_TeamMemberList_team_19.json │ │ │ ├── testObject_TeamMemberList_team_2.json │ │ │ ├── testObject_TeamMemberList_team_20.json │ │ │ ├── testObject_TeamMemberList_team_3.json │ │ │ ├── testObject_TeamMemberList_team_4.json │ │ │ ├── testObject_TeamMemberList_team_5.json │ │ │ ├── testObject_TeamMemberList_team_6.json │ │ │ ├── testObject_TeamMemberList_team_7.json │ │ │ ├── testObject_TeamMemberList_team_8.json │ │ │ ├── testObject_TeamMemberList_team_9.json │ │ │ ├── testObject_TeamMember_team_1.json │ │ │ ├── testObject_TeamMember_team_10.json │ │ │ ├── testObject_TeamMember_team_11.json │ │ │ ├── testObject_TeamMember_team_12.json │ │ │ ├── testObject_TeamMember_team_13.json │ │ │ ├── testObject_TeamMember_team_14.json │ │ │ ├── testObject_TeamMember_team_15.json │ │ │ ├── testObject_TeamMember_team_16.json │ │ │ ├── testObject_TeamMember_team_17.json │ │ │ ├── testObject_TeamMember_team_18.json │ │ │ ├── testObject_TeamMember_team_19.json │ │ │ ├── testObject_TeamMember_team_2.json │ │ │ ├── testObject_TeamMember_team_20.json │ │ │ ├── testObject_TeamMember_team_3.json │ │ │ ├── testObject_TeamMember_team_4.json │ │ │ ├── testObject_TeamMember_team_5.json │ │ │ ├── testObject_TeamMember_team_6.json │ │ │ ├── testObject_TeamMember_team_7.json │ │ │ ├── testObject_TeamMember_team_8.json │ │ │ ├── testObject_TeamMember_team_9.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_1.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_10.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_11.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_12.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_13.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_14.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_15.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_16.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_17.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_18.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_19.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_2.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_20.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_3.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_4.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_5.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_6.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_7.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_8.json │ │ │ ├── testObject_TeamSearchVisibilityView_team_9.json │ │ │ ├── testObject_TeamSearchVisibility_team_1.json │ │ │ ├── testObject_TeamSearchVisibility_team_10.json │ │ │ ├── testObject_TeamSearchVisibility_team_11.json │ │ │ ├── testObject_TeamSearchVisibility_team_12.json │ │ │ ├── testObject_TeamSearchVisibility_team_13.json │ │ │ ├── testObject_TeamSearchVisibility_team_14.json │ │ │ ├── testObject_TeamSearchVisibility_team_15.json │ │ │ ├── testObject_TeamSearchVisibility_team_16.json │ │ │ ├── testObject_TeamSearchVisibility_team_17.json │ │ │ ├── testObject_TeamSearchVisibility_team_18.json │ │ │ ├── testObject_TeamSearchVisibility_team_19.json │ │ │ ├── testObject_TeamSearchVisibility_team_2.json │ │ │ ├── testObject_TeamSearchVisibility_team_20.json │ │ │ ├── testObject_TeamSearchVisibility_team_3.json │ │ │ ├── testObject_TeamSearchVisibility_team_4.json │ │ │ ├── testObject_TeamSearchVisibility_team_5.json │ │ │ ├── testObject_TeamSearchVisibility_team_6.json │ │ │ ├── testObject_TeamSearchVisibility_team_7.json │ │ │ ├── testObject_TeamSearchVisibility_team_8.json │ │ │ ├── testObject_TeamSearchVisibility_team_9.json │ │ │ ├── testObject_TeamSize_1.json │ │ │ ├── testObject_TeamSize_2.json │ │ │ ├── testObject_TeamSize_3.json │ │ │ ├── testObject_TeamUpdateData_team_1.json │ │ │ ├── testObject_TeamUpdateData_team_10.json │ │ │ ├── testObject_TeamUpdateData_team_11.json │ │ │ ├── testObject_TeamUpdateData_team_12.json │ │ │ ├── testObject_TeamUpdateData_team_13.json │ │ │ ├── testObject_TeamUpdateData_team_14.json │ │ │ ├── testObject_TeamUpdateData_team_15.json │ │ │ ├── testObject_TeamUpdateData_team_16.json │ │ │ ├── testObject_TeamUpdateData_team_17.json │ │ │ ├── testObject_TeamUpdateData_team_18.json │ │ │ ├── testObject_TeamUpdateData_team_19.json │ │ │ ├── testObject_TeamUpdateData_team_2.json │ │ │ ├── testObject_TeamUpdateData_team_20.json │ │ │ ├── testObject_TeamUpdateData_team_3.json │ │ │ ├── testObject_TeamUpdateData_team_4.json │ │ │ ├── testObject_TeamUpdateData_team_5.json │ │ │ ├── testObject_TeamUpdateData_team_6.json │ │ │ ├── testObject_TeamUpdateData_team_7.json │ │ │ ├── testObject_TeamUpdateData_team_8.json │ │ │ ├── testObject_TeamUpdateData_team_9.json │ │ │ ├── testObject_Team_team_1.json │ │ │ ├── testObject_Team_team_10.json │ │ │ ├── testObject_Team_team_11.json │ │ │ ├── testObject_Team_team_12.json │ │ │ ├── testObject_Team_team_13.json │ │ │ ├── testObject_Team_team_14.json │ │ │ ├── testObject_Team_team_15.json │ │ │ ├── testObject_Team_team_16.json │ │ │ ├── testObject_Team_team_17.json │ │ │ ├── testObject_Team_team_18.json │ │ │ ├── testObject_Team_team_19.json │ │ │ ├── testObject_Team_team_2.json │ │ │ ├── testObject_Team_team_20.json │ │ │ ├── testObject_Team_team_3.json │ │ │ ├── testObject_Team_team_4.json │ │ │ ├── testObject_Team_team_5.json │ │ │ ├── testObject_Team_team_6.json │ │ │ ├── testObject_Team_team_7.json │ │ │ ├── testObject_Team_team_8.json │ │ │ ├── testObject_Team_team_9.json │ │ │ ├── testObject_TokenType_user_1.json │ │ │ ├── testObject_TokenType_user_10.json │ │ │ ├── testObject_TokenType_user_11.json │ │ │ ├── testObject_TokenType_user_12.json │ │ │ ├── testObject_TokenType_user_13.json │ │ │ ├── testObject_TokenType_user_14.json │ │ │ ├── testObject_TokenType_user_15.json │ │ │ ├── testObject_TokenType_user_16.json │ │ │ ├── testObject_TokenType_user_17.json │ │ │ ├── testObject_TokenType_user_18.json │ │ │ ├── testObject_TokenType_user_19.json │ │ │ ├── testObject_TokenType_user_2.json │ │ │ ├── testObject_TokenType_user_20.json │ │ │ ├── testObject_TokenType_user_3.json │ │ │ ├── testObject_TokenType_user_4.json │ │ │ ├── testObject_TokenType_user_5.json │ │ │ ├── testObject_TokenType_user_6.json │ │ │ ├── testObject_TokenType_user_7.json │ │ │ ├── testObject_TokenType_user_8.json │ │ │ ├── testObject_TokenType_user_9.json │ │ │ ├── testObject_Token_1.json │ │ │ ├── testObject_Token_user_1.json │ │ │ ├── testObject_Transport_user_1.json │ │ │ ├── testObject_Transport_user_2.json │ │ │ ├── testObject_TurnHost_user_1.json │ │ │ ├── testObject_TurnHost_user_12.json │ │ │ ├── testObject_TurnHost_user_14.json │ │ │ ├── testObject_TurnHost_user_2.json │ │ │ ├── testObject_TurnHost_user_20.json │ │ │ ├── testObject_TurnHost_user_8.json │ │ │ ├── testObject_TurnHost_user_9.json │ │ │ ├── testObject_TurnURI_user_1.json │ │ │ ├── testObject_TurnURI_user_9.json │ │ │ ├── testObject_TurnUsername_user_1.json │ │ │ ├── testObject_TurnUsername_user_10.json │ │ │ ├── testObject_TurnUsername_user_11.json │ │ │ ├── testObject_TurnUsername_user_12.json │ │ │ ├── testObject_TurnUsername_user_13.json │ │ │ ├── testObject_TurnUsername_user_14.json │ │ │ ├── testObject_TurnUsername_user_15.json │ │ │ ├── testObject_TurnUsername_user_16.json │ │ │ ├── testObject_TurnUsername_user_17.json │ │ │ ├── testObject_TurnUsername_user_18.json │ │ │ ├── testObject_TurnUsername_user_19.json │ │ │ ├── testObject_TurnUsername_user_2.json │ │ │ ├── testObject_TurnUsername_user_20.json │ │ │ ├── testObject_TurnUsername_user_3.json │ │ │ ├── testObject_TurnUsername_user_4.json │ │ │ ├── testObject_TurnUsername_user_5.json │ │ │ ├── testObject_TurnUsername_user_6.json │ │ │ ├── testObject_TurnUsername_user_7.json │ │ │ ├── testObject_TurnUsername_user_8.json │ │ │ ├── testObject_TurnUsername_user_9.json │ │ │ ├── testObject_TypingStatus_user_1.json │ │ │ ├── testObject_TypingStatus_user_2.json │ │ │ ├── testObject_UpdateBotPrekeys_user_1.json │ │ │ ├── testObject_UpdateBotPrekeys_user_2.json │ │ │ ├── testObject_UpdateClient_user_1.json │ │ │ ├── testObject_UpdateClient_user_10.json │ │ │ ├── testObject_UpdateClient_user_11.json │ │ │ ├── testObject_UpdateClient_user_12.json │ │ │ ├── testObject_UpdateClient_user_13.json │ │ │ ├── testObject_UpdateClient_user_14.json │ │ │ ├── testObject_UpdateClient_user_15.json │ │ │ ├── testObject_UpdateClient_user_16.json │ │ │ ├── testObject_UpdateClient_user_17.json │ │ │ ├── testObject_UpdateClient_user_18.json │ │ │ ├── testObject_UpdateClient_user_19.json │ │ │ ├── testObject_UpdateClient_user_2.json │ │ │ ├── testObject_UpdateClient_user_20.json │ │ │ ├── testObject_UpdateClient_user_3.json │ │ │ ├── testObject_UpdateClient_user_4.json │ │ │ ├── testObject_UpdateClient_user_5.json │ │ │ ├── testObject_UpdateClient_user_6.json │ │ │ ├── testObject_UpdateClient_user_7.json │ │ │ ├── testObject_UpdateClient_user_8.json │ │ │ ├── testObject_UpdateClient_user_9.json │ │ │ ├── testObject_UpdateProvider_provider_1.json │ │ │ ├── testObject_UpdateProvider_provider_10.json │ │ │ ├── testObject_UpdateProvider_provider_11.json │ │ │ ├── testObject_UpdateProvider_provider_12.json │ │ │ ├── testObject_UpdateProvider_provider_13.json │ │ │ ├── testObject_UpdateProvider_provider_14.json │ │ │ ├── testObject_UpdateProvider_provider_15.json │ │ │ ├── testObject_UpdateProvider_provider_16.json │ │ │ ├── testObject_UpdateProvider_provider_17.json │ │ │ ├── testObject_UpdateProvider_provider_18.json │ │ │ ├── testObject_UpdateProvider_provider_19.json │ │ │ ├── testObject_UpdateProvider_provider_2.json │ │ │ ├── testObject_UpdateProvider_provider_20.json │ │ │ ├── testObject_UpdateProvider_provider_3.json │ │ │ ├── testObject_UpdateProvider_provider_4.json │ │ │ ├── testObject_UpdateProvider_provider_5.json │ │ │ ├── testObject_UpdateProvider_provider_6.json │ │ │ ├── testObject_UpdateProvider_provider_7.json │ │ │ ├── testObject_UpdateProvider_provider_8.json │ │ │ ├── testObject_UpdateProvider_provider_9.json │ │ │ ├── testObject_UpdateServiceConn_provider_1.json │ │ │ ├── testObject_UpdateServiceConn_provider_10.json │ │ │ ├── testObject_UpdateServiceConn_provider_11.json │ │ │ ├── testObject_UpdateServiceConn_provider_12.json │ │ │ ├── testObject_UpdateServiceConn_provider_13.json │ │ │ ├── testObject_UpdateServiceConn_provider_14.json │ │ │ ├── testObject_UpdateServiceConn_provider_15.json │ │ │ ├── testObject_UpdateServiceConn_provider_16.json │ │ │ ├── testObject_UpdateServiceConn_provider_17.json │ │ │ ├── testObject_UpdateServiceConn_provider_18.json │ │ │ ├── testObject_UpdateServiceConn_provider_19.json │ │ │ ├── testObject_UpdateServiceConn_provider_2.json │ │ │ ├── testObject_UpdateServiceConn_provider_20.json │ │ │ ├── testObject_UpdateServiceConn_provider_3.json │ │ │ ├── testObject_UpdateServiceConn_provider_4.json │ │ │ ├── testObject_UpdateServiceConn_provider_5.json │ │ │ ├── testObject_UpdateServiceConn_provider_6.json │ │ │ ├── testObject_UpdateServiceConn_provider_7.json │ │ │ ├── testObject_UpdateServiceConn_provider_8.json │ │ │ ├── testObject_UpdateServiceConn_provider_9.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_1.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_10.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_11.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_12.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_13.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_14.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_15.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_16.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_17.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_18.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_19.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_2.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_20.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_3.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_4.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_5.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_6.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_7.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_8.json │ │ │ ├── testObject_UpdateServiceWhitelist_provider_9.json │ │ │ ├── testObject_UpdateService_provider_1.json │ │ │ ├── testObject_UpdateService_provider_10.json │ │ │ ├── testObject_UpdateService_provider_11.json │ │ │ ├── testObject_UpdateService_provider_12.json │ │ │ ├── testObject_UpdateService_provider_13.json │ │ │ ├── testObject_UpdateService_provider_14.json │ │ │ ├── testObject_UpdateService_provider_15.json │ │ │ ├── testObject_UpdateService_provider_16.json │ │ │ ├── testObject_UpdateService_provider_17.json │ │ │ ├── testObject_UpdateService_provider_18.json │ │ │ ├── testObject_UpdateService_provider_19.json │ │ │ ├── testObject_UpdateService_provider_2.json │ │ │ ├── testObject_UpdateService_provider_20.json │ │ │ ├── testObject_UpdateService_provider_3.json │ │ │ ├── testObject_UpdateService_provider_4.json │ │ │ ├── testObject_UpdateService_provider_5.json │ │ │ ├── testObject_UpdateService_provider_6.json │ │ │ ├── testObject_UpdateService_provider_7.json │ │ │ ├── testObject_UpdateService_provider_8.json │ │ │ ├── testObject_UpdateService_provider_9.json │ │ │ ├── testObject_UserClientMap_20Int_user_1.json │ │ │ ├── testObject_UserClientMap_20Int_user_10.json │ │ │ ├── testObject_UserClientMap_20Int_user_11.json │ │ │ ├── testObject_UserClientMap_20Int_user_12.json │ │ │ ├── testObject_UserClientMap_20Int_user_13.json │ │ │ ├── testObject_UserClientMap_20Int_user_14.json │ │ │ ├── testObject_UserClientMap_20Int_user_15.json │ │ │ ├── testObject_UserClientMap_20Int_user_16.json │ │ │ ├── testObject_UserClientMap_20Int_user_17.json │ │ │ ├── testObject_UserClientMap_20Int_user_18.json │ │ │ ├── testObject_UserClientMap_20Int_user_19.json │ │ │ ├── testObject_UserClientMap_20Int_user_2.json │ │ │ ├── testObject_UserClientMap_20Int_user_20.json │ │ │ ├── testObject_UserClientMap_20Int_user_3.json │ │ │ ├── testObject_UserClientMap_20Int_user_4.json │ │ │ ├── testObject_UserClientMap_20Int_user_5.json │ │ │ ├── testObject_UserClientMap_20Int_user_6.json │ │ │ ├── testObject_UserClientMap_20Int_user_7.json │ │ │ ├── testObject_UserClientMap_20Int_user_8.json │ │ │ ├── testObject_UserClientMap_20Int_user_9.json │ │ │ ├── testObject_UserClientPrekeyMap_1.json │ │ │ ├── testObject_UserClientPrekeyMap_2.json │ │ │ ├── testObject_UserClientPrekeyMap_3.json │ │ │ ├── testObject_UserClientPrekeyMap_4.json │ │ │ ├── testObject_UserClientPrekeyMap_5.json │ │ │ ├── testObject_UserClientPrekeyMap_6.json │ │ │ ├── testObject_UserClientPrekeyMap_7.json │ │ │ ├── testObject_UserClientPrekeyMap_8.json │ │ │ ├── testObject_UserClientPrekeyMap_9.json │ │ │ ├── testObject_UserClients_user_1.json │ │ │ ├── testObject_UserClients_user_10.json │ │ │ ├── testObject_UserClients_user_11.json │ │ │ ├── testObject_UserClients_user_12.json │ │ │ ├── testObject_UserClients_user_13.json │ │ │ ├── testObject_UserClients_user_14.json │ │ │ ├── testObject_UserClients_user_15.json │ │ │ ├── testObject_UserClients_user_16.json │ │ │ ├── testObject_UserClients_user_17.json │ │ │ ├── testObject_UserClients_user_18.json │ │ │ ├── testObject_UserClients_user_19.json │ │ │ ├── testObject_UserClients_user_2.json │ │ │ ├── testObject_UserClients_user_20.json │ │ │ ├── testObject_UserClients_user_3.json │ │ │ ├── testObject_UserClients_user_4.json │ │ │ ├── testObject_UserClients_user_5.json │ │ │ ├── testObject_UserClients_user_6.json │ │ │ ├── testObject_UserClients_user_7.json │ │ │ ├── testObject_UserClients_user_8.json │ │ │ ├── testObject_UserClients_user_9.json │ │ │ ├── testObject_UserConnectionList_user_1.json │ │ │ ├── testObject_UserConnectionList_user_2.json │ │ │ ├── testObject_UserConnection_user_1.json │ │ │ ├── testObject_UserConnection_user_2.json │ │ │ ├── testObject_UserEvent_1.json │ │ │ ├── testObject_UserEvent_10.json │ │ │ ├── testObject_UserEvent_11.json │ │ │ ├── testObject_UserEvent_12.json │ │ │ ├── testObject_UserEvent_13.json │ │ │ ├── testObject_UserEvent_14.json │ │ │ ├── testObject_UserEvent_15.json │ │ │ ├── testObject_UserEvent_16.json │ │ │ ├── testObject_UserEvent_17.json │ │ │ ├── testObject_UserEvent_18.json │ │ │ ├── testObject_UserEvent_2.json │ │ │ ├── testObject_UserEvent_3.json │ │ │ ├── testObject_UserEvent_4.json │ │ │ ├── testObject_UserEvent_5.json │ │ │ ├── testObject_UserEvent_6.json │ │ │ ├── testObject_UserEvent_7.json │ │ │ ├── testObject_UserEvent_8.json │ │ │ ├── testObject_UserEvent_9.json │ │ │ ├── testObject_UserGroupPage_1.json │ │ │ ├── testObject_UserGroupPage_2.json │ │ │ ├── testObject_UserGroupPage_3.json │ │ │ ├── testObject_UserGroupUpdate_1.json │ │ │ ├── testObject_UserGroupUpdate_2.json │ │ │ ├── testObject_UserGroup_1.json │ │ │ ├── testObject_UserGroup_2.json │ │ │ ├── testObject_UserHandleInfo_user_1.json │ │ │ ├── testObject_UserHandleInfo_user_10.json │ │ │ ├── testObject_UserHandleInfo_user_11.json │ │ │ ├── testObject_UserHandleInfo_user_12.json │ │ │ ├── testObject_UserHandleInfo_user_13.json │ │ │ ├── testObject_UserHandleInfo_user_14.json │ │ │ ├── testObject_UserHandleInfo_user_15.json │ │ │ ├── testObject_UserHandleInfo_user_16.json │ │ │ ├── testObject_UserHandleInfo_user_17.json │ │ │ ├── testObject_UserHandleInfo_user_18.json │ │ │ ├── testObject_UserHandleInfo_user_19.json │ │ │ ├── testObject_UserHandleInfo_user_2.json │ │ │ ├── testObject_UserHandleInfo_user_20.json │ │ │ ├── testObject_UserHandleInfo_user_3.json │ │ │ ├── testObject_UserHandleInfo_user_4.json │ │ │ ├── testObject_UserHandleInfo_user_5.json │ │ │ ├── testObject_UserHandleInfo_user_6.json │ │ │ ├── testObject_UserHandleInfo_user_7.json │ │ │ ├── testObject_UserHandleInfo_user_8.json │ │ │ ├── testObject_UserHandleInfo_user_9.json │ │ │ ├── testObject_UserIdList_1.json │ │ │ ├── testObject_UserIdList_2.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_1.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_10.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_11.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_12.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_13.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_14.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_15.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_16.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_17.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_18.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_19.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_2.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_20.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_3.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_4.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_5.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_6.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_7.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_8.json │ │ │ ├── testObject_UserLegalHoldStatusResponse_team_9.json │ │ │ ├── testObject_UserProfile_user_1.json │ │ │ ├── testObject_UserProfile_user_2.json │ │ │ ├── testObject_UserSSOId_user_13.json │ │ │ ├── testObject_UserSSOId_user_2.json │ │ │ ├── testObject_UserSSOId_user_9.json │ │ │ ├── testObject_UserUpdate_user_1.json │ │ │ ├── testObject_UserUpdate_user_2.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_1.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_10.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_11.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_12.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_13.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_14.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_15.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_16.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_17.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_18.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_19.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_2.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_20.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_3.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_4.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_5.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_6.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_7.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_8.json │ │ │ ├── testObject_User_2eProfile_2eAsset_user_9.json │ │ │ ├── testObject_User_user_1.json │ │ │ ├── testObject_User_user_2.json │ │ │ ├── testObject_User_user_3.json │ │ │ ├── testObject_User_user_4.json │ │ │ ├── testObject_User_user_5.json │ │ │ ├── testObject_VerificationAction_user_1 │ │ │ ├── testObject_VerificationAction_user_2 │ │ │ ├── testObject_VerificationAction_user_3 │ │ │ ├── testObject_VerifyDeleteUser_user_1.json │ │ │ ├── testObject_VerifyDeleteUser_user_10.json │ │ │ ├── testObject_VerifyDeleteUser_user_11.json │ │ │ ├── testObject_VerifyDeleteUser_user_12.json │ │ │ ├── testObject_VerifyDeleteUser_user_13.json │ │ │ ├── testObject_VerifyDeleteUser_user_14.json │ │ │ ├── testObject_VerifyDeleteUser_user_15.json │ │ │ ├── testObject_VerifyDeleteUser_user_16.json │ │ │ ├── testObject_VerifyDeleteUser_user_17.json │ │ │ ├── testObject_VerifyDeleteUser_user_18.json │ │ │ ├── testObject_VerifyDeleteUser_user_19.json │ │ │ ├── testObject_VerifyDeleteUser_user_2.json │ │ │ ├── testObject_VerifyDeleteUser_user_20.json │ │ │ ├── testObject_VerifyDeleteUser_user_3.json │ │ │ ├── testObject_VerifyDeleteUser_user_4.json │ │ │ ├── testObject_VerifyDeleteUser_user_5.json │ │ │ ├── testObject_VerifyDeleteUser_user_6.json │ │ │ ├── testObject_VerifyDeleteUser_user_7.json │ │ │ ├── testObject_VerifyDeleteUser_user_8.json │ │ │ ├── testObject_VerifyDeleteUser_user_9.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_1.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_10.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_11.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_12.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_13.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_14.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_15.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_16.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_17.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_18.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_19.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_2.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_20.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_3.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_4.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_5.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_6.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_7.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_8.json │ │ │ ├── testObject_ViewLegalHoldServiceInfo_team_9.json │ │ │ ├── testObject_ViewLegalHoldService_team_1.json │ │ │ ├── testObject_ViewLegalHoldService_team_10.json │ │ │ ├── testObject_ViewLegalHoldService_team_11.json │ │ │ ├── testObject_ViewLegalHoldService_team_12.json │ │ │ ├── testObject_ViewLegalHoldService_team_13.json │ │ │ ├── testObject_ViewLegalHoldService_team_14.json │ │ │ ├── testObject_ViewLegalHoldService_team_15.json │ │ │ ├── testObject_ViewLegalHoldService_team_16.json │ │ │ ├── testObject_ViewLegalHoldService_team_17.json │ │ │ ├── testObject_ViewLegalHoldService_team_18.json │ │ │ ├── testObject_ViewLegalHoldService_team_19.json │ │ │ ├── testObject_ViewLegalHoldService_team_2.json │ │ │ ├── testObject_ViewLegalHoldService_team_20.json │ │ │ ├── testObject_ViewLegalHoldService_team_3.json │ │ │ ├── testObject_ViewLegalHoldService_team_4.json │ │ │ ├── testObject_ViewLegalHoldService_team_5.json │ │ │ ├── testObject_ViewLegalHoldService_team_6.json │ │ │ ├── testObject_ViewLegalHoldService_team_7.json │ │ │ ├── testObject_ViewLegalHoldService_team_8.json │ │ │ ├── testObject_ViewLegalHoldService_team_9.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_1.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_10.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_11.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_12.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_13.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_14.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_15.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_16.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_17.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_18.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_19.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_2.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_20.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_3.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_4.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_5.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_6.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_7.json │ │ │ ├── testObject_Wrapped_20_22some_5fint_22_20Int_user_8.json │ │ │ └── testObject_Wrapped_20_22some_5fint_22_20Int_user_9.json │ │ ├── resources │ │ │ ├── app_message1.mls │ │ │ ├── commit1.mls │ │ │ ├── external_proposal.mls │ │ │ ├── key_package1.mls │ │ │ ├── key_package_ref1 │ │ │ └── welcome1.mls │ │ ├── unit.hs │ │ └── unit │ │ │ └── Test │ │ │ └── Wire │ │ │ └── API │ │ │ ├── Call │ │ │ └── Config.hs │ │ │ ├── Conversation.hs │ │ │ ├── MLS.hs │ │ │ ├── MLS │ │ │ └── Group.hs │ │ │ ├── OAuth.hs │ │ │ ├── RawJson.hs │ │ │ ├── Roundtrip │ │ │ ├── Aeson.hs │ │ │ ├── ByteString.hs │ │ │ ├── CSV.hs │ │ │ ├── HttpApiData.hs │ │ │ └── MLS.hs │ │ │ ├── Routes.hs │ │ │ ├── Routes │ │ │ ├── Version.hs │ │ │ └── Version │ │ │ │ └── Wai.hs │ │ │ ├── Run.hs │ │ │ ├── Swagger.hs │ │ │ ├── Team │ │ │ ├── Export.hs │ │ │ └── Member.hs │ │ │ ├── User.hs │ │ │ └── User │ │ │ ├── Auth.hs │ │ │ ├── RichInfo.hs │ │ │ └── Search.hs │ └── wire-api.cabal ├── wire-message-proto-lens │ ├── .ormolu │ ├── Setup.hs │ ├── default.nix │ └── wire-message-proto-lens.cabal ├── wire-otel │ ├── CHANGELOG.md │ ├── LICENSE │ ├── default.nix │ ├── src │ │ └── Wire │ │ │ ├── OpenTelemetry.hs │ │ │ └── OpenTelemetry │ │ │ └── Servant.hs │ └── wire-otel.cabal ├── wire-subsystems │ ├── LICENSE │ ├── default.nix │ ├── postgres-migrations │ │ ├── 20250423103417-create-user-group-table.sql │ │ ├── 20250423115049-create-user-group-member-table.sql │ │ ├── 20250604084743-user_group_member_delete_on_cascade.sql │ │ ├── 20250709174300-create-collaborators-table.sql │ │ ├── 20250721-create-apps-table.sql │ │ ├── 20250729181800-create-collaborators-uid.sql │ │ ├── 20250908142515-create-conversation-tables.sql │ │ ├── 202509190851023-user_group_conversations_create_table.sql │ │ ├── 20251009140323-user_group_member_index.sql │ │ ├── 20251015124151-create-conversation-migration-status.sql │ │ ├── 20251027090100-mls-out-of-sync.sql │ │ ├── 20251121090452-conversation_team_group_type_lower_name_id_idx.sql │ │ └── 20251127115917-app-fields-category-description-creator.sql │ ├── src │ │ └── Wire │ │ │ ├── AWS.hs │ │ │ ├── ActivationCodeStore.hs │ │ │ ├── ActivationCodeStore │ │ │ └── Cassandra.hs │ │ │ ├── AppStore.hs │ │ │ ├── AppStore │ │ │ └── Postgres.hs │ │ │ ├── AppSubsystem.hs │ │ │ ├── AppSubsystem │ │ │ └── Interpreter.hs │ │ │ ├── AuthenticationSubsystem.hs │ │ │ ├── AuthenticationSubsystem │ │ │ ├── Config.hs │ │ │ ├── Cookie.hs │ │ │ ├── Cookie │ │ │ │ └── Limit.hs │ │ │ ├── Error.hs │ │ │ ├── Interpreter.hs │ │ │ └── ZAuth.hs │ │ │ ├── BackendNotificationQueueAccess.hs │ │ │ ├── BackendNotificationQueueAccess │ │ │ └── RabbitMq.hs │ │ │ ├── BackgroundJobsPublisher.hs │ │ │ ├── BackgroundJobsPublisher │ │ │ └── RabbitMQ.hs │ │ │ ├── BackgroundJobsRunner.hs │ │ │ ├── BackgroundJobsRunner │ │ │ └── Interpreter.hs │ │ │ ├── BlockListStore.hs │ │ │ ├── BlockListStore │ │ │ └── Cassandra.hs │ │ │ ├── BrigAPIAccess.hs │ │ │ ├── BrigAPIAccess │ │ │ └── Rpc.hs │ │ │ ├── ConversationStore.hs │ │ │ ├── ConversationStore │ │ │ ├── Cassandra.hs │ │ │ ├── Cassandra │ │ │ │ ├── Instances.hs │ │ │ │ └── Queries.hs │ │ │ ├── MLS │ │ │ │ └── Types.hs │ │ │ ├── Migration.hs │ │ │ ├── Migration │ │ │ │ ├── Cleanup.hs │ │ │ │ └── Types.hs │ │ │ ├── MigrationLock.hs │ │ │ └── Postgres.hs │ │ │ ├── ConversationSubsystem.hs │ │ │ ├── ConversationSubsystem │ │ │ └── Interpreter.hs │ │ │ ├── DeleteQueue.hs │ │ │ ├── DeleteQueue │ │ │ └── InMemory.hs │ │ │ ├── DomainRegistrationStore.hs │ │ │ ├── DomainRegistrationStore │ │ │ └── Cassandra.hs │ │ │ ├── DomainVerificationChallengeStore.hs │ │ │ ├── DomainVerificationChallengeStore │ │ │ └── Cassandra.hs │ │ │ ├── EmailSending.hs │ │ │ ├── EmailSending │ │ │ ├── SES.hs │ │ │ └── SMTP.hs │ │ │ ├── EmailSubsystem.hs │ │ │ ├── EmailSubsystem │ │ │ ├── Interpreter.hs │ │ │ └── Template.hs │ │ │ ├── EnterpriseLoginSubsystem.hs │ │ │ ├── EnterpriseLoginSubsystem │ │ │ ├── Error.hs │ │ │ ├── Interpreter.hs │ │ │ └── Null.hs │ │ │ ├── Error.hs │ │ │ ├── Events.hs │ │ │ ├── ExternalAccess.hs │ │ │ ├── ExternalAccess │ │ │ └── External.hs │ │ │ ├── FederationAPIAccess.hs │ │ │ ├── FederationAPIAccess │ │ │ └── Interpreter.hs │ │ │ ├── FederationConfigStore.hs │ │ │ ├── FederationConfigStore │ │ │ └── Cassandra.hs │ │ │ ├── FireAndForget.hs │ │ │ ├── GalleyAPIAccess.hs │ │ │ ├── GalleyAPIAccess │ │ │ └── Rpc.hs │ │ │ ├── GundeckAPIAccess.hs │ │ │ ├── HashPassword.hs │ │ │ ├── HashPassword │ │ │ ├── Argon2id.hs │ │ │ ├── Interpreter.hs │ │ │ └── Scrypt.hs │ │ │ ├── IndexedUserStore.hs │ │ │ ├── IndexedUserStore │ │ │ ├── Bulk.hs │ │ │ ├── Bulk │ │ │ │ └── ElasticSearch.hs │ │ │ ├── ElasticSearch.hs │ │ │ ├── MigrationStore.hs │ │ │ └── MigrationStore │ │ │ │ └── ElasticSearch.hs │ │ │ ├── InternalEvent.hs │ │ │ ├── InvitationStore.hs │ │ │ ├── InvitationStore │ │ │ └── Cassandra.hs │ │ │ ├── LegalHoldStore.hs │ │ │ ├── LegalHoldStore │ │ │ ├── Cassandra.hs │ │ │ ├── Cassandra │ │ │ │ └── Queries.hs │ │ │ └── Env.hs │ │ │ ├── ListItems.hs │ │ │ ├── NotificationSubsystem.hs │ │ │ ├── NotificationSubsystem │ │ │ └── Interpreter.hs │ │ │ ├── PaginationState.hs │ │ │ ├── ParseException.hs │ │ │ ├── PasswordResetCodeStore.hs │ │ │ ├── PasswordResetCodeStore │ │ │ └── Cassandra.hs │ │ │ ├── PasswordStore.hs │ │ │ ├── PasswordStore │ │ │ └── Cassandra.hs │ │ │ ├── Postgres.hs │ │ │ ├── PostgresMigrations.hs │ │ │ ├── PropertyStore.hs │ │ │ ├── PropertyStore │ │ │ └── Cassandra.hs │ │ │ ├── PropertySubsystem.hs │ │ │ ├── PropertySubsystem │ │ │ └── Interpreter.hs │ │ │ ├── ProposalStore.hs │ │ │ ├── ProposalStore │ │ │ └── Cassandra.hs │ │ │ ├── RateLimit.hs │ │ │ ├── RateLimit │ │ │ └── Interpreter.hs │ │ │ ├── Rpc.hs │ │ │ ├── ScimSubsystem.hs │ │ │ ├── ScimSubsystem │ │ │ ├── Error.hs │ │ │ └── Interpreter.hs │ │ │ ├── ServiceStore.hs │ │ │ ├── ServiceStore │ │ │ └── Cassandra.hs │ │ │ ├── SessionStore.hs │ │ │ ├── SessionStore │ │ │ └── Cassandra.hs │ │ │ ├── SparAPIAccess.hs │ │ │ ├── SparAPIAccess │ │ │ └── Rpc.hs │ │ │ ├── StoredConversation.hs │ │ │ ├── StoredUser.hs │ │ │ ├── TeamCollaboratorsStore.hs │ │ │ ├── TeamCollaboratorsStore │ │ │ └── Postgres.hs │ │ │ ├── TeamCollaboratorsSubsystem.hs │ │ │ ├── TeamCollaboratorsSubsystem │ │ │ └── Interpreter.hs │ │ │ ├── TeamInvitationSubsystem.hs │ │ │ ├── TeamInvitationSubsystem │ │ │ ├── Error.hs │ │ │ └── Interpreter.hs │ │ │ ├── TeamJournal.hs │ │ │ ├── TeamJournal │ │ │ └── Aws.hs │ │ │ ├── TeamStore.hs │ │ │ ├── TeamStore │ │ │ ├── Cassandra.hs │ │ │ └── Cassandra │ │ │ │ └── Queries.hs │ │ │ ├── TeamSubsystem.hs │ │ │ ├── TeamSubsystem │ │ │ ├── GalleyAPI.hs │ │ │ ├── Interpreter.hs │ │ │ └── Util.hs │ │ │ ├── UserGroupStore.hs │ │ │ ├── UserGroupStore │ │ │ └── Postgres.hs │ │ │ ├── UserGroupSubsystem.hs │ │ │ ├── UserGroupSubsystem │ │ │ └── Interpreter.hs │ │ │ ├── UserKeyStore.hs │ │ │ ├── UserKeyStore │ │ │ └── Cassandra.hs │ │ │ ├── UserList.hs │ │ │ ├── UserSearch │ │ │ ├── Metrics.hs │ │ │ ├── Migration.hs │ │ │ └── Types.hs │ │ │ ├── UserStore.hs │ │ │ ├── UserStore │ │ │ ├── Cassandra.hs │ │ │ ├── IndexUser.hs │ │ │ └── Unique.hs │ │ │ ├── UserSubsystem.hs │ │ │ ├── UserSubsystem │ │ │ ├── Error.hs │ │ │ ├── HandleBlacklist.hs │ │ │ ├── Interpreter.hs │ │ │ └── UserSubsystemConfig.hs │ │ │ ├── Util.hs │ │ │ ├── VerificationCode.hs │ │ │ ├── VerificationCodeGen.hs │ │ │ ├── VerificationCodeStore.hs │ │ │ ├── VerificationCodeStore │ │ │ └── Cassandra.hs │ │ │ ├── VerificationCodeSubsystem.hs │ │ │ └── VerificationCodeSubsystem │ │ │ └── Interpreter.hs │ ├── templates │ │ ├── ar │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ └── password-reset.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── de │ │ │ ├── provider │ │ │ │ └── email │ │ │ │ │ ├── activation-subject.txt │ │ │ │ │ ├── activation.html │ │ │ │ │ ├── activation.txt │ │ │ │ │ ├── approval-confirm-subject.txt │ │ │ │ │ ├── approval-confirm.html │ │ │ │ │ ├── approval-confirm.txt │ │ │ │ │ ├── approval-request-subject.txt │ │ │ │ │ ├── approval-request.html │ │ │ │ │ ├── approval-request.txt │ │ │ │ │ ├── password-reset-subject.txt │ │ │ │ │ ├── password-reset.html │ │ │ │ │ ├── password-reset.txt │ │ │ │ │ ├── update-subject.txt │ │ │ │ │ ├── update.html │ │ │ │ │ └── update.txt │ │ │ ├── team │ │ │ │ └── email │ │ │ │ │ ├── invitation-subject.txt │ │ │ │ │ ├── invitation.html │ │ │ │ │ ├── invitation.txt │ │ │ │ │ ├── migration-subject.txt │ │ │ │ │ ├── migration.html │ │ │ │ │ ├── migration.txt │ │ │ │ │ ├── new-creator-welcome-subject.txt │ │ │ │ │ ├── new-creator-welcome.html │ │ │ │ │ ├── new-creator-welcome.txt │ │ │ │ │ ├── new-member-welcome-subject.txt │ │ │ │ │ ├── new-member-welcome.html │ │ │ │ │ ├── new-member-welcome.txt │ │ │ │ │ ├── new-team-owner-welcome-subject.txt │ │ │ │ │ ├── new-team-owner-welcome.html │ │ │ │ │ └── new-team-owner-welcome.txt │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification-delete-team-subject.txt │ │ │ │ ├── verification-delete-team.html │ │ │ │ ├── verification-delete-team.txt │ │ │ │ ├── verification-login-subject.txt │ │ │ │ ├── verification-login.html │ │ │ │ ├── verification-login.txt │ │ │ │ ├── verification-scim-token-subject.txt │ │ │ │ ├── verification-scim-token.html │ │ │ │ ├── verification-scim-token.txt │ │ │ │ ├── verification-subject.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── en │ │ │ ├── provider │ │ │ │ └── email │ │ │ │ │ ├── activation-subject.txt │ │ │ │ │ ├── activation.html │ │ │ │ │ ├── activation.txt │ │ │ │ │ ├── approval-confirm-subject.txt │ │ │ │ │ ├── approval-confirm.html │ │ │ │ │ ├── approval-confirm.txt │ │ │ │ │ ├── approval-request-subject.txt │ │ │ │ │ ├── approval-request.html │ │ │ │ │ ├── approval-request.txt │ │ │ │ │ ├── password-reset-subject.txt │ │ │ │ │ ├── password-reset.html │ │ │ │ │ ├── password-reset.txt │ │ │ │ │ ├── sender.txt │ │ │ │ │ ├── update-subject.txt │ │ │ │ │ ├── update.html │ │ │ │ │ └── update.txt │ │ │ ├── team │ │ │ │ └── email │ │ │ │ │ ├── invitation-subject.txt │ │ │ │ │ ├── invitation.html │ │ │ │ │ ├── invitation.txt │ │ │ │ │ ├── migration-subject.txt │ │ │ │ │ ├── migration.html │ │ │ │ │ ├── migration.txt │ │ │ │ │ ├── new-creator-welcome-subject.txt │ │ │ │ │ ├── new-creator-welcome.html │ │ │ │ │ ├── new-creator-welcome.txt │ │ │ │ │ ├── new-member-welcome-subject.txt │ │ │ │ │ ├── new-member-welcome.html │ │ │ │ │ ├── new-member-welcome.txt │ │ │ │ │ ├── new-team-owner-welcome-subject.txt │ │ │ │ │ ├── new-team-owner-welcome.html │ │ │ │ │ ├── new-team-owner-welcome.txt │ │ │ │ │ └── sender.txt │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── sender.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification-delete-team-subject.txt │ │ │ │ ├── verification-delete-team.html │ │ │ │ ├── verification-delete-team.txt │ │ │ │ ├── verification-login-subject.txt │ │ │ │ ├── verification-login.html │ │ │ │ ├── verification-login.txt │ │ │ │ ├── verification-scim-token-subject.txt │ │ │ │ ├── verification-scim-token.html │ │ │ │ ├── verification-scim-token.txt │ │ │ │ ├── verification-subject.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── es-ES │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ └── sender.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── et │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── sender.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification-delete-team-subject.txt │ │ │ │ ├── verification-delete-team.html │ │ │ │ ├── verification-delete-team.txt │ │ │ │ ├── verification-login-subject.txt │ │ │ │ ├── verification-login.html │ │ │ │ ├── verification-login.txt │ │ │ │ ├── verification-scim-token-subject.txt │ │ │ │ ├── verification-scim-token.html │ │ │ │ ├── verification-scim-token.txt │ │ │ │ ├── verification-subject.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── fa │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ └── sender.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── fr │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── sender.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification-delete-team-subject.txt │ │ │ │ ├── verification-delete-team.html │ │ │ │ ├── verification-delete-team.txt │ │ │ │ ├── verification-login-subject.txt │ │ │ │ ├── verification-login.html │ │ │ │ ├── verification-login.txt │ │ │ │ ├── verification-scim-token-subject.txt │ │ │ │ ├── verification-scim-token.html │ │ │ │ ├── verification-scim-token.txt │ │ │ │ ├── verification-subject.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── index.html │ │ ├── it │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── sender.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification-delete-team-subject.txt │ │ │ │ ├── verification-delete-team.html │ │ │ │ ├── verification-delete-team.txt │ │ │ │ ├── verification-login-subject.txt │ │ │ │ ├── verification-login.html │ │ │ │ ├── verification-login.txt │ │ │ │ ├── verification-scim-token-subject.txt │ │ │ │ ├── verification-scim-token.html │ │ │ │ ├── verification-scim-token.txt │ │ │ │ ├── verification-subject.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── ja │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification-delete-team-subject.txt │ │ │ │ ├── verification-delete-team.html │ │ │ │ ├── verification-delete-team.txt │ │ │ │ ├── verification-login-subject.txt │ │ │ │ ├── verification-login.html │ │ │ │ ├── verification-login.txt │ │ │ │ ├── verification-scim-token-subject.txt │ │ │ │ ├── verification-scim-token.html │ │ │ │ ├── verification-scim-token.txt │ │ │ │ ├── verification-subject.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── lt │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification-delete-team-subject.txt │ │ │ │ ├── verification-delete-team.html │ │ │ │ ├── verification-delete-team.txt │ │ │ │ ├── verification-login-subject.txt │ │ │ │ ├── verification-login.html │ │ │ │ ├── verification-login.txt │ │ │ │ ├── verification-scim-token-subject.txt │ │ │ │ ├── verification-scim-token.html │ │ │ │ ├── verification-scim-token.txt │ │ │ │ ├── verification-subject.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── pl │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification-delete-team-subject.txt │ │ │ │ ├── verification-delete-team.html │ │ │ │ ├── verification-delete-team.txt │ │ │ │ ├── verification-login-subject.txt │ │ │ │ ├── verification-login.html │ │ │ │ ├── verification-login.txt │ │ │ │ ├── verification-scim-token-subject.txt │ │ │ │ ├── verification-scim-token.html │ │ │ │ ├── verification-scim-token.txt │ │ │ │ ├── verification-subject.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── pt-BR │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ └── sender.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── pt │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification-delete-team-subject.txt │ │ │ │ ├── verification-delete-team.html │ │ │ │ ├── verification-delete-team.txt │ │ │ │ ├── verification-login-subject.txt │ │ │ │ ├── verification-login.html │ │ │ │ ├── verification-login.txt │ │ │ │ ├── verification-scim-token-subject.txt │ │ │ │ ├── verification-scim-token.html │ │ │ │ ├── verification-scim-token.txt │ │ │ │ ├── verification-subject.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── ru │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── sender.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification-delete-team-subject.txt │ │ │ │ ├── verification-delete-team.html │ │ │ │ ├── verification-delete-team.txt │ │ │ │ ├── verification-login-subject.txt │ │ │ │ ├── verification-login.html │ │ │ │ ├── verification-login.txt │ │ │ │ ├── verification-scim-token-subject.txt │ │ │ │ ├── verification-scim-token.html │ │ │ │ ├── verification-scim-token.txt │ │ │ │ ├── verification-subject.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── si │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification-delete-team-subject.txt │ │ │ │ ├── verification-delete-team.html │ │ │ │ ├── verification-delete-team.txt │ │ │ │ ├── verification-login-subject.txt │ │ │ │ ├── verification-login.html │ │ │ │ ├── verification-login.txt │ │ │ │ ├── verification-scim-token-subject.txt │ │ │ │ ├── verification-scim-token.html │ │ │ │ ├── verification-scim-token.txt │ │ │ │ ├── verification-subject.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── sv-SE │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── sender.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── tr │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── sender.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification-delete-team-subject.txt │ │ │ │ ├── verification-delete-team.html │ │ │ │ ├── verification-delete-team.txt │ │ │ │ ├── verification-login-subject.txt │ │ │ │ ├── verification-login.html │ │ │ │ ├── verification-login.txt │ │ │ │ ├── verification-scim-token-subject.txt │ │ │ │ ├── verification-scim-token.html │ │ │ │ ├── verification-scim-token.txt │ │ │ │ ├── verification-subject.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── uk │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── sender.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ ├── version │ │ ├── vi │ │ │ └── user │ │ │ │ ├── call │ │ │ │ ├── activation.txt │ │ │ │ └── login.txt │ │ │ │ ├── email │ │ │ │ ├── activation-subject.txt │ │ │ │ ├── activation.html │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion-subject.txt │ │ │ │ ├── deletion.html │ │ │ │ ├── deletion.txt │ │ │ │ ├── new-client-subject.txt │ │ │ │ ├── new-client.html │ │ │ │ ├── new-client.txt │ │ │ │ ├── password-reset-subject.txt │ │ │ │ ├── password-reset.html │ │ │ │ ├── password-reset.txt │ │ │ │ ├── team-activation-subject.txt │ │ │ │ ├── team-activation.html │ │ │ │ ├── team-activation.txt │ │ │ │ ├── update-subject.txt │ │ │ │ ├── update.html │ │ │ │ ├── update.txt │ │ │ │ ├── verification-delete-team-subject.txt │ │ │ │ ├── verification-delete-team.html │ │ │ │ ├── verification-delete-team.txt │ │ │ │ ├── verification-login-subject.txt │ │ │ │ ├── verification-login.html │ │ │ │ ├── verification-login.txt │ │ │ │ ├── verification-scim-token-subject.txt │ │ │ │ ├── verification-scim-token.html │ │ │ │ ├── verification-scim-token.txt │ │ │ │ ├── verification-subject.txt │ │ │ │ ├── verification.html │ │ │ │ └── verification.txt │ │ │ │ └── sms │ │ │ │ ├── activation.txt │ │ │ │ ├── deletion.txt │ │ │ │ ├── login.txt │ │ │ │ └── password-reset.txt │ │ └── zh-TW │ │ │ └── user │ │ │ ├── call │ │ │ ├── activation.txt │ │ │ └── login.txt │ │ │ ├── email │ │ │ └── sender.txt │ │ │ └── sms │ │ │ ├── activation.txt │ │ │ ├── deletion.txt │ │ │ ├── login.txt │ │ │ └── password-reset.txt │ ├── test │ │ ├── Main.hs │ │ ├── resources │ │ │ ├── cert.pem │ │ │ ├── elasticsearch-ca.pem │ │ │ ├── elasticsearch-credentials.yaml │ │ │ ├── jwt │ │ │ │ ├── ecdsa_secp256r1_sha256_key.pem │ │ │ │ └── ed25519_key.pem │ │ │ ├── key.pem │ │ │ ├── oauth │ │ │ │ └── ed25519.jwk │ │ │ ├── pubkey.pem │ │ │ ├── rabbitmq-ca.pem │ │ │ ├── stomp-credentials.yaml │ │ │ ├── turn │ │ │ │ ├── secret.txt │ │ │ │ ├── servers-v2.txt │ │ │ │ └── servers.txt │ │ │ ├── twilio-credentials.yaml │ │ │ └── zauth │ │ │ │ ├── privkeys.txt │ │ │ │ └── pubkeys.txt │ │ └── unit │ │ │ ├── Spec.hs │ │ │ └── Wire │ │ │ ├── ActivationCodeStore │ │ │ └── InterpreterSpec.hs │ │ │ ├── AuthenticationSubsystem │ │ │ └── InterpreterSpec.hs │ │ │ ├── BrigAPIAccess │ │ │ └── RpcSpec.hs │ │ │ ├── EnterpriseLoginSubsystem │ │ │ └── InterpreterSpec.hs │ │ │ ├── HashPassword │ │ │ └── InterpreterSpec.hs │ │ │ ├── MiniBackend.hs │ │ │ ├── MockInterpreters.hs │ │ │ ├── MockInterpreters │ │ │ ├── ActivationCodeStore.hs │ │ │ ├── AppStore.hs │ │ │ ├── BackgroundJobPublisher.hs │ │ │ ├── BlockListStore.hs │ │ │ ├── CryptoSign.hs │ │ │ ├── DomainRegistrationStore.hs │ │ │ ├── DomainVerificationChallengeStore.hs │ │ │ ├── EmailSending.hs │ │ │ ├── EmailSubsystem.hs │ │ │ ├── EnterpriseLoginSubsystem.hs │ │ │ ├── Error.hs │ │ │ ├── Events.hs │ │ │ ├── FederationConfigStore.hs │ │ │ ├── GalleyAPIAccess.hs │ │ │ ├── HashPassword.hs │ │ │ ├── IndexedUserStore.hs │ │ │ ├── InvitationStore.hs │ │ │ ├── NotificationSubsystem.hs │ │ │ ├── Now.hs │ │ │ ├── PasswordResetCodeStore.hs │ │ │ ├── PasswordStore.hs │ │ │ ├── PropertyStore.hs │ │ │ ├── Random.hs │ │ │ ├── RateLimit.hs │ │ │ ├── SessionStore.hs │ │ │ ├── SparAPIAccess.hs │ │ │ ├── TeamCollaboratorsStore.hs │ │ │ ├── TinyLog.hs │ │ │ ├── UserGroupStore.hs │ │ │ ├── UserKeyStore.hs │ │ │ ├── UserStore.hs │ │ │ ├── UserSubsystem.hs │ │ │ └── VerificationCodeStore.hs │ │ │ ├── NotificationSubsystem │ │ │ └── InterpreterSpec.hs │ │ │ ├── PropertySubsystem │ │ │ └── InterpreterSpec.hs │ │ │ ├── RateLimited │ │ │ └── InterpreterSpec.hs │ │ │ ├── ScimSubsystem │ │ │ └── InterpreterSpec.hs │ │ │ ├── TeamCollaboratorsSubsystem │ │ │ └── InterpreterSpec.hs │ │ │ ├── TeamInvitationSubsystem │ │ │ └── InterpreterSpec.hs │ │ │ ├── UserGroupSubsystem │ │ │ └── InterpreterSpec.hs │ │ │ ├── UserSearch │ │ │ └── TypesSpec.hs │ │ │ ├── UserStoreSpec.hs │ │ │ ├── UserSubsystem │ │ │ └── InterpreterSpec.hs │ │ │ ├── Util.hs │ │ │ └── VerificationCodeSubsystem │ │ │ └── InterpreterSpec.hs │ └── wire-subsystems.cabal └── zauth │ ├── .ormolu │ ├── LICENSE │ ├── README.md │ ├── default.nix │ ├── main │ └── Main.hs │ ├── src │ └── Data │ │ └── ZAuth │ │ ├── Creation.hs │ │ ├── CryptoSign.hs │ │ ├── Token.hs │ │ └── Validation.hs │ ├── test │ ├── Arbitraries.hs │ ├── Unit.hs │ └── ZAuth.hs │ └── zauth.cabal ├── nix ├── default.nix ├── haskell-pins.nix ├── local-haskell-packages.nix ├── manual-overrides.nix ├── nginz.nix ├── overlay-docs.nix ├── overlay.nix ├── pkgs │ ├── cryptobox │ │ ├── .gitignore │ │ ├── Cargo.nix │ │ ├── README.md │ │ ├── crate2nix-sources.nix │ │ ├── crate2nix.json │ │ └── default.nix │ ├── mls-test-cli │ │ └── default.nix │ ├── python-docs │ │ ├── rst2pdf.nix │ │ ├── sphinx-multiversion.nix │ │ ├── sphinx_reredirects.nix │ │ ├── sphinxcontrib-kroki.nix │ │ └── svg2rlg.nix │ ├── rabbitmqadmin │ │ └── default.nix │ ├── rusty_jwt_tools_ffi │ │ └── default.nix │ ├── sbomqs │ │ └── default.nix │ └── zauth │ │ └── default.nix ├── sources.json ├── sources.nix └── wire-server.nix ├── postgres-schema.sql ├── renovate.json ├── services ├── background-worker │ ├── LICENSE │ ├── background-worker.cabal │ ├── background-worker.integration.yaml │ ├── default.nix │ ├── exec │ │ └── Main.hs │ ├── fill_rabbit.sh │ ├── shutdown_test.sh │ ├── src │ │ └── Wire │ │ │ ├── BackendNotificationPusher.hs │ │ │ ├── BackgroundWorker.hs │ │ │ ├── BackgroundWorker │ │ │ ├── Env.hs │ │ │ ├── Health.hs │ │ │ ├── Jobs │ │ │ │ ├── Consumer.hs │ │ │ │ └── Registry.hs │ │ │ ├── Options.hs │ │ │ └── Util.hs │ │ │ ├── DeadUserNotificationWatcher.hs │ │ │ └── MigrateConversations.hs │ └── test │ │ ├── Main.hs │ │ ├── Test │ │ └── Wire │ │ │ ├── BackendNotificationPusherSpec.hs │ │ │ └── Util.hs │ │ └── resources │ │ └── rabbitmq-ca.pem ├── brig │ ├── .env │ ├── .ormolu │ ├── LICENSE │ ├── README.md │ ├── brig.cabal │ ├── brig.integration.yaml │ ├── deb │ │ └── opt │ │ │ └── brig │ │ │ ├── bin │ │ │ └── fetch.py │ │ │ └── template-version │ ├── default.nix │ ├── dist │ ├── docs │ │ ├── swagger-v0.json │ │ ├── swagger-v1.json │ │ ├── swagger-v10.json │ │ ├── swagger-v11.json │ │ ├── swagger-v12.json │ │ ├── swagger-v13.json │ │ ├── swagger-v2.json │ │ ├── swagger-v3.json │ │ ├── swagger-v4.json │ │ ├── swagger-v5.json │ │ ├── swagger-v6.json │ │ ├── swagger-v7.json │ │ ├── swagger-v8.json │ │ ├── swagger-v9.json │ │ └── swagger.md │ ├── exec │ │ └── Main.hs │ ├── federation-tests.sh │ ├── index │ │ └── src │ │ │ └── Main.hs │ ├── schema │ │ └── Main.hs │ ├── src │ │ └── Brig │ │ │ ├── API │ │ │ ├── Auth.hs │ │ │ ├── Client.hs │ │ │ ├── Connection.hs │ │ │ ├── Connection │ │ │ │ ├── Remote.hs │ │ │ │ └── Util.hs │ │ │ ├── Error.hs │ │ │ ├── Federation.hs │ │ │ ├── Handler.hs │ │ │ ├── Internal.hs │ │ │ ├── MLS │ │ │ │ ├── CipherSuite.hs │ │ │ │ ├── KeyPackages.hs │ │ │ │ ├── KeyPackages │ │ │ │ │ └── Validation.hs │ │ │ │ └── Util.hs │ │ │ ├── OAuth.hs │ │ │ ├── Public.hs │ │ │ ├── Public │ │ │ │ └── Swagger.hs │ │ │ ├── Types.hs │ │ │ ├── User.hs │ │ │ └── Util.hs │ │ │ ├── AWS.hs │ │ │ ├── AWS │ │ │ ├── SesNotification.hs │ │ │ └── Types.hs │ │ │ ├── App.hs │ │ │ ├── Budget.hs │ │ │ ├── Calling.hs │ │ │ ├── Calling │ │ │ ├── API.hs │ │ │ └── Internal.hs │ │ │ ├── CanonicalInterpreter.hs │ │ │ ├── Data │ │ │ ├── Activation.hs │ │ │ ├── Client.hs │ │ │ ├── Connection.hs │ │ │ ├── MLS │ │ │ │ └── KeyPackage.hs │ │ │ ├── Nonce.hs │ │ │ ├── Types.hs │ │ │ └── User.hs │ │ │ ├── DeleteQueue │ │ │ └── Interpreter.hs │ │ │ ├── Effects │ │ │ ├── ConnectionStore.hs │ │ │ ├── ConnectionStore │ │ │ │ └── Cassandra.hs │ │ │ ├── JwtTools.hs │ │ │ ├── PublicKeyBundle.hs │ │ │ ├── SFT.hs │ │ │ ├── UserPendingActivationStore.hs │ │ │ └── UserPendingActivationStore │ │ │ │ └── Cassandra.hs │ │ │ ├── Federation │ │ │ └── Client.hs │ │ │ ├── IO │ │ │ ├── Intra.hs │ │ │ ├── Journal.hs │ │ │ └── Logging.hs │ │ │ ├── Index │ │ │ ├── Eval.hs │ │ │ ├── Options.hs │ │ │ └── Types.hs │ │ │ ├── InternalEvent │ │ │ ├── Process.hs │ │ │ └── Types.hs │ │ │ ├── Main.hs │ │ │ ├── Options.hs │ │ │ ├── Provider │ │ │ ├── API.hs │ │ │ ├── DB.hs │ │ │ ├── Email.hs │ │ │ ├── RPC.hs │ │ │ └── Template.hs │ │ │ ├── Queue.hs │ │ │ ├── Queue │ │ │ ├── Stomp.hs │ │ │ └── Types.hs │ │ │ ├── RPC.hs │ │ │ ├── Run.hs │ │ │ ├── Schema │ │ │ ├── Run.hs │ │ │ ├── V43.hs │ │ │ ├── V44.hs │ │ │ ├── V45.hs │ │ │ ├── V46.hs │ │ │ ├── V47.hs │ │ │ ├── V48.hs │ │ │ ├── V49.hs │ │ │ ├── V50.hs │ │ │ ├── V51.hs │ │ │ ├── V52.hs │ │ │ ├── V53.hs │ │ │ ├── V54.hs │ │ │ ├── V55.hs │ │ │ ├── V56.hs │ │ │ ├── V57.hs │ │ │ ├── V58.hs │ │ │ ├── V59.hs │ │ │ ├── V60_AddFederationIdMapping.hs │ │ │ ├── V61_team_invitation_email.hs │ │ │ ├── V62_RemoveFederationIdMapping.hs │ │ │ ├── V63_AddUsersPendingActivation.hs │ │ │ ├── V64_ClientCapabilities.hs │ │ │ ├── V65_FederatedConnections.hs │ │ │ ├── V66_PersonalFeatureConfCallInit.hs │ │ │ ├── V67_MLSKeyPackages.hs │ │ │ ├── V68_AddMLSPublicKeys.hs │ │ │ ├── V69_MLSKeyPackageRefMapping.hs │ │ │ ├── V70_UserEmailUnvalidated.hs │ │ │ ├── V71_AddTableVCodesThrottle.hs │ │ │ ├── V72_AddNonceTable.hs │ │ │ ├── V73_ReplaceNonceTable.hs │ │ │ ├── V74_AddOAuthTables.hs │ │ │ ├── V75_AddOAuthCodeChallenge.hs │ │ │ ├── V76_AddSupportedProtocols.hs │ │ │ ├── V77_FederationRemotes.hs │ │ │ ├── V78_ClientLastActive.hs │ │ │ ├── V79_ConnectionRemoteIndex.hs │ │ │ ├── V80_KeyPackageCiphersuite.hs │ │ │ ├── V81_AddFederationRemoteTeams.hs │ │ │ ├── V82_DropPhoneColumn.hs │ │ │ ├── V83_AddTextStatus.hs │ │ │ ├── V84_DropTeamInvitationPhone.hs │ │ │ ├── V85_DropUserKeysHashed.hs │ │ │ ├── V86_WriteTimeBumper.hs │ │ │ ├── V87_DropInvitationTables.hs │ │ │ ├── V88_DomainRegistrationTable.hs │ │ │ ├── V89_UpdateDomainRegistrationSchema.hs │ │ │ ├── V90_DomainRegistrationTeamIndex.hs │ │ │ └── V91_UpdateDomainRegistrationSchema_AddWebappUrl.hs │ │ │ ├── Team │ │ │ ├── API.hs │ │ │ ├── Email.hs │ │ │ └── Template.hs │ │ │ ├── Template.hs │ │ │ ├── User │ │ │ ├── API │ │ │ │ └── Handle.hs │ │ │ ├── Auth.hs │ │ │ ├── Auth │ │ │ │ └── Cookie.hs │ │ │ ├── EJPD.hs │ │ │ ├── Search │ │ │ │ ├── Index.hs │ │ │ │ └── SearchIndex.hs │ │ │ └── Template.hs │ │ │ └── Version.hs │ └── test │ │ ├── integration.hs │ │ ├── integration │ │ ├── API │ │ │ ├── Calling.hs │ │ │ ├── Federation.hs │ │ │ ├── Internal.hs │ │ │ ├── MLS │ │ │ │ └── Util.hs │ │ │ ├── Metrics.hs │ │ │ ├── OAuth.hs │ │ │ ├── Provider.hs │ │ │ ├── RichInfo │ │ │ │ └── Util.hs │ │ │ ├── Search.hs │ │ │ ├── Search │ │ │ │ └── Util.hs │ │ │ ├── Settings.hs │ │ │ ├── SystemSettings.hs │ │ │ ├── Team.hs │ │ │ ├── Team │ │ │ │ └── Util.hs │ │ │ ├── TeamUserSearch.hs │ │ │ ├── User.hs │ │ │ ├── User │ │ │ │ ├── Account.hs │ │ │ │ ├── Auth.hs │ │ │ │ ├── Client.hs │ │ │ │ ├── Connection.hs │ │ │ │ ├── Handles.hs │ │ │ │ ├── RichInfo.hs │ │ │ │ └── Util.hs │ │ │ └── UserPendingActivation.hs │ │ ├── Federation │ │ │ ├── End2end.hs │ │ │ └── Util.hs │ │ ├── Index │ │ │ └── Create.hs │ │ ├── Run.hs │ │ ├── SMTP.hs │ │ ├── Util.hs │ │ └── Util │ │ │ └── AWS.hs │ │ ├── resources │ │ └── internal-notification.json │ │ ├── unit.hs │ │ └── unit │ │ ├── Run.hs │ │ └── Test │ │ └── Brig │ │ ├── Calling.hs │ │ ├── Calling │ │ └── Internal.hs │ │ ├── Effects │ │ └── Delay.hs │ │ ├── InternalNotification.hs │ │ └── MLS.hs ├── cannon │ ├── .env │ ├── .ormolu │ ├── LICENSE │ ├── README.md │ ├── bench │ │ ├── Bench.hs │ │ └── Main.hs │ ├── cannon.cabal │ ├── cannon.integration.yaml │ ├── cannon2.integration.yaml │ ├── default.nix │ ├── dist │ ├── exec │ │ └── Main.hs │ ├── src │ │ └── Cannon │ │ │ ├── API │ │ │ ├── Internal.hs │ │ │ └── Public.hs │ │ │ ├── App.hs │ │ │ ├── Dict.hs │ │ │ ├── Options.hs │ │ │ ├── RabbitMq.hs │ │ │ ├── RabbitMqConsumerApp.hs │ │ │ ├── Run.hs │ │ │ ├── Types.hs │ │ │ └── WS.hs │ └── test │ │ ├── Main.hs │ │ ├── Test │ │ └── Cannon │ │ │ └── Dict.hs │ │ └── resources │ │ └── rabbitmq-ca.pem ├── cargohold │ ├── .env │ ├── .ormolu │ ├── LICENSE │ ├── README.md │ ├── cargohold.cabal │ ├── cargohold.integration.yaml │ ├── deb-it │ │ ├── DEBIAN │ │ │ └── control │ │ └── opt │ │ │ └── cargohold-integration │ │ │ └── bin │ │ │ └── cargohold-integration │ ├── default.nix │ ├── dist │ ├── exec │ │ └── Main.hs │ ├── src │ │ └── CargoHold │ │ │ ├── API │ │ │ ├── AuditLog.hs │ │ │ ├── Error.hs │ │ │ ├── Federation.hs │ │ │ ├── Legacy.hs │ │ │ ├── Public.hs │ │ │ ├── Util.hs │ │ │ └── V3.hs │ │ │ ├── AWS.hs │ │ │ ├── App.hs │ │ │ ├── CloudFront.hs │ │ │ ├── Federation.hs │ │ │ ├── Metrics.hs │ │ │ ├── Options.hs │ │ │ ├── Run.hs │ │ │ ├── S3.hs │ │ │ └── Util.hs │ └── test │ │ ├── integration │ │ ├── API.hs │ │ ├── API │ │ │ └── Util.hs │ │ ├── App.hs │ │ ├── Main.hs │ │ └── TestSetup.hs │ │ └── unit │ │ ├── Main.hs │ │ └── Test │ │ └── CargoHold │ │ └── API │ │ ├── AuditLogTest.hs │ │ └── LogJSON.hs ├── federator │ ├── .ormolu │ ├── README.md │ ├── default.nix │ ├── dist │ ├── exec │ │ └── Main.hs │ ├── federator.cabal │ ├── federator.integration.yaml │ ├── src │ │ └── Federator │ │ │ ├── Discovery.hs │ │ │ ├── Env.hs │ │ │ ├── Error.hs │ │ │ ├── Error │ │ │ └── ServerError.hs │ │ │ ├── ExternalServer.hs │ │ │ ├── Health.hs │ │ │ ├── InternalServer.hs │ │ │ ├── Interpreter.hs │ │ │ ├── Metrics.hs │ │ │ ├── MockServer.hs │ │ │ ├── Monitor.hs │ │ │ ├── Monitor │ │ │ └── Internal.hs │ │ │ ├── Options.hs │ │ │ ├── RPC.hs │ │ │ ├── Remote.hs │ │ │ ├── Response.hs │ │ │ ├── Run.hs │ │ │ ├── Service.hs │ │ │ └── Validation.hs │ └── test │ │ ├── integration │ │ ├── Main.hs │ │ └── Test │ │ │ └── Federator │ │ │ ├── IngressSpec.hs │ │ │ ├── InwardSpec.hs │ │ │ ├── JSON.hs │ │ │ └── Util.hs │ │ ├── resources │ │ ├── integration-ca.pem │ │ ├── integration-leaf-key.pem │ │ ├── integration-leaf.pem │ │ └── unit │ │ │ ├── .gitignore │ │ │ ├── README.md │ │ │ ├── example.com.pem │ │ │ ├── gen-certs.sh │ │ │ ├── gen-multidomain-certs.sh │ │ │ ├── invalid.pem │ │ │ ├── localhost-dot-key.pem │ │ │ ├── localhost-dot.pem │ │ │ ├── localhost-key.pem │ │ │ ├── localhost.client-only-key.pem │ │ │ ├── localhost.client-only.pem │ │ │ ├── localhost.example.com-key.pem │ │ │ ├── localhost.example.com.pem │ │ │ ├── localhost.pem │ │ │ ├── multidomain-federator.example.com-key.pem │ │ │ ├── multidomain-federator.example.com.pem │ │ │ ├── second-federator.example.com-key.pem │ │ │ ├── second-federator.example.com.pem │ │ │ ├── unit-ca-key.pem │ │ │ └── unit-ca.pem │ │ └── unit │ │ ├── Main.hs │ │ └── Test │ │ └── Federator │ │ ├── Client.hs │ │ ├── ExternalServer.hs │ │ ├── InternalServer.hs │ │ ├── Monitor.hs │ │ ├── Options.hs │ │ ├── Remote.hs │ │ ├── Util.hs │ │ └── Validation.hs ├── galley │ ├── .env │ ├── .ormolu │ ├── LICENSE │ ├── deb-it │ │ ├── DEBIAN │ │ │ └── control │ │ └── opt │ │ │ └── galley-integration │ │ │ └── bin │ │ │ └── galley-integration │ ├── deb-migrate-data │ │ ├── DEBIAN │ │ │ └── control │ │ └── opt │ │ │ └── galley-migrate-data │ │ │ └── galley-migrate-data │ ├── deb-schema │ │ ├── DEBIAN │ │ │ ├── control │ │ │ └── postinst │ │ └── opt │ │ │ └── galley │ │ │ └── bin │ │ │ └── galley-schema │ ├── default.nix │ ├── dist │ ├── exec │ │ └── Main.hs │ ├── galley.cabal │ ├── galley.integration.yaml │ ├── migrate-data │ │ ├── main.hs │ │ └── src │ │ │ ├── Galley │ │ │ ├── DataMigration.hs │ │ │ └── DataMigration │ │ │ │ └── Types.hs │ │ │ ├── Run.hs │ │ │ ├── V1_BackfillBillingTeamMembers.hs │ │ │ └── V3_BackfillTeamAdmins.hs │ ├── schema │ │ ├── Main.hs │ │ └── default.nix │ ├── src │ │ └── Galley │ │ │ ├── API │ │ │ ├── Action.hs │ │ │ ├── Action │ │ │ │ ├── Kick.hs │ │ │ │ ├── Leave.hs │ │ │ │ ├── Notify.hs │ │ │ │ └── Reset.hs │ │ │ ├── Clients.hs │ │ │ ├── Create.hs │ │ │ ├── CustomBackend.hs │ │ │ ├── Error.hs │ │ │ ├── Federation.hs │ │ │ ├── Internal.hs │ │ │ ├── LegalHold.hs │ │ │ ├── LegalHold │ │ │ │ ├── Conflicts.hs │ │ │ │ ├── Get.hs │ │ │ │ └── Team.hs │ │ │ ├── MLS.hs │ │ │ ├── MLS │ │ │ │ ├── CheckClients.hs │ │ │ │ ├── Commit.hs │ │ │ │ ├── Commit │ │ │ │ │ ├── Core.hs │ │ │ │ │ ├── ExternalCommit.hs │ │ │ │ │ └── InternalCommit.hs │ │ │ │ ├── Conversation.hs │ │ │ │ ├── Enabled.hs │ │ │ │ ├── GroupInfo.hs │ │ │ │ ├── GroupInfoCheck.hs │ │ │ │ ├── IncomingMessage.hs │ │ │ │ ├── Keys.hs │ │ │ │ ├── Message.hs │ │ │ │ ├── Migration.hs │ │ │ │ ├── One2One.hs │ │ │ │ ├── OutOfSync.hs │ │ │ │ ├── Propagate.hs │ │ │ │ ├── Proposal.hs │ │ │ │ ├── Removal.hs │ │ │ │ ├── Reset.hs │ │ │ │ ├── SubConversation.hs │ │ │ │ ├── Util.hs │ │ │ │ └── Welcome.hs │ │ │ ├── Mapping.hs │ │ │ ├── Message.hs │ │ │ ├── One2One.hs │ │ │ ├── Public │ │ │ │ ├── Bot.hs │ │ │ │ ├── Conversation.hs │ │ │ │ ├── CustomBackend.hs │ │ │ │ ├── Feature.hs │ │ │ │ ├── LegalHold.hs │ │ │ │ ├── MLS.hs │ │ │ │ ├── Messaging.hs │ │ │ │ ├── Servant.hs │ │ │ │ ├── Team.hs │ │ │ │ ├── TeamConversation.hs │ │ │ │ ├── TeamMember.hs │ │ │ │ └── TeamNotification.hs │ │ │ ├── Push.hs │ │ │ ├── Query.hs │ │ │ ├── Teams.hs │ │ │ ├── Teams │ │ │ │ ├── Export.hs │ │ │ │ ├── Features.hs │ │ │ │ ├── Features │ │ │ │ │ └── Get.hs │ │ │ │ └── Notifications.hs │ │ │ ├── Update.hs │ │ │ └── Util.hs │ │ │ ├── App.hs │ │ │ ├── Cassandra.hs │ │ │ ├── Cassandra │ │ │ ├── Client.hs │ │ │ ├── Code.hs │ │ │ ├── CustomBackend.hs │ │ │ ├── Queries.hs │ │ │ ├── SearchVisibility.hs │ │ │ ├── Store.hs │ │ │ ├── Team.hs │ │ │ ├── TeamFeatures.hs │ │ │ ├── TeamNotifications.hs │ │ │ └── Util.hs │ │ │ ├── Data │ │ │ ├── Scope.hs │ │ │ ├── TeamNotifications.hs │ │ │ └── Types.hs │ │ │ ├── Effects.hs │ │ │ ├── Effects │ │ │ ├── ClientStore.hs │ │ │ ├── CodeStore.hs │ │ │ ├── CustomBackendStore.hs │ │ │ ├── Queue.hs │ │ │ ├── SearchVisibilityStore.hs │ │ │ ├── TeamFeatureStore.hs │ │ │ ├── TeamMemberStore.hs │ │ │ └── TeamNotificationStore.hs │ │ │ ├── Env.hs │ │ │ ├── External │ │ │ ├── LegalHoldService.hs │ │ │ └── LegalHoldService │ │ │ │ └── Internal.hs │ │ │ ├── Intra │ │ │ └── Util.hs │ │ │ ├── Keys.hs │ │ │ ├── Monad.hs │ │ │ ├── Options.hs │ │ │ ├── Queue.hs │ │ │ ├── Run.hs │ │ │ ├── Schema │ │ │ ├── Run.hs │ │ │ ├── V100_OutOfSync.hs │ │ │ ├── V101_ConversationLowerGCGracePeriod.hs │ │ │ ├── V20.hs │ │ │ ├── V21.hs │ │ │ ├── V22.hs │ │ │ ├── V23.hs │ │ │ ├── V24.hs │ │ │ ├── V25.hs │ │ │ ├── V26.hs │ │ │ ├── V27.hs │ │ │ ├── V28.hs │ │ │ ├── V29.hs │ │ │ ├── V30.hs │ │ │ ├── V31.hs │ │ │ ├── V32.hs │ │ │ ├── V33.hs │ │ │ ├── V34.hs │ │ │ ├── V35.hs │ │ │ ├── V36.hs │ │ │ ├── V37.hs │ │ │ ├── V38_CreateTableBillingTeamMember.hs │ │ │ ├── V39.hs │ │ │ ├── V40_CreateTableDataMigration.hs │ │ │ ├── V41_TeamNotificationQueue.hs │ │ │ ├── V42_TeamFeatureValidateSamlEmails.hs │ │ │ ├── V43_TeamFeatureDigitalSignatures.hs │ │ │ ├── V44_AddRemoteIdentifiers.hs │ │ │ ├── V45_AddFederationIdMapping.hs │ │ │ ├── V46_TeamFeatureAppLock.hs │ │ │ ├── V47_RemoveFederationIdMapping.hs │ │ │ ├── V48_DeleteRemoteIdentifiers.hs │ │ │ ├── V49_ReAddRemoteIdentifiers.hs │ │ │ ├── V50_AddLegalholdWhitelisted.hs │ │ │ ├── V51_FeatureFileSharing.hs │ │ │ ├── V52_FeatureConferenceCalling.hs │ │ │ ├── V53_AddRemoteConvStatus.hs │ │ │ ├── V54_TeamFeatureSelfDeletingMessages.hs │ │ │ ├── V55_SelfDeletingMessagesLockStatus.hs │ │ │ ├── V56_GuestLinksTeamFeatureStatus.hs │ │ │ ├── V57_GuestLinksLockStatus.hs │ │ │ ├── V58_ConversationAccessRoleV2.hs │ │ │ ├── V59_FileSharingLockStatus.hs │ │ │ ├── V60_TeamFeatureSndFactorPasswordChallenge.hs │ │ │ ├── V61_MLSConversation.hs │ │ │ ├── V62_TeamFeatureSearchVisibilityInbound.hs │ │ │ ├── V63_MLSConversationClients.hs │ │ │ ├── V64_Epoch.hs │ │ │ ├── V65_MLSRemoteClients.hs │ │ │ ├── V66_AddSplashScreen.hs │ │ │ ├── V67_MLSFeature.hs │ │ │ ├── V68_MLSCommitLock.hs │ │ │ ├── V69_MLSProposal.hs │ │ │ ├── V70_MLSCipherSuite.hs │ │ │ ├── V71_MemberClientKeypackage.hs │ │ │ ├── V72_DropManagedConversations.hs │ │ │ ├── V73_MemberClientTable.hs │ │ │ ├── V74_ExposeInvitationsToTeamAdmin.hs │ │ │ ├── V75_MLSGroupInfo.hs │ │ │ ├── V76_ProposalOrigin.hs │ │ │ ├── V77_MLSGroupMemberClient.hs │ │ │ ├── V78_TeamFeatureOutlookCalIntegration.hs │ │ │ ├── V79_TeamFeatureMlsE2EId.hs │ │ │ ├── V80_AddConversationCodePassword.hs │ │ │ ├── V81_TeamFeatureMlsE2EIdUpdate.hs │ │ │ ├── V82_RemoteDomainIndexes.hs │ │ │ ├── V83_CreateTableTeamAdmin.hs │ │ │ ├── V84_MLSSubconversation.hs │ │ │ ├── V85_MLSDraft17.hs │ │ │ ├── V86_TeamFeatureMlsMigration.hs │ │ │ ├── V87_TeamFeatureSupportedProtocols.hs │ │ │ ├── V88_RemoveMemberClientAndTruncateMLSGroupMemberClient.hs │ │ │ ├── V89_MlsLockStatus.hs │ │ │ ├── V90_EnforceFileDownloadLocationConfig.hs │ │ │ ├── V91_TeamMemberDeletedLimitedEventFanout.hs │ │ │ ├── V92_MlsE2EIdConfig.hs │ │ │ ├── V93_ConferenceCallingSftForOneToOne.hs │ │ │ ├── V94_DomainRegistrationConfig.hs │ │ │ ├── V95_TeamFeatureDataMigrationState.hs │ │ │ ├── V96_GroupConversationType.hs │ │ │ ├── V97_CellsConversation.hs │ │ │ ├── V98_ChannelAddPermission.hs │ │ │ └── V99_ConversationAddParent.hs │ │ │ ├── Types │ │ │ └── Clients.hs │ │ │ └── Validation.hs │ └── test │ │ ├── integration.hs │ │ ├── integration │ │ ├── API.hs │ │ ├── API │ │ │ ├── CustomBackend.hs │ │ │ ├── Federation.hs │ │ │ ├── Federation │ │ │ │ └── Util.hs │ │ │ ├── MLS.hs │ │ │ ├── MLS │ │ │ │ ├── Mocks.hs │ │ │ │ └── Util.hs │ │ │ ├── MessageTimer.hs │ │ │ ├── Roles.hs │ │ │ ├── SQS.hs │ │ │ ├── Teams.hs │ │ │ ├── Teams │ │ │ │ ├── LegalHold.hs │ │ │ │ └── LegalHold │ │ │ │ │ ├── DisabledByDefault.hs │ │ │ │ │ └── Util.hs │ │ │ ├── Util.hs │ │ │ └── Util │ │ │ │ └── TeamFeature.hs │ │ ├── Federation.hs │ │ ├── Run.hs │ │ ├── TestHelpers.hs │ │ └── TestSetup.hs │ │ ├── resources │ │ ├── backendA │ │ │ ├── ecdsa_secp256r1_sha256.pem │ │ │ ├── ecdsa_secp384r1_sha384.pem │ │ │ ├── ecdsa_secp521r1_sha512.pem │ │ │ └── ed25519.pem │ │ ├── backendB │ │ │ ├── ecdsa_secp256r1_sha256.pem │ │ │ ├── ecdsa_secp384r1_sha384.pem │ │ │ ├── ecdsa_secp521r1_sha512.pem │ │ │ └── ed25519.pem │ │ ├── dynBackend1 │ │ │ ├── ecdsa_secp256r1_sha256.pem │ │ │ ├── ecdsa_secp384r1_sha384.pem │ │ │ ├── ecdsa_secp521r1_sha512.pem │ │ │ └── ed25519.pem │ │ ├── dynBackend2 │ │ │ ├── ecdsa_secp256r1_sha256.pem │ │ │ ├── ecdsa_secp384r1_sha384.pem │ │ │ ├── ecdsa_secp521r1_sha512.pem │ │ │ └── ed25519.pem │ │ ├── dynBackend3 │ │ │ ├── ecdsa_secp256r1_sha256.pem │ │ │ ├── ecdsa_secp384r1_sha384.pem │ │ │ ├── ecdsa_secp521r1_sha512.pem │ │ │ └── ed25519.pem │ │ ├── generate_keys.sh │ │ └── rabbitmq-ca.pem │ │ ├── unit.hs │ │ └── unit │ │ ├── Run.hs │ │ └── Test │ │ └── Galley │ │ ├── API │ │ ├── Action.hs │ │ ├── Message.hs │ │ └── One2One.hs │ │ └── Mapping.hs ├── gen-aws-conf.sh ├── gundeck │ ├── .env │ ├── .ormolu │ ├── LICENSE │ ├── deb-it │ │ ├── DEBIAN │ │ │ └── control │ │ └── opt │ │ │ └── gundeck-integration │ │ │ └── bin │ │ │ └── gundeck-integration │ ├── default.nix │ ├── dist │ ├── exec │ │ └── Main.hs │ ├── gundeck.cabal │ ├── gundeck.integration.yaml │ ├── migrate-data │ │ ├── main.hs │ │ └── src │ │ │ ├── Gundeck │ │ │ ├── DataMigration.hs │ │ │ └── DataMigration │ │ │ │ └── Types.hs │ │ │ ├── Run.hs │ │ │ └── V1_DeleteApnsVoipTokens.hs │ ├── schema │ │ └── Main.hs │ ├── src │ │ └── Gundeck │ │ │ ├── API │ │ │ ├── Internal.hs │ │ │ └── Public.hs │ │ │ ├── Aws.hs │ │ │ ├── Aws │ │ │ ├── Arn.hs │ │ │ └── Sns.hs │ │ │ ├── Client.hs │ │ │ ├── Env.hs │ │ │ ├── Instances.hs │ │ │ ├── Monad.hs │ │ │ ├── Notification.hs │ │ │ ├── Notification │ │ │ └── Data.hs │ │ │ ├── Options.hs │ │ │ ├── Presence.hs │ │ │ ├── Presence │ │ │ └── Data.hs │ │ │ ├── Push.hs │ │ │ ├── Push │ │ │ ├── Data.hs │ │ │ ├── Native.hs │ │ │ ├── Native │ │ │ │ ├── Serialise.hs │ │ │ │ └── Types.hs │ │ │ └── Websocket.hs │ │ │ ├── React.hs │ │ │ ├── Redis.hs │ │ │ ├── Redis │ │ │ └── HedisExtensions.hs │ │ │ ├── Run.hs │ │ │ ├── Schema │ │ │ ├── Run.hs │ │ │ ├── V1.hs │ │ │ ├── V10.hs │ │ │ ├── V11.hs │ │ │ ├── V12.hs │ │ │ ├── V2.hs │ │ │ ├── V3.hs │ │ │ ├── V4.hs │ │ │ ├── V5.hs │ │ │ ├── V6.hs │ │ │ ├── V7.hs │ │ │ ├── V8.hs │ │ │ └── V9.hs │ │ │ ├── ThreadBudget.hs │ │ │ ├── ThreadBudget │ │ │ └── Internal.hs │ │ │ ├── Util.hs │ │ │ └── Util │ │ │ ├── DelayQueue.hs │ │ │ └── Redis.hs │ └── test │ │ ├── bench │ │ └── Main.hs │ │ ├── integration │ │ ├── API.hs │ │ ├── Main.hs │ │ ├── Metrics.hs │ │ ├── TestSetup.hs │ │ └── Util.hs │ │ ├── resources │ │ └── rabbitmq-ca.pem │ │ └── unit │ │ ├── Aws │ │ └── Arn.hs │ │ ├── DelayQueue.hs │ │ ├── Json.hs │ │ ├── Main.hs │ │ ├── MockGundeck.hs │ │ ├── Native.hs │ │ ├── ParseExistsError.hs │ │ ├── Push.hs │ │ └── ThreadBudget.hs ├── integration.yaml ├── nginz │ ├── integration-test │ │ ├── conf │ │ │ └── nginz │ │ │ │ ├── README.md │ │ │ │ ├── common_response.conf │ │ │ │ ├── common_response_no_zauth.conf │ │ │ │ ├── common_response_with_zauth.conf │ │ │ │ ├── integration-ca-key.pem │ │ │ │ ├── integration-ca.pem │ │ │ │ ├── integration-leaf-key.pem │ │ │ │ ├── integration-leaf.pem │ │ │ │ ├── integration.conf │ │ │ │ ├── nginx.conf │ │ │ │ ├── pid.conf │ │ │ │ ├── upstreams │ │ │ │ └── zauth_acl.txt │ │ └── resources │ │ │ ├── oauth │ │ │ └── ed25519_public.jwk │ │ │ └── zauth │ └── third_party │ │ └── nginx-zauth-module │ │ ├── LICENSE │ │ ├── README.md │ │ ├── config │ │ └── zauth_module.c ├── proxy │ ├── .env │ ├── .ormolu │ ├── LICENSE │ ├── README.txt │ ├── default.nix │ ├── dist │ ├── doc │ │ └── example.config │ ├── exec │ │ └── Main.hs │ ├── proxy.cabal │ ├── proxy.integration.yaml │ ├── src │ │ └── Proxy │ │ │ ├── API │ │ │ ├── Internal.hs │ │ │ └── Public.hs │ │ │ ├── Env.hs │ │ │ ├── Options.hs │ │ │ ├── Proxy.hs │ │ │ └── Run.hs │ └── test │ │ ├── scripts │ │ ├── .gitignore │ │ └── proxy-test.sh │ │ └── unit │ │ └── Main.hs ├── restund │ ├── .gitignore │ ├── Dockerfile │ ├── LICENSE │ ├── Makefile │ ├── README.md │ └── modules │ │ ├── drain │ │ ├── drain.c │ │ └── module.mk │ │ └── zrest │ │ ├── module.mk │ │ └── zrest.c ├── spar │ ├── .hlint.yaml │ ├── .ormolu │ ├── LICENSE │ ├── README.md │ ├── default.nix │ ├── dist │ ├── exec │ │ └── Main.hs │ ├── migrate-data │ │ └── src │ │ │ ├── Main.hs │ │ │ └── Spar │ │ │ └── DataMigration │ │ │ ├── Options.hs │ │ │ ├── Run.hs │ │ │ ├── Types.hs │ │ │ └── V2_UserV2.hs │ ├── schema │ │ └── Main.hs │ ├── spar.cabal │ ├── spar.integration.yaml │ ├── src │ │ └── Spar │ │ │ ├── API.hs │ │ │ ├── App.hs │ │ │ ├── CanonicalInterpreter.hs │ │ │ ├── Data.hs │ │ │ ├── Data │ │ │ └── Instances.hs │ │ │ ├── Error.hs │ │ │ ├── Intra │ │ │ ├── Brig.hs │ │ │ ├── BrigApp.hs │ │ │ └── Galley.hs │ │ │ ├── Options.hs │ │ │ ├── Orphans.hs │ │ │ ├── Run.hs │ │ │ ├── Schema │ │ │ ├── Run.hs │ │ │ ├── V0.hs │ │ │ ├── V1.hs │ │ │ ├── V10.hs │ │ │ ├── V11.hs │ │ │ ├── V12.hs │ │ │ ├── V13.hs │ │ │ ├── V14.hs │ │ │ ├── V15.hs │ │ │ ├── V16.hs │ │ │ ├── V17.hs │ │ │ ├── V18.hs │ │ │ ├── V19.hs │ │ │ ├── V2.hs │ │ │ ├── V20.hs │ │ │ ├── V21.hs │ │ │ ├── V3.hs │ │ │ ├── V4.hs │ │ │ ├── V5.hs │ │ │ ├── V6.hs │ │ │ ├── V7.hs │ │ │ ├── V8.hs │ │ │ └── V9.hs │ │ │ ├── Scim.hs │ │ │ ├── Scim │ │ │ ├── Auth.hs │ │ │ ├── Group.hs │ │ │ ├── Types.hs │ │ │ └── User.hs │ │ │ └── Sem │ │ │ ├── AReqIDStore.hs │ │ │ ├── AReqIDStore │ │ │ ├── Cassandra.hs │ │ │ └── Mem.hs │ │ │ ├── AssIDStore.hs │ │ │ ├── AssIDStore │ │ │ ├── Cassandra.hs │ │ │ └── Mem.hs │ │ │ ├── BrigAccess.hs │ │ │ ├── BrigAccess │ │ │ └── Http.hs │ │ │ ├── DefaultSsoCode.hs │ │ │ ├── DefaultSsoCode │ │ │ ├── Cassandra.hs │ │ │ ├── Mem.hs │ │ │ └── Spec.hs │ │ │ ├── GalleyAccess.hs │ │ │ ├── GalleyAccess │ │ │ └── Http.hs │ │ │ ├── IdPConfigStore.hs │ │ │ ├── IdPConfigStore │ │ │ ├── Cassandra.hs │ │ │ └── Mem.hs │ │ │ ├── IdPRawMetadataStore.hs │ │ │ ├── IdPRawMetadataStore │ │ │ ├── Cassandra.hs │ │ │ ├── Mem.hs │ │ │ └── Spec.hs │ │ │ ├── Reporter.hs │ │ │ ├── Reporter │ │ │ └── Wai.hs │ │ │ ├── SAML2.hs │ │ │ ├── SAML2 │ │ │ └── Library.hs │ │ │ ├── SAMLUserStore.hs │ │ │ ├── SAMLUserStore │ │ │ ├── Cassandra.hs │ │ │ └── Mem.hs │ │ │ ├── SamlProtocolSettings.hs │ │ │ ├── SamlProtocolSettings │ │ │ └── Servant.hs │ │ │ ├── ScimExternalIdStore.hs │ │ │ ├── ScimExternalIdStore │ │ │ ├── Cassandra.hs │ │ │ ├── Mem.hs │ │ │ └── Spec.hs │ │ │ ├── ScimTokenStore.hs │ │ │ ├── ScimTokenStore │ │ │ ├── Cassandra.hs │ │ │ └── Mem.hs │ │ │ ├── ScimUserTimesStore.hs │ │ │ ├── ScimUserTimesStore │ │ │ ├── Cassandra.hs │ │ │ └── Mem.hs │ │ │ ├── Utils.hs │ │ │ ├── VerdictFormatStore.hs │ │ │ └── VerdictFormatStore │ │ │ ├── Cassandra.hs │ │ │ └── Mem.hs │ ├── test-integration │ │ ├── Main.hs │ │ ├── Test │ │ │ ├── LoggingSpec.hs │ │ │ ├── MetricsSpec.hs │ │ │ └── Spar │ │ │ │ ├── APISpec.hs │ │ │ │ ├── AppSpec.hs │ │ │ │ ├── DataSpec.hs │ │ │ │ ├── Intra │ │ │ │ └── BrigSpec.hs │ │ │ │ └── Scim │ │ │ │ ├── AuthSpec.hs │ │ │ │ └── UserSpec.hs │ │ ├── Util.hs │ │ ├── Util │ │ │ ├── Activation.hs │ │ │ ├── Core.hs │ │ │ ├── Email.hs │ │ │ ├── Invitation.hs │ │ │ ├── Scim.hs │ │ │ └── Types.hs │ │ └── resources │ │ │ ├── meta-bad-sig.xml │ │ │ ├── meta-bad.xml │ │ │ └── meta-good-sig.xml │ ├── test-scim-suite │ │ ├── Makefile │ │ ├── README.md │ │ ├── mk_collection.sh │ │ ├── run.sh │ │ ├── runsuite.sh │ │ ├── setup.js │ │ ├── shell.nix │ │ └── update.jq │ └── test │ │ ├── Arbitrary.hs │ │ ├── Spec.hs │ │ └── Test │ │ └── Spar │ │ ├── APISpec.hs │ │ ├── DataSpec.hs │ │ ├── Intra │ │ └── BrigSpec.hs │ │ ├── Roundtrip │ │ └── ByteString.hs │ │ ├── Scim │ │ └── UserSpec.hs │ │ ├── ScimSpec.hs │ │ ├── Sem │ │ ├── DefaultSsoCodeSpec.hs │ │ ├── IdPRawMetadataStoreSpec.hs │ │ ├── NowSpec.hs │ │ ├── SamlProtocolSettingsSpec.hs │ │ └── ScimExternalIdStoreSpec.hs │ │ └── TypesSpec.hs └── stern │ └── stern.integration.yaml ├── tools ├── db │ ├── assets │ │ ├── .ormolu │ │ ├── README.md │ │ ├── app │ │ │ └── Main.hs │ │ ├── assets.cabal │ │ ├── default.nix │ │ └── src │ │ │ └── Assets │ │ │ └── Lib.hs │ ├── auto-whitelist │ │ ├── .ormolu │ │ ├── README.md │ │ ├── auto-whitelist.cabal │ │ ├── default.nix │ │ └── src │ │ │ ├── Main.hs │ │ │ ├── Options.hs │ │ │ └── Work.hs │ ├── find-undead │ │ ├── .ormolu │ │ ├── README.md │ │ ├── default.nix │ │ ├── find-undead.cabal │ │ └── src │ │ │ ├── Main.hs │ │ │ ├── Options.hs │ │ │ └── Work.hs │ ├── inconsistencies │ │ ├── README.md │ │ ├── default.nix │ │ ├── inconsistencies.cabal │ │ └── src │ │ │ ├── DanglingHandles.hs │ │ │ ├── DanglingUserKeys.hs │ │ │ ├── EmailLessUsers.hs │ │ │ ├── EmailUnparseableUsers.hs │ │ │ ├── HandleLessUsers.hs │ │ │ ├── Main.hs │ │ │ ├── NullPermsTeamMembers.hs │ │ │ ├── Options.hs │ │ │ └── UsersInUnknownTeams.hs │ ├── migrate-features │ │ ├── .ormolu │ │ ├── README.md │ │ ├── default.nix │ │ ├── migrate-features.cabal │ │ └── src │ │ │ ├── Main.hs │ │ │ ├── Options.hs │ │ │ └── Work.hs │ ├── migrate-sso-feature-flag │ │ ├── .ormolu │ │ ├── README.md │ │ ├── default.nix │ │ ├── migrate-sso-feature-flag.cabal │ │ └── src │ │ │ ├── Main.hs │ │ │ ├── Options.hs │ │ │ └── Work.hs │ ├── move-team │ │ ├── .ormolu │ │ ├── README.md │ │ ├── default.nix │ │ ├── dump_merge_teams.sh │ │ ├── move-team-generate │ │ │ └── Main.hs │ │ ├── move-team.cabal │ │ ├── move-team │ │ │ └── Main.hs │ │ └── src │ │ │ ├── Common.hs │ │ │ ├── Options.hs │ │ │ ├── ParseSchema.hs │ │ │ ├── Schema.hs │ │ │ ├── Types.hs │ │ │ └── Work.hs │ ├── phone-users │ │ ├── .ormolu │ │ ├── README.md │ │ ├── app │ │ │ └── Main.hs │ │ ├── default.nix │ │ ├── phone-users.cabal │ │ └── src │ │ │ └── PhoneUsers │ │ │ ├── Lib.hs │ │ │ └── Types.hs │ ├── repair-brig-clients-table │ │ ├── .ormolu │ │ ├── README.md │ │ ├── default.nix │ │ ├── repair-brig-clients-table.cabal │ │ └── src │ │ │ ├── Main.hs │ │ │ ├── Options.hs │ │ │ └── Work.hs │ ├── repair-handles │ │ ├── .ormolu │ │ ├── README.md │ │ ├── default.nix │ │ ├── repair-handles.cabal │ │ ├── repair-handles │ │ │ └── Main.hs │ │ └── src │ │ │ ├── Options.hs │ │ │ ├── Types.hs │ │ │ └── Work.hs │ ├── service-backfill │ │ ├── .ormolu │ │ ├── README.md │ │ ├── default.nix │ │ ├── service-backfill.cabal │ │ └── src │ │ │ ├── Main.hs │ │ │ ├── Options.hs │ │ │ └── Work.hs │ └── team-info │ │ ├── .ormolu │ │ ├── README.md │ │ ├── app │ │ └── Main.hs │ │ ├── default.nix │ │ ├── src │ │ └── TeamInfo │ │ │ ├── Lib.hs │ │ │ └── Types.hs │ │ └── team-info.cabal ├── entreprise-provisioning │ ├── LICENSE │ ├── README.md │ ├── TEST.md │ ├── default.nix │ ├── entreprise-provisioning.cabal │ ├── examples │ │ ├── input-example.json │ │ └── output-example.json │ ├── src │ │ ├── API.hs │ │ ├── CLI.hs │ │ ├── Main.hs │ │ └── Types.hs │ ├── test-e2e.sh │ └── test │ │ ├── Main.hs │ │ └── golden │ │ ├── input-valid.json │ │ ├── output-association-failure.json │ │ ├── output-partial-failure.json │ │ └── output-success.json ├── headroom-templates │ ├── haskell.mustache │ └── rust.mustache ├── hlint.sh ├── make-image ├── mlsstats │ ├── .ormolu │ ├── LICENSE │ ├── README.md │ ├── analysis │ │ └── mlsstats.py │ ├── default.nix │ ├── exec │ │ └── Main.hs │ ├── mlsstats.cabal │ └── src │ │ └── MlsStats │ │ ├── Options.hs │ │ └── Run.hs ├── ormolu.sh ├── ormolu1.sh ├── rabbitmq-consumer │ ├── README.md │ ├── app │ │ └── Main.hs │ ├── default.nix │ ├── rabbitmq-consumer.cabal │ └── src │ │ └── RabbitMQConsumer │ │ └── Lib.hs ├── rebase-onto-formatter.sh ├── rex │ ├── .ormolu │ ├── LICENSE │ ├── Main.hs │ ├── README.md │ ├── default.nix │ └── rex.cabal ├── sftd_disco │ ├── Dockerfile │ ├── Makefile │ ├── README.md │ └── sftd_disco.sh ├── stern │ ├── .hlint.yaml │ ├── .ormolu │ ├── README.md │ ├── deb │ │ ├── DEBIAN │ │ │ ├── control │ │ │ ├── postinst │ │ │ ├── preinst │ │ │ └── prerm │ │ ├── etc │ │ │ └── sv │ │ │ │ └── stern │ │ │ │ └── run │ │ └── opt │ │ │ └── stern │ │ │ └── bin │ │ │ └── stern │ ├── default.nix │ ├── dist │ ├── exec │ │ └── Main.hs │ ├── screenshots │ │ ├── a.png │ │ └── b.png │ ├── src │ │ └── Stern │ │ │ ├── API.hs │ │ │ ├── API │ │ │ └── Routes.hs │ │ │ ├── App.hs │ │ │ ├── Intra.hs │ │ │ ├── Options.hs │ │ │ └── Types.hs │ ├── stern.cabal │ └── test │ │ ├── integration │ │ ├── API.hs │ │ ├── Main.hs │ │ ├── TestSetup.hs │ │ └── Util.hs │ │ └── unit │ │ └── Main.hs └── test-stats │ ├── LICENSE │ ├── Main.hs │ ├── README.md │ ├── default.nix │ └── test-stats.cabal ├── treefmt.toml └── weeder.toml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/.dockerignore -------------------------------------------------------------------------------- /.envrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/.envrc -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/.gitignore -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/.gitmodules -------------------------------------------------------------------------------- /.headroom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/.headroom.yaml -------------------------------------------------------------------------------- /.hlint.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/.hlint.yaml -------------------------------------------------------------------------------- /.ormolu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/.ormolu -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/SECURITY.md -------------------------------------------------------------------------------- /cabal.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/cabal.project -------------------------------------------------------------------------------- /cassandra-schema.cql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/cassandra-schema.cql -------------------------------------------------------------------------------- /changelog.d/0-release-notes/.title: -------------------------------------------------------------------------------- 1 | Release notes -------------------------------------------------------------------------------- /changelog.d/1-api-changes/.title: -------------------------------------------------------------------------------- 1 | API changes -------------------------------------------------------------------------------- /changelog.d/2-features/.title: -------------------------------------------------------------------------------- 1 | Features -------------------------------------------------------------------------------- /changelog.d/2-features/WPB-22168: -------------------------------------------------------------------------------- 1 | New team feature config `cellsInternal` 2 | -------------------------------------------------------------------------------- /changelog.d/3-bug-fixes/.title: -------------------------------------------------------------------------------- 1 | Bug fixes and other updates -------------------------------------------------------------------------------- /changelog.d/4-docs/.title: -------------------------------------------------------------------------------- 1 | Documentation -------------------------------------------------------------------------------- /changelog.d/5-internal/.title: -------------------------------------------------------------------------------- 1 | Internal changes -------------------------------------------------------------------------------- /changelog.d/6-federation/.title: -------------------------------------------------------------------------------- 1 | Federation changes -------------------------------------------------------------------------------- /charts/.gitignore: -------------------------------------------------------------------------------- 1 | # helm generated files 2 | *.tgz 3 | requirements.lock 4 | -------------------------------------------------------------------------------- /charts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/README.md -------------------------------------------------------------------------------- /charts/aws-storage/values.yaml: -------------------------------------------------------------------------------- 1 | # Default values for aws-storage. 2 | -------------------------------------------------------------------------------- /charts/brig/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/brig/.helmignore -------------------------------------------------------------------------------- /charts/brig/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/brig/Chart.yaml -------------------------------------------------------------------------------- /charts/brig/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/brig/README.md -------------------------------------------------------------------------------- /charts/brig/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/brig/values.yaml -------------------------------------------------------------------------------- /charts/cannon/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/cannon/Chart.yaml -------------------------------------------------------------------------------- /charts/databases-ephemeral/values.yaml: -------------------------------------------------------------------------------- 1 | # Default values for ephemeral-databases 2 | -------------------------------------------------------------------------------- /charts/galley/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/galley/Chart.yaml -------------------------------------------------------------------------------- /charts/gundeck/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/gundeck/README.md -------------------------------------------------------------------------------- /charts/kibana/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/kibana/Chart.yaml -------------------------------------------------------------------------------- /charts/metallb/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/metallb/README.md -------------------------------------------------------------------------------- /charts/nginz/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/nginz/.helmignore -------------------------------------------------------------------------------- /charts/nginz/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/nginz/Chart.yaml -------------------------------------------------------------------------------- /charts/nginz/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/nginz/README.md -------------------------------------------------------------------------------- /charts/nginz/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/nginz/values.yaml -------------------------------------------------------------------------------- /charts/nginz/zauth.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /charts/proxy/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/proxy/.helmignore -------------------------------------------------------------------------------- /charts/proxy/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/proxy/Chart.yaml -------------------------------------------------------------------------------- /charts/proxy/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/proxy/values.yaml -------------------------------------------------------------------------------- /charts/reaper/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/reaper/Chart.yaml -------------------------------------------------------------------------------- /charts/reaper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/reaper/README.md -------------------------------------------------------------------------------- /charts/restund/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/restund/README.md -------------------------------------------------------------------------------- /charts/spar/.helmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/spar/.helmignore -------------------------------------------------------------------------------- /charts/spar/Chart.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/spar/Chart.yaml -------------------------------------------------------------------------------- /charts/spar/values.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/charts/spar/values.yaml -------------------------------------------------------------------------------- /dashboards/services.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/dashboards/services.json -------------------------------------------------------------------------------- /deploy/dockerephemeral/docker/redis-master-mode.conf: -------------------------------------------------------------------------------- 1 | requirepass very-secure-redis-master-password -------------------------------------------------------------------------------- /deploy/dockerephemeral/federation-v0/nginz/conf/pid.conf: -------------------------------------------------------------------------------- 1 | pid /tmp/nginz.pid; 2 | -------------------------------------------------------------------------------- /deploy/dockerephemeral/federation-v0/turn-secret.txt: -------------------------------------------------------------------------------- 1 | xMtZyTpu=Leb?YKCoq#BXQR:gG^UrE83dNWzFJ2VcD -------------------------------------------------------------------------------- /deploy/dockerephemeral/federation-v1/nginz/conf/pid.conf: -------------------------------------------------------------------------------- 1 | pid /tmp/nginz.pid; 2 | -------------------------------------------------------------------------------- /deploy/dockerephemeral/federation-v1/turn-secret.txt: -------------------------------------------------------------------------------- 1 | xMtZyTpu=Leb?YKCoq#BXQR:gG^UrE83dNWzFJ2VcD -------------------------------------------------------------------------------- /deploy/dockerephemeral/federation-v2/nginz/conf/pid.conf: -------------------------------------------------------------------------------- 1 | pid /tmp/nginz.pid; 2 | -------------------------------------------------------------------------------- /deploy/dockerephemeral/federation-v2/turn-secret.txt: -------------------------------------------------------------------------------- 1 | xMtZyTpu=Leb?YKCoq#BXQR:gG^UrE83dNWzFJ2VcD -------------------------------------------------------------------------------- /docs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/docs/README.md -------------------------------------------------------------------------------- /docs/build.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/docs/build.svg -------------------------------------------------------------------------------- /docs/diagram.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/docs/diagram.svg -------------------------------------------------------------------------------- /docs/src/changelog/changelog.md: -------------------------------------------------------------------------------- 1 | ../../../CHANGELOG.md -------------------------------------------------------------------------------- /docs/src/developer/reference/cassandra-schema.cql: -------------------------------------------------------------------------------- 1 | ../../../../cassandra-schema.cql -------------------------------------------------------------------------------- /hack/FUTUREWORK.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/FUTUREWORK.md -------------------------------------------------------------------------------- /hack/bin/certchain.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/certchain.sh -------------------------------------------------------------------------------- /hack/bin/check-weed.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/check-weed.sh -------------------------------------------------------------------------------- /hack/bin/copy-charts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/copy-charts.sh -------------------------------------------------------------------------------- /hack/bin/create_team.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/create_team.sh -------------------------------------------------------------------------------- /hack/bin/diff-failure.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/diff-failure.sh -------------------------------------------------------------------------------- /hack/bin/gen-certs.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/gen-certs.sh -------------------------------------------------------------------------------- /hack/bin/mk-drv.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/mk-drv.sh -------------------------------------------------------------------------------- /hack/bin/nix-hls.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/nix-hls.sh -------------------------------------------------------------------------------- /hack/bin/oauth_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/oauth_test.sh -------------------------------------------------------------------------------- /hack/bin/performance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/performance.py -------------------------------------------------------------------------------- /hack/bin/python3.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/python3.sh -------------------------------------------------------------------------------- /hack/bin/register_idp.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/register_idp.sh -------------------------------------------------------------------------------- /hack/bin/serve-charts.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/serve-charts.sh -------------------------------------------------------------------------------- /hack/bin/update.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/update.sh -------------------------------------------------------------------------------- /hack/bin/upload-image.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/bin/upload-image.sh -------------------------------------------------------------------------------- /hack/helm_vars/.gitignore: -------------------------------------------------------------------------------- 1 | certificates.yaml 2 | -------------------------------------------------------------------------------- /hack/python/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/python/README.md -------------------------------------------------------------------------------- /hack/python/wire/__init__.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python3 2 | -------------------------------------------------------------------------------- /hack/python/wire/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/hack/python/wire/api.py -------------------------------------------------------------------------------- /hie.yaml: -------------------------------------------------------------------------------- 1 | cradle: 2 | cabal: {} 3 | -------------------------------------------------------------------------------- /integration/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/integration/LICENSE -------------------------------------------------------------------------------- /integration/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/integration/README.md -------------------------------------------------------------------------------- /integration/Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/integration/Setup.hs -------------------------------------------------------------------------------- /integration/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/integration/default.nix -------------------------------------------------------------------------------- /integration/main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/integration/main.hs -------------------------------------------------------------------------------- /libs/bilge/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/bilge/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/bilge/LICENSE -------------------------------------------------------------------------------- /libs/bilge/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/bilge/README.md -------------------------------------------------------------------------------- /libs/bilge/bilge.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/bilge/bilge.cabal -------------------------------------------------------------------------------- /libs/bilge/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/bilge/default.nix -------------------------------------------------------------------------------- /libs/bilge/src/Bilge.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/bilge/src/Bilge.hs -------------------------------------------------------------------------------- /libs/brig-types/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/brig-types/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/brig-types/LICENSE -------------------------------------------------------------------------------- /libs/cargohold-types/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/cassandra-util/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/cassandra-util/README.md: -------------------------------------------------------------------------------- 1 | # Cassandra-util 2 | 3 | -------------------------------------------------------------------------------- /libs/deriving-swagger2/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/dns-util/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/dns-util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/dns-util/LICENSE -------------------------------------------------------------------------------- /libs/extended/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/extended/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/extended/LICENSE -------------------------------------------------------------------------------- /libs/galley-types/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/hscim/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/hscim/.gitignore -------------------------------------------------------------------------------- /libs/hscim/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/hscim/CHANGELOG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/hscim/CHANGELOG -------------------------------------------------------------------------------- /libs/hscim/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/hscim/LICENSE -------------------------------------------------------------------------------- /libs/hscim/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/hscim/README.md -------------------------------------------------------------------------------- /libs/hscim/Setup.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/hscim/Setup.hs -------------------------------------------------------------------------------- /libs/hscim/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/hscim/default.nix -------------------------------------------------------------------------------- /libs/hscim/hscim.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/hscim/hscim.cabal -------------------------------------------------------------------------------- /libs/hscim/test/Spec.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/hscim/test/Spec.hs -------------------------------------------------------------------------------- /libs/http2-manager/test/resources/.gitignore: -------------------------------------------------------------------------------- 1 | !/*.pem -------------------------------------------------------------------------------- /libs/imports/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/imports/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/imports/LICENSE -------------------------------------------------------------------------------- /libs/imports/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/imports/default.nix -------------------------------------------------------------------------------- /libs/jwt-tools/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/jwt-tools/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/jwt-tools/LICENSE -------------------------------------------------------------------------------- /libs/libzauth/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/libzauth/Makefile -------------------------------------------------------------------------------- /libs/libzauth/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/libzauth/README.md -------------------------------------------------------------------------------- /libs/libzauth/libzauth/rustfmt.toml: -------------------------------------------------------------------------------- 1 | disable_all_formatting = true 2 | -------------------------------------------------------------------------------- /libs/metrics-core/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/metrics-wai/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/metrics-wai/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/metrics-wai/LICENSE -------------------------------------------------------------------------------- /libs/polysemy-wire-zoo/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/schema-profunctor/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/sodium-crypto-sign/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/ssl-util/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/ssl-util/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/ssl-util/LICENSE -------------------------------------------------------------------------------- /libs/tasty-cannon/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/types-common-aws/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/types-common-journal/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/types-common/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/wai-utilities/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/wire-api-federation/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/wire-api/.ormolu: -------------------------------------------------------------------------------- 1 | ../../.ormolu -------------------------------------------------------------------------------- /libs/wire-api/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/wire-api/LICENSE -------------------------------------------------------------------------------- /libs/wire-api/Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/wireapp/wire-server/HEAD/libs/wire-api/Readme.md -------------------------------------------------------------------------------- /libs/wire-api/test/golden/fromJSON/testObject_MemberUpdate_user_3.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /libs/wire-api/test/golden/fromJSON/testObject_OtherMemberUpdate_user_2.json: -------------------------------------------------------------------------------- 1 | {} -------------------------------------------------------------------------------- /libs/wire-api/test/golden/fromJSON/testObject_RmClient_failure.json: -------------------------------------------------------------------------------- 1 | {"password":"a"} 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/fromJSON/testObject_RmClient_user_4.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AccessRoleLegacy_user_1.json: -------------------------------------------------------------------------------- 1 | "private" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AccessRoleLegacy_user_2.json: -------------------------------------------------------------------------------- 1 | "non_activated" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AccessRoleLegacy_user_3.json: -------------------------------------------------------------------------------- 1 | "activated" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AccessRoleLegacy_user_4.json: -------------------------------------------------------------------------------- 1 | "team" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Access_user_1.json: -------------------------------------------------------------------------------- 1 | "code" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Access_user_2.json: -------------------------------------------------------------------------------- 1 | "link" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Access_user_3.json: -------------------------------------------------------------------------------- 1 | "private" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Access_user_4.json: -------------------------------------------------------------------------------- 1 | "invite" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Action_user_1.json: -------------------------------------------------------------------------------- 1 | "add_conversation_member" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Action_user_2.json: -------------------------------------------------------------------------------- 1 | "remove_conversation_member" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Action_user_3.json: -------------------------------------------------------------------------------- 1 | "modify_conversation_name" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Action_user_4.json: -------------------------------------------------------------------------------- 1 | "modify_conversation_message_timer" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Action_user_5.json: -------------------------------------------------------------------------------- 1 | "modify_conversation_receipt_mode" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Action_user_6.json: -------------------------------------------------------------------------------- 1 | "modify_conversation_access" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Action_user_7.json: -------------------------------------------------------------------------------- 1 | "modify_other_conversation_member" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Action_user_8.json: -------------------------------------------------------------------------------- 1 | "leave_conversation" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Action_user_9.json: -------------------------------------------------------------------------------- 1 | "delete_conversation" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_1.json: -------------------------------------------------------------------------------- 1 | "FJwIy9tvYg==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_11.json: -------------------------------------------------------------------------------- 1 | "MwcmBl8I-ytX-ssz1u3cy7tFHJQ=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_12.json: -------------------------------------------------------------------------------- 1 | "JXwE8B8yGcmngjxN0g==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_13.json: -------------------------------------------------------------------------------- 1 | "xp-TMSz6BbROrYGCOep_S9U=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_14.json: -------------------------------------------------------------------------------- 1 | "aXpaX2RHq2j_OujDGlQt" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_15.json: -------------------------------------------------------------------------------- 1 | "QL_kpur1eCmcmZKf87Or" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_16.json: -------------------------------------------------------------------------------- 1 | "BtfTK0X0TkdU5710gME=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_17.json: -------------------------------------------------------------------------------- 1 | "2c3OtWcjyg==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_18.json: -------------------------------------------------------------------------------- 1 | "1pI=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_19.json: -------------------------------------------------------------------------------- 1 | "0QO1c30yeQ==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_2.json: -------------------------------------------------------------------------------- 1 | "yvuBLOmFLzk1FHpUap8x" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_20.json: -------------------------------------------------------------------------------- 1 | "MrTs72sNAmcOF4JLBtcsQQ==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_3.json: -------------------------------------------------------------------------------- 1 | "EvM5Jn5M" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_4.json: -------------------------------------------------------------------------------- 1 | "OxGrorjqOUKHYSBbTILDuXp3GH0bLYd2" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_5.json: -------------------------------------------------------------------------------- 1 | "JhhDE2fz95cZ-cRPtgNHPcBRyqS8CA==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_6.json: -------------------------------------------------------------------------------- 1 | "Z9k5agzylBHv0J19Z0uenoE=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_7.json: -------------------------------------------------------------------------------- 1 | "e99bkpy0I-QVIA8A7yRJgYWvB81Cxx3v" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationCode_user_9.json: -------------------------------------------------------------------------------- 1 | "rYg=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_1.json: -------------------------------------------------------------------------------- 1 | "15uY_g6pACNmzgXy" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_10.json: -------------------------------------------------------------------------------- 1 | "Q-Tg4Wl5sOubb_TT2628Y_7_7qVb" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_11.json: -------------------------------------------------------------------------------- 1 | "9kHgasEE6ljb2Z8XmXCFWiwUiw==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_12.json: -------------------------------------------------------------------------------- 1 | "YYAuRUqFvZCEB6g=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_13.json: -------------------------------------------------------------------------------- 1 | "aAFrcaOtda8RrtQ=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_14.json: -------------------------------------------------------------------------------- 1 | "XSt3htt1fnRfLIZvlUkgoCdJfA==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_15.json: -------------------------------------------------------------------------------- 1 | "ANJZ" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_16.json: -------------------------------------------------------------------------------- 1 | "CUg=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_17.json: -------------------------------------------------------------------------------- 1 | "c8c-Beze1OzP" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_18.json: -------------------------------------------------------------------------------- 1 | "3A==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_2.json: -------------------------------------------------------------------------------- 1 | "0MrwcsDxLHCymg==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_20.json: -------------------------------------------------------------------------------- 1 | "z64wDSw3pOs7hTHHdhld" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_3.json: -------------------------------------------------------------------------------- 1 | "rR2dx4uT3AT0SeU8C_XQxrwW" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_4.json: -------------------------------------------------------------------------------- 1 | "FzQ949ghFJI7ZBVbd4zIASZ5" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_5.json: -------------------------------------------------------------------------------- 1 | "vhW086ve4RewjSd8o_m3CC3tFBea" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_6.json: -------------------------------------------------------------------------------- 1 | "31xP7w==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_7.json: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_8.json: -------------------------------------------------------------------------------- 1 | "Ggj1BK4=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ActivationKey_user_9.json: -------------------------------------------------------------------------------- 1 | "2a8zyNgB" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AppName_user_1.json: -------------------------------------------------------------------------------- 1 | "媠t𭔇p+`\n􉙐KZ^Mn͓󳟊Cb\u0005\u0018𤟞m" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ApproveLegalHoldForUserRequest_team_14.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ApproveLegalHoldForUserRequest_team_17.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ApproveLegalHoldForUserRequest_team_2.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetRetention_user_1.json: -------------------------------------------------------------------------------- 1 | "persistent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetRetention_user_13.json: -------------------------------------------------------------------------------- 1 | "expiring" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetRetention_user_2.json: -------------------------------------------------------------------------------- 1 | "eternal" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetRetention_user_3.json: -------------------------------------------------------------------------------- 1 | "eternal-infrequent_access" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetRetention_user_8.json: -------------------------------------------------------------------------------- 1 | "volatile" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSettings_user_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "public": false 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSettings_user_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "public": true 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_1.json: -------------------------------------------------------------------------------- 1 | "preview" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_10.json: -------------------------------------------------------------------------------- 1 | "preview" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_11.json: -------------------------------------------------------------------------------- 1 | "complete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_12.json: -------------------------------------------------------------------------------- 1 | "preview" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_13.json: -------------------------------------------------------------------------------- 1 | "complete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_14.json: -------------------------------------------------------------------------------- 1 | "preview" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_15.json: -------------------------------------------------------------------------------- 1 | "preview" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_16.json: -------------------------------------------------------------------------------- 1 | "complete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_17.json: -------------------------------------------------------------------------------- 1 | "preview" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_18.json: -------------------------------------------------------------------------------- 1 | "preview" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_19.json: -------------------------------------------------------------------------------- 1 | "complete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_2.json: -------------------------------------------------------------------------------- 1 | "preview" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_20.json: -------------------------------------------------------------------------------- 1 | "preview" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_3.json: -------------------------------------------------------------------------------- 1 | "preview" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_4.json: -------------------------------------------------------------------------------- 1 | "preview" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_5.json: -------------------------------------------------------------------------------- 1 | "preview" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_6.json: -------------------------------------------------------------------------------- 1 | "complete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_7.json: -------------------------------------------------------------------------------- 1 | "complete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_8.json: -------------------------------------------------------------------------------- 1 | "preview" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetSize_user_9.json: -------------------------------------------------------------------------------- 1 | "complete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetToken_user_1.json: -------------------------------------------------------------------------------- 1 | "19gg" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetToken_user_12.json: -------------------------------------------------------------------------------- 1 | "CD3Zk7PTkfn816hCz42NE41KpPd4" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetToken_user_15.json: -------------------------------------------------------------------------------- 1 | "G7HpRJ4qnEkkbbswnSW9SAEZtXI9vI9MgQ==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetToken_user_20.json: -------------------------------------------------------------------------------- 1 | "W2jwr0ImzE7IaMvETUb5Bt1rn3E=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetToken_user_4.json: -------------------------------------------------------------------------------- 1 | "NMWuAr4DWSWYN1yQACS39YW-" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_AssetToken_user_5.json: -------------------------------------------------------------------------------- 1 | "1M4G-RUbZgqvkfQ=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CannonId_1.json: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CannonId_2.json: -------------------------------------------------------------------------------- 1 | "sdfiou" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CannonId_3.json: -------------------------------------------------------------------------------- 1 | "1!_*`'\"" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientCapabilityList_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "capabilities": [] 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientCapabilityList_4.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientCapability_1.json: -------------------------------------------------------------------------------- 1 | "legalhold-implicit-consent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientCapability_2.json: -------------------------------------------------------------------------------- 1 | "consumable-notifications" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_1.json: -------------------------------------------------------------------------------- 1 | "phone" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_10.json: -------------------------------------------------------------------------------- 1 | "desktop" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_11.json: -------------------------------------------------------------------------------- 1 | "legalhold" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_12.json: -------------------------------------------------------------------------------- 1 | "phone" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_13.json: -------------------------------------------------------------------------------- 1 | "desktop" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_14.json: -------------------------------------------------------------------------------- 1 | "legalhold" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_15.json: -------------------------------------------------------------------------------- 1 | "legalhold" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_16.json: -------------------------------------------------------------------------------- 1 | "phone" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_17.json: -------------------------------------------------------------------------------- 1 | "desktop" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_18.json: -------------------------------------------------------------------------------- 1 | "phone" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_19.json: -------------------------------------------------------------------------------- 1 | "desktop" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_2.json: -------------------------------------------------------------------------------- 1 | "legalhold" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_20.json: -------------------------------------------------------------------------------- 1 | "desktop" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_3.json: -------------------------------------------------------------------------------- 1 | "desktop" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_4.json: -------------------------------------------------------------------------------- 1 | "tablet" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_5.json: -------------------------------------------------------------------------------- 1 | "desktop" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_6.json: -------------------------------------------------------------------------------- 1 | "legalhold" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_7.json: -------------------------------------------------------------------------------- 1 | "phone" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_8.json: -------------------------------------------------------------------------------- 1 | "phone" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientClass_user_9.json: -------------------------------------------------------------------------------- 1 | "phone" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_1.json: -------------------------------------------------------------------------------- 1 | "legalhold" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_10.json: -------------------------------------------------------------------------------- 1 | "permanent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_11.json: -------------------------------------------------------------------------------- 1 | "permanent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_12.json: -------------------------------------------------------------------------------- 1 | "permanent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_13.json: -------------------------------------------------------------------------------- 1 | "permanent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_14.json: -------------------------------------------------------------------------------- 1 | "permanent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_15.json: -------------------------------------------------------------------------------- 1 | "permanent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_16.json: -------------------------------------------------------------------------------- 1 | "permanent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_17.json: -------------------------------------------------------------------------------- 1 | "legalhold" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_18.json: -------------------------------------------------------------------------------- 1 | "permanent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_19.json: -------------------------------------------------------------------------------- 1 | "permanent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_2.json: -------------------------------------------------------------------------------- 1 | "temporary" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_20.json: -------------------------------------------------------------------------------- 1 | "legalhold" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_3.json: -------------------------------------------------------------------------------- 1 | "permanent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_4.json: -------------------------------------------------------------------------------- 1 | "permanent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_5.json: -------------------------------------------------------------------------------- 1 | "temporary" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_6.json: -------------------------------------------------------------------------------- 1 | "temporary" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_7.json: -------------------------------------------------------------------------------- 1 | "temporary" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_8.json: -------------------------------------------------------------------------------- 1 | "temporary" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ClientType_user_9.json: -------------------------------------------------------------------------------- 1 | "permanent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_1.json: -------------------------------------------------------------------------------- 1 | -7404 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_10.json: -------------------------------------------------------------------------------- 1 | -30132 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_11.json: -------------------------------------------------------------------------------- 1 | -28959 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_12.json: -------------------------------------------------------------------------------- 1 | 19133 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_13.json: -------------------------------------------------------------------------------- 1 | -27443 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_14.json: -------------------------------------------------------------------------------- 1 | -19025 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_15.json: -------------------------------------------------------------------------------- 1 | -9638 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_16.json: -------------------------------------------------------------------------------- 1 | -13889 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_17.json: -------------------------------------------------------------------------------- 1 | 31293 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_18.json: -------------------------------------------------------------------------------- 1 | -10194 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_19.json: -------------------------------------------------------------------------------- 1 | 31286 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_2.json: -------------------------------------------------------------------------------- 1 | 27569 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_20.json: -------------------------------------------------------------------------------- 1 | -7467 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_3.json: -------------------------------------------------------------------------------- 1 | 4183 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_4.json: -------------------------------------------------------------------------------- 1 | 31095 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_5.json: -------------------------------------------------------------------------------- 1 | -14835 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_6.json: -------------------------------------------------------------------------------- 1 | 4611 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_7.json: -------------------------------------------------------------------------------- 1 | 21595 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_8.json: -------------------------------------------------------------------------------- 1 | 23554 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ColourId_user_9.json: -------------------------------------------------------------------------------- 1 | -16722 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ConvType_user_1.json: -------------------------------------------------------------------------------- 1 | 1 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ConvType_user_2.json: -------------------------------------------------------------------------------- 1 | 2 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ConvType_user_3.json: -------------------------------------------------------------------------------- 1 | 3 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ConvType_user_4.json: -------------------------------------------------------------------------------- 1 | 0 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ConversationPagingState_1.json: -------------------------------------------------------------------------------- 1 | "AA==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ConversationPagingState_2.json: -------------------------------------------------------------------------------- 1 | "AAABWGN9WA==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ConversationPagingState_3.json: -------------------------------------------------------------------------------- 1 | "AQ==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ConversationPagingState_4.json: -------------------------------------------------------------------------------- 1 | "AVgMFw==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_1.json: -------------------------------------------------------------------------------- 1 | 16065 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_10.json: -------------------------------------------------------------------------------- 1 | 27433 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_11.json: -------------------------------------------------------------------------------- 1 | 27559 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_12.json: -------------------------------------------------------------------------------- 1 | 27974 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_13.json: -------------------------------------------------------------------------------- 1 | 17088 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_14.json: -------------------------------------------------------------------------------- 1 | 25289 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_15.json: -------------------------------------------------------------------------------- 1 | 9317 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_16.json: -------------------------------------------------------------------------------- 1 | 16949 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_17.json: -------------------------------------------------------------------------------- 1 | 19999 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_18.json: -------------------------------------------------------------------------------- 1 | 27271 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_19.json: -------------------------------------------------------------------------------- 1 | 25770 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_2.json: -------------------------------------------------------------------------------- 1 | 27640 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_20.json: -------------------------------------------------------------------------------- 1 | 11230 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_3.json: -------------------------------------------------------------------------------- 1 | 21839 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_4.json: -------------------------------------------------------------------------------- 1 | 7679 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_5.json: -------------------------------------------------------------------------------- 1 | 15379 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_6.json: -------------------------------------------------------------------------------- 1 | 26192 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_7.json: -------------------------------------------------------------------------------- 1 | 24326 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_8.json: -------------------------------------------------------------------------------- 1 | 31657 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieId_user_9.json: -------------------------------------------------------------------------------- 1 | 28251 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieLabel_user_1.json: -------------------------------------------------------------------------------- 1 | "\"$s럧󲶲*\u0018" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieLabel_user_11.json: -------------------------------------------------------------------------------- 1 | "󰿙" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieLabel_user_12.json: -------------------------------------------------------------------------------- 1 | "h-쾪" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieLabel_user_13.json: -------------------------------------------------------------------------------- 1 | "󷋧}u\u0015󽅠P2 xj􋞣>G,2@e󲡓n{" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieLabel_user_14.json: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieLabel_user_16.json: -------------------------------------------------------------------------------- 1 | "𣧻" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieLabel_user_17.json: -------------------------------------------------------------------------------- 1 | "X󷲕𡼅\u0014㯲󼏁" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieLabel_user_19.json: -------------------------------------------------------------------------------- 1 | "0𗐠;𓉳\u0004" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieLabel_user_20.json: -------------------------------------------------------------------------------- 1 | "􂆦mI𒐉.Cov\u000e𑂅6󿃊" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieList_user_12.json: -------------------------------------------------------------------------------- 1 | { 2 | "cookies": [] 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieList_user_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "cookies": [] 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_1.json: -------------------------------------------------------------------------------- 1 | "session" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_10.json: -------------------------------------------------------------------------------- 1 | "persistent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_11.json: -------------------------------------------------------------------------------- 1 | "session" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_12.json: -------------------------------------------------------------------------------- 1 | "persistent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_13.json: -------------------------------------------------------------------------------- 1 | "session" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_14.json: -------------------------------------------------------------------------------- 1 | "session" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_15.json: -------------------------------------------------------------------------------- 1 | "session" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_16.json: -------------------------------------------------------------------------------- 1 | "persistent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_17.json: -------------------------------------------------------------------------------- 1 | "persistent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_18.json: -------------------------------------------------------------------------------- 1 | "persistent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_19.json: -------------------------------------------------------------------------------- 1 | "session" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_2.json: -------------------------------------------------------------------------------- 1 | "session" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_20.json: -------------------------------------------------------------------------------- 1 | "session" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_3.json: -------------------------------------------------------------------------------- 1 | "session" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_4.json: -------------------------------------------------------------------------------- 1 | "persistent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_5.json: -------------------------------------------------------------------------------- 1 | "persistent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_6.json: -------------------------------------------------------------------------------- 1 | "session" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_7.json: -------------------------------------------------------------------------------- 1 | "persistent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_8.json: -------------------------------------------------------------------------------- 1 | "persistent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_CookieType_user_9.json: -------------------------------------------------------------------------------- 1 | "persistent" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_DeleteUser_user_14.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_DeleteUser_user_5.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_DisableLegalHoldForUserRequest_team_14.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_DisableLegalHoldForUserRequest_team_7.json: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Email_user_1.json: -------------------------------------------------------------------------------- 1 | "some@example" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_1.json: -------------------------------------------------------------------------------- 1 | "team.conversation-delete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_10.json: -------------------------------------------------------------------------------- 1 | "team.conversation-delete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_11.json: -------------------------------------------------------------------------------- 1 | "team.conversation-delete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_12.json: -------------------------------------------------------------------------------- 1 | "team.create" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_13.json: -------------------------------------------------------------------------------- 1 | "team.conversation-create" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_14.json: -------------------------------------------------------------------------------- 1 | "team.conversation-delete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_15.json: -------------------------------------------------------------------------------- 1 | "team.conversation-delete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_16.json: -------------------------------------------------------------------------------- 1 | "team.conversation-create" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_17.json: -------------------------------------------------------------------------------- 1 | "team.conversation-delete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_18.json: -------------------------------------------------------------------------------- 1 | "team.member-update" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_19.json: -------------------------------------------------------------------------------- 1 | "team.delete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_2.json: -------------------------------------------------------------------------------- 1 | "team.conversation-create" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_20.json: -------------------------------------------------------------------------------- 1 | "team.conversation-create" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_3.json: -------------------------------------------------------------------------------- 1 | "team.member-leave" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_4.json: -------------------------------------------------------------------------------- 1 | "team.member-join" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_5.json: -------------------------------------------------------------------------------- 1 | "team.update" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_6.json: -------------------------------------------------------------------------------- 1 | "team.create" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_7.json: -------------------------------------------------------------------------------- 1 | "team.member-join" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_8.json: -------------------------------------------------------------------------------- 1 | "team.conversation-create" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_team_9.json: -------------------------------------------------------------------------------- 1 | "team.member-join" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_1.json: -------------------------------------------------------------------------------- 1 | "conversation.member-join" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_10.json: -------------------------------------------------------------------------------- 1 | "conversation.connect-request" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_11.json: -------------------------------------------------------------------------------- 1 | "conversation.delete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_12.json: -------------------------------------------------------------------------------- 1 | "conversation.receipt-mode-update" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_13.json: -------------------------------------------------------------------------------- 1 | "conversation.otr-message-add" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_14.json: -------------------------------------------------------------------------------- 1 | "conversation.typing" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_2.json: -------------------------------------------------------------------------------- 1 | "conversation.member-leave" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_3.json: -------------------------------------------------------------------------------- 1 | "conversation.member-update" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_4.json: -------------------------------------------------------------------------------- 1 | "conversation.rename" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_5.json: -------------------------------------------------------------------------------- 1 | "conversation.access-update" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_6.json: -------------------------------------------------------------------------------- 1 | "conversation.message-timer-update" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_7.json: -------------------------------------------------------------------------------- 1 | "conversation.code-update" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_8.json: -------------------------------------------------------------------------------- 1 | "conversation.code-delete" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_EventType_user_9.json: -------------------------------------------------------------------------------- 1 | "conversation.create" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_GetPaginatedConversationIds_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "size": 50 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_GroupId_1.json: -------------------------------------------------------------------------------- 1 | "dGVzdF9ncm91cA==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_HandleUpdate_user_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "handle": ")QH)SN" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_InvitationCode_user_3.json: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_InvitationCode_user_4.json: -------------------------------------------------------------------------------- 1 | "0y-7KQ==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_InvitationCode_user_5.json: -------------------------------------------------------------------------------- 1 | "-Oj_2VAtOI_kSg==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_1.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_10.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_11.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_12.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_13.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_14.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_15.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_16.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_17.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_18.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_19.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_2.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_20.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_3.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_4.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_5.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_6.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_7.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_8.json: -------------------------------------------------------------------------------- 1 | true 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListType_team_9.json: -------------------------------------------------------------------------------- 1 | false 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ListUsersById_user_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "found": [] 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "bo-DK" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_10.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "mi-SC" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_11.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "ts-NU" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_12.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "ku" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_13.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "ee-CH" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_14.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "kv-MT" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_15.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "sa-CI" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_16.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "fa-MC" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_17.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "os-MD" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_18.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "hi-PG" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_19.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "tn-SZ" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "ii" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_20.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "mi-ML" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "ik-BZ" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "ve-AE" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "to-SY" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "rw-AG" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "gu" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_8.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "kv" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LocaleUpdate_user_9.json: -------------------------------------------------------------------------------- 1 | { 2 | "locale": "fy" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_1.json: -------------------------------------------------------------------------------- 1 | "bn" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_10.json: -------------------------------------------------------------------------------- 1 | "bn-HT" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_11.json: -------------------------------------------------------------------------------- 1 | "es-IN" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_12.json: -------------------------------------------------------------------------------- 1 | "es-LK" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_13.json: -------------------------------------------------------------------------------- 1 | "cv" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_14.json: -------------------------------------------------------------------------------- 1 | "yo-PS" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_15.json: -------------------------------------------------------------------------------- 1 | "da" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_16.json: -------------------------------------------------------------------------------- 1 | "af-DO" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_17.json: -------------------------------------------------------------------------------- 1 | "ms" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_18.json: -------------------------------------------------------------------------------- 1 | "oc" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_19.json: -------------------------------------------------------------------------------- 1 | "oc" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_2.json: -------------------------------------------------------------------------------- 1 | "mn-MA" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_20.json: -------------------------------------------------------------------------------- 1 | "pt-LS" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_3.json: -------------------------------------------------------------------------------- 1 | "sq" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_4.json: -------------------------------------------------------------------------------- 1 | "bg-VI" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_5.json: -------------------------------------------------------------------------------- 1 | "mt" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_6.json: -------------------------------------------------------------------------------- 1 | "io-TL" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_7.json: -------------------------------------------------------------------------------- 1 | "bn-IN" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_8.json: -------------------------------------------------------------------------------- 1 | "rm-EG" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Locale_user_9.json: -------------------------------------------------------------------------------- 1 | "os-CR" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": -25 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_10.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": -3 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_11.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": -1 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_12.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": -2 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_15.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": 6 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_16.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": 23 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_17.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": 29 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_18.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": 22 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_19.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": 7 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": 20 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_20.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": -5 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": 3 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": -15 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_5.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": -24 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": -14 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_7.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": -27 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_8.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": 12 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCodeTimeout_user_9.json: -------------------------------------------------------------------------------- 1 | { 2 | "expires_in": 21 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_1.json: -------------------------------------------------------------------------------- 1 | "\u0010~0j" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_12.json: -------------------------------------------------------------------------------- 1 | "S!i5\u001a{󾚶!]\u0018ꍬ􇜐l" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_13.json: -------------------------------------------------------------------------------- 1 | "}\u000fQ:阬⻲H􏜈\u0012T" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_14.json: -------------------------------------------------------------------------------- 1 | "7V𝃥𒅡/?O􈹍D\u0011" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_15.json: -------------------------------------------------------------------------------- 1 | "r⮚L[눲c3e]􅺟N\u001a" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_16.json: -------------------------------------------------------------------------------- 1 | "s􍃯" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_17.json: -------------------------------------------------------------------------------- 1 | "A,gVB.Nf‿5󳿘[󾣊@􌬧=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_18.json: -------------------------------------------------------------------------------- 1 | "E􀐄_b^V\u0004\u001a>%芰B/g" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_19.json: -------------------------------------------------------------------------------- 1 | "z!@hZF\u001cj\u000b𡞊✚" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_20.json: -------------------------------------------------------------------------------- 1 | "\n&%3s:q󺨔󷴁cu\u001e\u0014p4.N􁔝T" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_3.json: -------------------------------------------------------------------------------- 1 | "=ul^鋃b𨐏􄻀h6" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_4.json: -------------------------------------------------------------------------------- 1 | "." 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_6.json: -------------------------------------------------------------------------------- 1 | "M@\u0010*" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginCode_user_9.json: -------------------------------------------------------------------------------- 1 | "f`j󴱼K\u001fm􎬧딅>\u0017%O" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginId_user_1.json: -------------------------------------------------------------------------------- 1 | { 2 | "email": "some@example" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginId_user_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "email": "some@example" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginId_user_3.json: -------------------------------------------------------------------------------- 1 | { 2 | "handle": "7a8gg3v98" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginId_user_4.json: -------------------------------------------------------------------------------- 1 | { 2 | "handle": "lb" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_LoginId_user_6.json: -------------------------------------------------------------------------------- 1 | { 2 | "email": "some@example" 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_1.json: -------------------------------------------------------------------------------- 1 | "wire" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_10.json: -------------------------------------------------------------------------------- 1 | "scim" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_11.json: -------------------------------------------------------------------------------- 1 | "scim" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_12.json: -------------------------------------------------------------------------------- 1 | "wire" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_13.json: -------------------------------------------------------------------------------- 1 | "wire" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_14.json: -------------------------------------------------------------------------------- 1 | "wire" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_15.json: -------------------------------------------------------------------------------- 1 | "wire" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_16.json: -------------------------------------------------------------------------------- 1 | "wire" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_17.json: -------------------------------------------------------------------------------- 1 | "wire" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_18.json: -------------------------------------------------------------------------------- 1 | "scim" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_19.json: -------------------------------------------------------------------------------- 1 | "wire" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_2.json: -------------------------------------------------------------------------------- 1 | "scim" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_20.json: -------------------------------------------------------------------------------- 1 | "wire" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_3.json: -------------------------------------------------------------------------------- 1 | "wire" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_4.json: -------------------------------------------------------------------------------- 1 | "scim" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_5.json: -------------------------------------------------------------------------------- 1 | "wire" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_6.json: -------------------------------------------------------------------------------- 1 | "wire" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_7.json: -------------------------------------------------------------------------------- 1 | "scim" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_8.json: -------------------------------------------------------------------------------- 1 | "wire" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_ManagedBy_user_9.json: -------------------------------------------------------------------------------- 1 | "scim" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_MemberUpdate_user_2.json: -------------------------------------------------------------------------------- 1 | { 2 | "hidden": false 3 | } 4 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_MutedStatus_user_1.json: -------------------------------------------------------------------------------- 1 | 1253 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Name_user_16.json: -------------------------------------------------------------------------------- 1 | "Vt}\u001c" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Name_user_18.json: -------------------------------------------------------------------------------- 1 | "aDZ\t󷤎-F.N?[HPxaui1龥\u0015SA7k!^(Fr" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Name_user_19.json: -------------------------------------------------------------------------------- 1 | "𨎥,\u000fခlKYF\u0011f'~H󾬟糋RI󳮡VI鰧󱐷wA'N" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Name_user_3.json: -------------------------------------------------------------------------------- 1 | "=\\𮛯𞋔LKC􄖬)u`\u000fm􇻂\u0018'" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Name_user_7.json: -------------------------------------------------------------------------------- 1 | "9h\\\u0002qSFc" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_1.json: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_10.json: -------------------------------------------------------------------------------- 1 | "xuk=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_11.json: -------------------------------------------------------------------------------- 1 | "KDnmIKWtN05-lUhE" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_12.json: -------------------------------------------------------------------------------- 1 | "IGKDqfCYsFkOZw==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_14.json: -------------------------------------------------------------------------------- 1 | "og7OvTf3bJiUgIZE" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_15.json: -------------------------------------------------------------------------------- 1 | "EL9g" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_17.json: -------------------------------------------------------------------------------- 1 | "" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_18.json: -------------------------------------------------------------------------------- 1 | "W3RLTh1wbik=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_19.json: -------------------------------------------------------------------------------- 1 | "m-Zh-cCYzhYY1vLf4gW6" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_3.json: -------------------------------------------------------------------------------- 1 | "sP9UlBCOng==" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_5.json: -------------------------------------------------------------------------------- 1 | "lPJNfPNKQUdGHBnmfStc9CyX" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_6.json: -------------------------------------------------------------------------------- 1 | "5hytdEvbgEY=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_7.json: -------------------------------------------------------------------------------- 1 | "NzCRCk-v-hxNW7ZM08D1lUB-" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_8.json: -------------------------------------------------------------------------------- 1 | "CP8=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PasswordResetKey_user_9.json: -------------------------------------------------------------------------------- 1 | "Vg9OYTx_vr8c" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_1.json: -------------------------------------------------------------------------------- 1 | "+50797973398725" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_10.json: -------------------------------------------------------------------------------- 1 | "+102469356765" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_11.json: -------------------------------------------------------------------------------- 1 | "+55060638135" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_12.json: -------------------------------------------------------------------------------- 1 | "+588730955259955" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_13.json: -------------------------------------------------------------------------------- 1 | "+2072442026" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_14.json: -------------------------------------------------------------------------------- 1 | "+692203804094831" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_15.json: -------------------------------------------------------------------------------- 1 | "+5471562223455" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_16.json: -------------------------------------------------------------------------------- 1 | "+3767234745" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_17.json: -------------------------------------------------------------------------------- 1 | "+857847846836" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_18.json: -------------------------------------------------------------------------------- 1 | "+92148623434201" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_19.json: -------------------------------------------------------------------------------- 1 | "+851735292622" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_2.json: -------------------------------------------------------------------------------- 1 | "+324868524134229" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_20.json: -------------------------------------------------------------------------------- 1 | "+543953708562116" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_3.json: -------------------------------------------------------------------------------- 1 | "+476681824034183" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_4.json: -------------------------------------------------------------------------------- 1 | "+84424141890561" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_5.json: -------------------------------------------------------------------------------- 1 | "+4094767235" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_6.json: -------------------------------------------------------------------------------- 1 | "+08890892" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_7.json: -------------------------------------------------------------------------------- 1 | "+8514802391189" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_8.json: -------------------------------------------------------------------------------- 1 | "+2284101925556" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Phone_user_9.json: -------------------------------------------------------------------------------- 1 | "+101238097484" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_1.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_10.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_11.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_12.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_13.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_14.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_15.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_16.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_17.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_18.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_19.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_2.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_20.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_3.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_4.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_5.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_6.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_7.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_8.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Pict_user_9.json: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_1.json: -------------------------------------------------------------------------------- 1 | 9918 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_10.json: -------------------------------------------------------------------------------- 1 | 13545 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_11.json: -------------------------------------------------------------------------------- 1 | 10304 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_12.json: -------------------------------------------------------------------------------- 1 | 10519 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_13.json: -------------------------------------------------------------------------------- 1 | 6794 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_14.json: -------------------------------------------------------------------------------- 1 | 22226 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_15.json: -------------------------------------------------------------------------------- 1 | 6782 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_16.json: -------------------------------------------------------------------------------- 1 | 17115 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_17.json: -------------------------------------------------------------------------------- 1 | 15048 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_18.json: -------------------------------------------------------------------------------- 1 | 137 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_19.json: -------------------------------------------------------------------------------- 1 | 4899 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_2.json: -------------------------------------------------------------------------------- 1 | 22170 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_20.json: -------------------------------------------------------------------------------- 1 | 25385 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_3.json: -------------------------------------------------------------------------------- 1 | 2668 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_4.json: -------------------------------------------------------------------------------- 1 | 26302 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_5.json: -------------------------------------------------------------------------------- 1 | 8313 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_6.json: -------------------------------------------------------------------------------- 1 | 13240 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_7.json: -------------------------------------------------------------------------------- 1 | 18713 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_8.json: -------------------------------------------------------------------------------- 1 | 12297 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PrekeyId_user_9.json: -------------------------------------------------------------------------------- 1 | 25257 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Priority_user_1.json: -------------------------------------------------------------------------------- 1 | "high" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_Priority_user_2.json: -------------------------------------------------------------------------------- 1 | "low" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PropertyKey_user_1.json: -------------------------------------------------------------------------------- 1 | "\\#(pEr>=1=|[3U8#*-" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PropertyKey_user_10.json: -------------------------------------------------------------------------------- 1 | "{4JU(" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PropertyKey_user_11.json: -------------------------------------------------------------------------------- 1 | "OHeuP_;raj|3E3p6L!gbXC&dz$~" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PropertyKey_user_12.json: -------------------------------------------------------------------------------- 1 | "ubsV.n^Rg\"Sk_KtM=" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PropertyKey_user_13.json: -------------------------------------------------------------------------------- 1 | "K@\"B0-ht4]`)W" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PropertyKey_user_4.json: -------------------------------------------------------------------------------- 1 | "bv\"s1=]&\"^\\$05T=h$U.Qd:" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PropertyKey_user_5.json: -------------------------------------------------------------------------------- 1 | "9$\\K\\e*]z[nPd|y.loOEHk" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PropertyKey_user_6.json: -------------------------------------------------------------------------------- 1 | "&32zNqRJI.L:yD!\"Y(P" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PropertyKey_user_7.json: -------------------------------------------------------------------------------- 1 | "to(YvZL!ukU8_lIvP4HD6G 5r.82" 2 | -------------------------------------------------------------------------------- /libs/wire-api/test/golden/testObject_PropertyKey_user_8.json: -------------------------------------------------------------------------------- 1 | "8Ki&S