├── .github ├── dependabot.yml ├── pull_request_template.md └── workflows │ ├── api-tests-code-quality.yml │ ├── ci-app-router.yml │ └── relyance-sci.yml ├── .gitignore ├── .nvmrc ├── .vscode ├── extensions.json └── settings.json ├── CODEOWNERS ├── LICENSE ├── Makefile ├── README.md ├── cspell.json ├── docker-compose-test.yaml ├── docker-compose.yaml ├── hasura ├── .dockerignore ├── Dockerfile ├── README.md ├── config.yaml ├── metadata │ ├── actions.graphql │ ├── actions.yaml │ ├── allow_list.yaml │ ├── api_limits.yaml │ ├── backend_configs.yaml │ ├── cron_triggers.yaml │ ├── databases │ │ ├── databases.yaml │ │ └── default │ │ │ ├── functions │ │ │ ├── functions.yaml │ │ │ ├── public_action_stats.yaml │ │ │ ├── public_increment_app_stats.yaml │ │ │ └── public_rollup_app_stats.yaml │ │ │ └── tables │ │ │ ├── public_action.yaml │ │ │ ├── public_action_stats_returning.yaml │ │ │ ├── public_api_key.yaml │ │ │ ├── public_app.yaml │ │ │ ├── public_app_daily_users.yaml │ │ │ ├── public_app_metadata.yaml │ │ │ ├── public_app_rankings.yaml │ │ │ ├── public_app_report.yaml │ │ │ ├── public_app_report_appeal.yaml │ │ │ ├── public_app_reviews.yaml │ │ │ ├── public_app_stats.yaml │ │ │ ├── public_auth_code.yaml │ │ │ ├── public_cache.yaml │ │ │ ├── public_invite.yaml │ │ │ ├── public_jwks.yaml │ │ │ ├── public_localisations.yaml │ │ │ ├── public_membership.yaml │ │ │ ├── public_notification_log.yaml │ │ │ ├── public_notification_log_wallet_address.yaml │ │ │ ├── public_nullifier.yaml │ │ │ ├── public_nullifier_uses_seen.yaml │ │ │ ├── public_redirect.yaml │ │ │ ├── public_role.yaml │ │ │ ├── public_role_enum.yaml │ │ │ ├── public_team.yaml │ │ │ ├── public_user.yaml │ │ │ └── tables.yaml │ ├── graphql_schema_introspection.yaml │ ├── inherited_roles.yaml │ ├── metrics_config.yaml │ ├── network.yaml │ ├── opentelemetry.yaml │ ├── query_collections.yaml │ ├── remote_schemas.yaml │ ├── rest_endpoints.yaml │ └── version.yaml ├── migrations │ └── default │ │ ├── 1676582194859_gen_random_friendly_id │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1676582663723_create_table_public_cache │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1676582806432_create_table_public_team │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1676583036959_create_table_public_user │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1676583332783_create_table_public_app │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1676583412223_app_table_functions │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1676583921722_create_table_public_action │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1676584181333_create_table_public_nullifier │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1676584281958_create_table_public_jwks │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1676584337807_create_table_public_api_key │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1677035369959_app_defaults │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1677035369960_create_table_public_revoke │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1677090819927_app_description_and_id │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1677111527278_create_table_public_auth_code │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1677177844875_alter_table_public_revocation_alter_column_type │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1677197761772_alter_table_public_action_add_column_client_secret │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1677216597977_alter_table_public_auth_code_add_column_credential_type │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1677220161289_alter_table_public_team_alter_column_name │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1677373216922_alter_table_public_auth_code_add_column_scope │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1677376844531_alter_table_public_jwks_add_column_alg │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1677773990566_alter_table_public_user_add_column_name │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1677781766825_kiosk_enabled_columns │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1678060027000_create_table_public_redirect │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1678460154035_app_stats │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1678730882670_alter_table_public_nullifier_alter_column_verification_level │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1678731130822_alter_table_public_nullifier_add_check_constraint_credential_type_choices │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1680037250820_alter_table_public_jwks_drop_column_private_jwk │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1681503753748_alter_table_public_api_key_add_column_api_key │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1686780048978_create_table_public_invite │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1690027572107_alter_table_public_user_alter_column_email │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1691608768776_alter_table_public_auth_code_add_column_code_challenge │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1691756907458_alter_table_public_user_add_column_auth0Id │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1692799843847_alter_table_public_auth_code_add_column_nonce │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1694554919882_alter_table_nullifier_add_uses │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1694731348594_alter_table_public_action_add_column_privacy_policy_uri │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1694731364313_alter_table_public_action_add_column_terms_uri │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1698852361636_drop_table_public_revocation │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1699244895189_alter_table_public_user_alter_column_world_id_nullifier │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1702306472486_replace_phone_credentials_with_device │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1702365006773_alter_table_public_auth_code_alter_column_credential_type_drop_credential_type │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1703174336818_create_role_and_membership_tables │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1704485495003_alter_table_public_user_add_column_posthog_id │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1704993161810_create_table_app_metadata │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1705073562169_add_owners_to_memberships_table │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1705087600730_migrate_dropped_app_rows_to_app_metadata │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1705344968980_modify-app-metadata-functions │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1705367428341_fis_is_row_verified │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1705775389481_turn_on_img_trigger │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1706906593905_alter-app-metadata-image-trigger │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1707463125126_create_action_stats_table │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1707493190197_alter_table_public_user_alter_column_team_id │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1709239940160_alter_table_public_user_add_column_allow_tracking │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1710320198066_create_table_public_app_rankings │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1711395260240_alter_table_public_nullifier_alter_column_uses │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1711480845120_token-redirect-uri-validation │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1712070347860_create_get_team_owners_count_func │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1712177502163_alter_table_app_rankings_constraint │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1712797451184_alter_table_public_app_metadata_add_column_world_app_button_text │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1713898610628_alter_table_public_app_metadata_miniapps │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1713898610728_alter_table_public_app_metadata_miniapps_add_support_info │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1718063882069_create_table_public_app_reviews │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1720034330656_alter_table_public_app_metadata_alter_column_support_email │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1720619522063_alter_table_public_app_metadata_add_column_short_name │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1720687478651_create_table_public_localisations │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1720894281631_alter_table_public_app_metadata_alter_column_supported_languages │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1723063311225_allow_local_host_for_development │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1723148219538_revert_local_host_changes_to_urls │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1724764553849_add_associated_domains │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1725278962961_add_crypto_permissions │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1726177042301_add import all contacts │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1727274232032_add_notification_limiting │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1727774280518_notification_logs │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1728039437362_app_reports_and_app_ban │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1728039537362_app_is_banned_non_null │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1728679706721_create_index_public_apps_index │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1729020740764_userid_in_reports │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1731362032660_optimize_indexes │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1731366080224_create_index_action_id_uses │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1731385475816_remove_unique_index │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1731385475817_columns_to_snake_case │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1731541591407_max_uses_trigger │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1731651264113_create_index_app_id_index │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1732626626712_app_report_purpose_violation_columns │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1733533994467_compute_ratings │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1733773864649_alter_table_public_app_alter_column_rating_sum │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1734352181220_app_report_drop_app_name │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1734352197245_app_reports_restructure │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1734430170874_app_metadata_changelog │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1734434351836_drop_checks_app_report │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1734649515450_alter_table_public_action_add_unique_external_nullifier │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1734715059615_enforce-whitelist │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1737035548134_recalculate_app_ratings │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1739394725314_alter_table_public_action_add_column_webhook_uri_pem │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1740445227075_app_report_appeals_and_app_report_rework │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1741092969201_app_report_less_strict_checks │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1741690694094_add_images_to_localisation │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1743352480964_create_index_notification_log_created_at │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1743603595554_create_index_notification_log_wallet_address_notification_log_id_fkey_index │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1744226238392_alter_table_public_app_metadata_add_column_is_higher_risk │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1744599165683_alter_table_public_app_metadata_add_column_is_for_humans_only │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1744851798489_deduplicate_localisations │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1745259204240_reset_invalid_fields │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1745259377078_is_android_only_default_false │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1745535317028_add_meta_tag_image │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1747148370416_alter_table_public_app_metadata_add_column_should_uninstall_on_delist │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1747818197472_alter_table_public_nullifier_add_column_nullifier_hash_int │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1747841041612_run_verification_trigger_only_when_uses_column_updates │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1748005396949_create_and_fill_table_app_stats │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1748018440831_1748018155000_add_notification_state_tracking │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1751472174016_alter_table_public_app_add_column_deleted_at │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1755164905191_add_columns_dev_rewards_approved_and_has_airdrop_component │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1755180439544_alter_table_public_app_add_column_first_verified_at │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1756378551887_alter_table_public_team_add_column_deleted_at │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1756468293120_drop_notifications_status_check │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1756982336943_alter_table_public_app_metadata_add_column_content_card_image_url │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1757506407060_move_columns_dev_rewards_approved_and_has_airdrop_component │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1757510217113_rework_app_stats_functionality │ │ ├── down.sql │ │ └── up.sql │ │ ├── 1758807520730_remove_sign_in_with_world_id │ │ ├── down.sql │ │ └── up.sql │ │ └── 1761059696884_update_validate_single_url_regex │ │ ├── down.sql │ │ └── up.sql └── seeds │ └── default │ ├── 1676722071333_cacheSeed.sql │ ├── 1676722071530_jwkSeed.sql │ ├── 1676722071560_teamSeed.sql │ ├── 1676722088705_userSeed.sql │ ├── 1678146259008_appSeed.sql │ ├── 1678146469554_actionSeed.sql │ ├── 1678146566240_redirectSeed.sql │ └── 1704901197527_membershipsSeed.sql ├── relyance.yaml ├── tests └── api │ ├── .env.development │ ├── .prettierignore │ ├── .prettierrc │ ├── README.md │ ├── cspell.json │ ├── eslint.config.ts │ ├── global.d.ts │ ├── helpers │ ├── auth0 │ │ ├── constants.ts │ │ ├── create-app-session.ts │ │ ├── create-cookie.ts │ │ ├── decrypt.ts │ │ ├── encrypt.ts │ │ └── index.ts │ ├── aws-authorizer-lambda.ts │ ├── hasura.ts │ ├── index.ts │ └── s3-setup.ts │ ├── jest.config.ts │ ├── jest.setup.ts │ ├── package.json │ ├── pnpm-lock.yaml │ ├── specs │ ├── auxiliary │ │ └── auxiliary-endpoints.spec.ts │ ├── dev-portal-helpers │ │ ├── create-action.spec.ts │ │ ├── create-team.spec.ts │ │ └── graphql-proxy.spec.ts │ ├── hasura │ │ ├── app-draft.spec.ts │ │ ├── app-management.spec.ts │ │ ├── app-verification.spec.ts │ │ ├── get-app-review-images.spec.ts │ │ ├── get-image.spec.ts │ │ ├── get-unverified-images.spec.ts │ │ ├── invalidate-cache.spec.ts │ │ ├── invite-team-members.spec.ts │ │ ├── reset-api-key.spec.ts │ │ ├── upload-image.spec.ts │ │ └── validate-localisation.spec.ts │ └── public │ │ └── public-apps.spec.ts │ └── tsconfig.json └── web ├── .dockerignore ├── .env.test ├── .eslintrc.js ├── .gitignore ├── .graphqlconfig ├── .prettierignore ├── .prettierrc.js ├── @types └── global.d.ts ├── Dockerfile ├── README.md ├── api ├── _delete-expired-auth-codes │ ├── graphql │ │ ├── delete-expired-auth-codes.generated.ts │ │ └── delete-expired-auth-codes.graphql │ └── index.ts ├── _delete-jwks │ └── index.ts ├── _gen-external-nullifier │ ├── graphql │ │ ├── set-external-nulifier.generated.ts │ │ └── set-external-nulifier.graphql │ └── index.ts ├── _rollup-app-stats │ ├── graphql │ │ ├── rollup-app-stats.generated.ts │ │ └── rollup-app-stats.graphql │ └── index.ts ├── auth │ └── [auth0] │ │ └── index.ts ├── create-team │ ├── graphql │ │ ├── insert-membership.generated.ts │ │ ├── insert-membership.graphql │ │ ├── insert-team.generated.ts │ │ ├── insert-team.graphql │ │ ├── insert-user.generated.ts │ │ └── insert-user.graphql │ └── index.ts ├── delete-account │ └── index.ts ├── delete-expired-notification-logs │ ├── graphql │ │ ├── delete-expired-notification-logs-batch.generated.ts │ │ ├── delete-expired-notification-logs-batch.graphql │ │ ├── get-expired-notification-log-ids-batch.generated.ts │ │ └── get-expired-notification-log-ids-batch.graphql │ └── index.ts ├── hasura │ ├── ban-app │ │ ├── graphql │ │ │ ├── ban-app.generated.ts │ │ │ └── ban-app.graphql │ │ └── index.ts │ ├── change-app-report-status │ │ ├── graphql │ │ │ ├── change-app-report-status.generated.ts │ │ │ └── change-app-report-status.graphql │ │ └── index.ts │ ├── create-app-report │ │ ├── graphql │ │ │ ├── create-app-report.generated.ts │ │ │ └── create-app-report.graphql │ │ └── index.ts │ ├── create-new-draft │ │ ├── graphql │ │ │ ├── create-draft.generated.ts │ │ │ ├── create-draft.graphql │ │ │ ├── create-localisation.generated.ts │ │ │ ├── create-localisation.graphql │ │ │ ├── fetch-localisations.generated.ts │ │ │ ├── fetch-localisations.graphql │ │ │ ├── fetch-metadata.generated.ts │ │ │ └── fetch-metadata.graphql │ │ └── index.ts │ ├── delete-images │ │ └── index.ts │ ├── get-app-review-images │ │ ├── graphql │ │ │ ├── getAppReviewImages.generated.ts │ │ │ └── getAppReviewImages.graphql │ │ └── index.ts │ ├── get-image │ │ └── index.ts │ ├── get-unverified-images │ │ ├── graphql │ │ │ ├── getUnverifiedImages.generated.ts │ │ │ └── getUnverifiedImages.graphql │ │ └── index.ts │ ├── graphql │ │ ├── checkUserInApp.generated.ts │ │ └── checkUserInApp.graphql │ ├── invalidate-cache │ │ └── index.ts │ ├── invite-team-members │ │ ├── graphql │ │ │ ├── createInvite.generated.ts │ │ │ ├── createInvite.graphql │ │ │ ├── fetchInvites.generated.ts │ │ │ ├── fetchInvites.gql │ │ │ ├── fetchUser.generated.ts │ │ │ ├── fetchUser.graphql │ │ │ ├── getUserAndTeamMemberships.generated.ts │ │ │ ├── getUserAndTeamMemberships.graphql │ │ │ ├── updateInvitesExpiration.generated.ts │ │ │ └── updateInvitesExpiration.gql │ │ └── index.ts │ ├── reset-api-key │ │ ├── graphql │ │ │ ├── check-user-permission.generated.ts │ │ │ ├── check-user-permission.graphql │ │ │ ├── update-api-key.generated.ts │ │ │ └── update-api-key.graphql │ │ └── index.ts │ ├── reset-client-secret │ │ ├── graphql │ │ │ ├── get-membership.generated.ts │ │ │ ├── get-membership.graphql │ │ │ ├── update-secret.generated.ts │ │ │ └── update-secret.graphql │ │ └── index.ts │ ├── unban-app │ │ ├── graphql │ │ │ ├── unban-app.generated.ts │ │ │ └── unban-app.graphql │ │ └── index.ts │ ├── upload-image │ │ └── index.ts │ ├── validate-localisation │ │ ├── graphql │ │ │ ├── get-locales.generated.ts │ │ │ ├── get-locales.graphql │ │ │ ├── get-localisations.generated.ts │ │ │ └── get-localisations.graphql │ │ └── index.ts │ └── verify-app │ │ ├── graphql │ │ ├── getAppMetadata.generated.ts │ │ ├── getAppMetadata.graphql │ │ ├── verifyApp.generated.ts │ │ └── verifyApp.graphql │ │ └── index.ts ├── helpers │ ├── app-store.ts │ ├── auth │ │ └── verify-api-key.ts │ ├── errors.ts │ ├── fetch-metrics.ts │ ├── graphql.ts │ ├── image-processing.ts │ ├── is-email-user.ts │ ├── is-password-user.ts │ ├── jwks │ │ ├── graphql │ │ │ ├── delete-expired-jwks.generated.ts │ │ │ ├── delete-expired-jwks.gql │ │ │ ├── fetch-active-jwks-by-expiration-query.generated.ts │ │ │ ├── fetch-active-jwks-by-expiration-query.gql │ │ │ ├── insert-jwk.generated.ts │ │ │ ├── insert-jwk.gql │ │ │ ├── retrieve-jwk.generated.ts │ │ │ └── retrieve-jwk.gql │ │ └── index.ts │ ├── jwts.ts │ ├── kms.ts │ ├── oidc │ │ ├── graphql │ │ │ ├── fetch-app-secret-query.generated.ts │ │ │ ├── fetch-app-secret-query.gql │ │ │ ├── fetch-oidc-app.generated.ts │ │ │ ├── fetch-oidc-app.gql │ │ │ ├── insert-auth-code.generated.ts │ │ │ └── insert-auth-code.gql │ │ └── index.ts │ ├── send-email.ts │ ├── utils.ts │ ├── validate-request-schema.ts │ └── verify.ts ├── join-callback │ ├── graphql │ │ ├── get-invite-by-id.generated.ts │ │ ├── get-invite-by-id.graphql │ │ ├── insert-membership-and-delete-invite.generated.ts │ │ ├── insert-membership-and-delete-invite.gql │ │ ├── insert-user.generated.ts │ │ └── insert-user.graphql │ └── index.ts ├── login-callback │ ├── graphql │ │ ├── delete-invite.generated.ts │ │ ├── delete-invite.graphql │ │ ├── fetch-email-user.generated.ts │ │ ├── fetch-email-user.graphql │ │ ├── fetch-invite.generated.ts │ │ ├── fetch-invite.graphql │ │ ├── fetch-nullifier-user.generated.ts │ │ ├── fetch-nullifier-user.graphql │ │ ├── insert-membership.generated.ts │ │ ├── insert-membership.graphql │ │ ├── update-user.generated.ts │ │ └── update-user.graphql │ └── index.ts ├── update-session │ └── index.ts ├── v1 │ ├── debugger │ │ └── index.ts │ ├── graphql │ │ ├── graphql │ │ │ ├── get-api-key.generated.ts │ │ │ └── get-api-key.graphql │ │ └── index.ts │ ├── jwks │ │ ├── graphql │ │ │ ├── get-jwks.generated.ts │ │ │ └── get-jwks.graphql │ │ └── index.ts │ ├── oidc │ │ ├── authorize │ │ │ ├── graphql │ │ │ │ ├── fetch-nullifier.generated.ts │ │ │ │ ├── fetch-nullifier.graphql │ │ │ │ ├── upsert-nullifier.generated.ts │ │ │ │ └── upsert-nullifier.graphql │ │ │ └── index.ts │ │ ├── introspect │ │ │ └── index.ts │ │ ├── openid-configuration │ │ │ └── index.ts │ │ ├── token │ │ │ ├── graphql │ │ │ │ ├── delete-auth-code.generated.ts │ │ │ │ ├── delete-auth-code.graphql │ │ │ │ ├── fetch-redirect-count.generated.ts │ │ │ │ └── fetch-redirect-count.graphql │ │ │ └── index.ts │ │ ├── userinfo │ │ │ └── index.ts │ │ └── validate │ │ │ └── index.ts │ └── precheck │ │ └── [app_id] │ │ ├── graphql │ │ ├── app-precheck.generated.ts │ │ └── app-precheck.graphql │ │ └── index.ts └── v2 │ ├── app │ └── submit-app-review │ │ ├── graphql │ │ ├── fetch-current-app-review.generated.ts │ │ ├── fetch-current-app-review.graphql │ │ ├── update-review-counter.generated.ts │ │ ├── update-review-counter.graphql │ │ ├── upsert-app-review.generated.ts │ │ └── upsert-app-review.graphql │ │ └── index.ts │ ├── create-action │ ├── graphql │ │ ├── create-dynamic-action.generated.ts │ │ ├── create-dynamic-action.gql │ │ ├── fetch-api-key.generated.ts │ │ └── fetch-api-key.gql │ └── index.ts │ ├── minikit │ ├── app-metadata │ │ └── [app_id] │ │ │ ├── graphql │ │ │ ├── get-app-metadata.generated.ts │ │ │ └── get-app-metadata.graphql │ │ │ └── index.ts │ ├── graphql │ │ ├── fetch-api-key.generated.ts │ │ └── fetch-api-key.gql │ ├── send-notification │ │ ├── graphql │ │ │ ├── create-notification-log.generated.ts │ │ │ ├── create-notification-log.graphql │ │ │ ├── fetch-metadata.generated.ts │ │ │ └── fetch-metadata.graphql │ │ ├── index.ts │ │ ├── schema.ts │ │ └── send-notification.schema.unit.spec.ts │ ├── transaction │ │ ├── [transaction_id] │ │ │ └── index.ts │ │ └── debug │ │ │ └── index.ts │ └── user-grant-cycle │ │ └── index.ts │ ├── public │ ├── app │ │ └── [app_id] │ │ │ ├── graphql │ │ │ ├── get-app-metadata.generated.ts │ │ │ └── get-app-metadata.graphql │ │ │ └── index.ts │ ├── apps │ │ ├── graphql │ │ │ ├── get-app-rankings.generated.ts │ │ │ ├── get-app-rankings.graphql │ │ │ ├── get-app-web-highlights.generated.ts │ │ │ ├── get-app-web-highlights.gql │ │ │ ├── get-highlighted-apps.generated.ts │ │ │ └── get-highlighted-apps.graphql │ │ ├── index.ts │ │ └── search │ │ │ └── [search_term] │ │ │ └── index.ts │ └── constants.ts │ └── verify │ ├── graphql │ ├── atomic-upsert-nullifier.generated.ts │ ├── atomic-upsert-nullifier.graphql │ ├── fetch-app-action.generated.ts │ └── fetch-app-action.graphql │ └── index.ts ├── app ├── (onboarding) │ ├── create-team │ │ ├── layout.tsx │ │ └── page.tsx │ ├── join-callback │ │ └── page.tsx │ ├── join │ │ └── page.tsx │ └── login │ │ ├── layout.tsx │ │ └── page.tsx ├── (portal) │ ├── kiosk │ │ └── [appId] │ │ │ └── [actionId] │ │ │ └── page.tsx │ ├── layout.tsx │ ├── profile │ │ ├── danger │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── page.tsx │ │ └── teams │ │ │ └── page.tsx │ └── teams │ │ ├── [teamId] │ │ ├── (team) │ │ │ ├── affiliate-program │ │ │ │ ├── account │ │ │ │ │ └── page.tsx │ │ │ │ ├── earnings │ │ │ │ │ └── page.tsx │ │ │ │ ├── how-it-works │ │ │ │ │ ├── page.tsx │ │ │ │ │ └── rewards │ │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ ├── verify │ │ │ │ │ └── page.tsx │ │ │ │ └── withdraw │ │ │ │ │ └── page.tsx │ │ │ ├── api-keys │ │ │ │ └── page.tsx │ │ │ ├── app │ │ │ │ └── page.tsx │ │ │ ├── danger │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── page.tsx │ │ │ └── settings │ │ │ │ └── page.tsx │ │ └── apps │ │ │ ├── [appId] │ │ │ ├── actions │ │ │ │ ├── [actionId] │ │ │ │ │ ├── danger │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── kiosk │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── layout.tsx │ │ │ │ │ ├── page.tsx │ │ │ │ │ ├── proof-debugging │ │ │ │ │ │ └── page.tsx │ │ │ │ │ └── settings │ │ │ │ │ │ └── page.tsx │ │ │ │ └── page.tsx │ │ │ ├── configuration │ │ │ │ ├── advanced │ │ │ │ │ └── page.tsx │ │ │ │ ├── app-store │ │ │ │ │ └── page.tsx │ │ │ │ ├── danger │ │ │ │ │ └── page.tsx │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ ├── notifications │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ ├── page.tsx │ │ │ ├── sign-in-with-world-id │ │ │ │ ├── layout.tsx │ │ │ │ ├── page.tsx │ │ │ │ └── proof-debugging │ │ │ │ │ └── page.tsx │ │ │ └── transactions │ │ │ │ ├── layout.tsx │ │ │ │ └── page.tsx │ │ │ └── page.tsx │ │ └── page.tsx ├── (unauthorized) │ └── unauthorized │ │ └── page.tsx ├── api │ ├── %5Fdelete-expired-auth-codes │ │ └── route.ts │ ├── %5Fdelete-jwks │ │ └── route.ts │ ├── %5Fgen-external-nullifier │ │ └── route.ts │ ├── %5Frollup-app-stats │ │ └── route.ts │ ├── auth │ │ └── [auth0] │ │ │ └── route.ts │ ├── create-team │ │ └── route.ts │ ├── delete-expired-notification-logs │ │ └── route.ts │ ├── hasura │ │ ├── ban-app │ │ │ └── route.ts │ │ ├── change-app-report-status │ │ │ └── route.ts │ │ ├── create-app-report │ │ │ └── route.ts │ │ ├── create-new-draft │ │ │ └── route.ts │ │ ├── delete-images │ │ │ └── route.ts │ │ ├── get-app-review-images │ │ │ └── route.ts │ │ ├── get-image │ │ │ └── route.ts │ │ ├── get-unverified-images │ │ │ └── route.ts │ │ ├── invalidate-cache │ │ │ └── route.ts │ │ ├── invite-team-members │ │ │ └── route.ts │ │ ├── reset-api-key │ │ │ └── route.ts │ │ ├── reset-client-secret │ │ │ └── route.ts │ │ ├── unban-app │ │ │ └── route.ts │ │ ├── upload-image │ │ │ └── route.ts │ │ ├── validate-localisation │ │ │ └── route.ts │ │ └── verify-app │ │ │ └── route.ts │ ├── health │ │ └── route.ts │ ├── join-callback │ │ └── route.ts │ ├── public │ │ ├── app │ │ │ └── [app_id] │ │ │ │ └── route.ts │ │ └── apps │ │ │ └── route.ts │ ├── update-session │ │ └── route.ts │ ├── v1 │ │ ├── debugger │ │ │ └── route.ts │ │ ├── graphql │ │ │ └── route.ts │ │ ├── jwks │ │ │ └── route.ts │ │ ├── oidc │ │ │ ├── authorize │ │ │ │ └── route.ts │ │ │ ├── introspect │ │ │ │ └── route.ts │ │ │ ├── openid-configuration │ │ │ │ └── route.ts │ │ │ ├── token │ │ │ │ └── route.ts │ │ │ ├── userinfo │ │ │ │ └── route.ts │ │ │ └── validate │ │ │ │ └── route.ts │ │ └── precheck │ │ │ └── [app_id] │ │ │ └── route.ts │ └── v2 │ │ ├── app │ │ └── submit-app-review │ │ │ └── route.ts │ │ ├── create-action │ │ └── [app_id] │ │ │ └── route.ts │ │ ├── minikit │ │ ├── app-metadata │ │ │ └── [app_id] │ │ │ │ └── route.ts │ │ ├── send-notification │ │ │ └── route.ts │ │ ├── transaction │ │ │ ├── [transaction_id] │ │ │ │ └── route.ts │ │ │ └── debug │ │ │ │ └── route.ts │ │ └── user-grant-cycle │ │ │ └── route.ts │ │ ├── public │ │ ├── app │ │ │ └── [app_id] │ │ │ │ └── route.ts │ │ └── apps │ │ │ ├── route.ts │ │ │ └── search │ │ │ └── [search_term] │ │ │ └── route.ts │ │ └── verify │ │ └── [app_id] │ │ └── route.ts ├── apple-icon.png ├── icon.ico ├── icon16.png ├── icon32.png ├── layout.tsx └── page.ts ├── aws-role-sample-policy.json ├── components ├── AppStatus │ └── index.tsx ├── BottomBar │ ├── Link │ │ └── index.tsx │ └── index.tsx ├── Button │ └── index.tsx ├── Category │ └── index.tsx ├── Chart │ └── index.tsx ├── Checkbox │ └── index.tsx ├── CircleIconContainer │ └── index.tsx ├── CodeBlock │ ├── PreTag │ │ └── index.tsx │ └── index.tsx ├── CopyButton │ └── index.tsx ├── CountryBadge │ └── index.tsx ├── DecoratedButton │ └── index.tsx ├── Dialog │ └── index.tsx ├── DialogOverlay │ └── index.tsx ├── DialogPanel │ └── index.tsx ├── DisclosureButton │ └── index.tsx ├── DisclosurePanel │ └── index.tsx ├── Dropdown │ ├── Button │ │ └── index.tsx │ ├── List │ │ └── index.tsx │ ├── ListHeader │ │ └── index.tsx │ ├── ListItem │ │ └── index.tsx │ ├── ListItemIcon │ │ └── index.tsx │ ├── ListItemText │ │ └── index.tsx │ ├── ListSeparator │ │ └── index.tsx │ ├── Sub │ │ └── index.tsx │ ├── SubButton │ │ └── index.tsx │ ├── SubList │ │ └── index.tsx │ └── index.tsx ├── Environment │ └── index.tsx ├── Icons │ ├── AddCircleIcon.tsx │ ├── AlertIcon.tsx │ ├── AppIcon.tsx │ ├── ArrowDownSharp.tsx │ ├── ArrowRightIcon.tsx │ ├── ArrowUpIcon.tsx │ ├── BankIcon.tsx │ ├── CaretIcon.tsx │ ├── CheckIcon.tsx │ ├── CheckmarkBadge.tsx │ ├── CheckmarkCircleIcon.tsx │ ├── ChevronLeftIcon.tsx │ ├── ChevronRightIcon.tsx │ ├── CloseIcon.tsx │ ├── CloudIcon.tsx │ ├── CodeFolderIcon.tsx │ ├── CodeIcon.tsx │ ├── CollapseIcon.tsx │ ├── CopyCheckIcon.tsx │ ├── CopyIcon.tsx │ ├── CopySquareIcon.tsx │ ├── CustomerSupportIcon.tsx │ ├── DashboardSquareIcon.tsx │ ├── DiscordIcon.tsx │ ├── DocsIcon.tsx │ ├── EditIcon.tsx │ ├── EditUserIcon.tsx │ ├── ElementsIcon.tsx │ ├── EnvelopeIcon.tsx │ ├── ExchangeIcon.tsx │ ├── ExpandIcon.tsx │ ├── ExternalLinkIcon.tsx │ ├── FailedIcon.tsx │ ├── FlaskIcon.tsx │ ├── GithubIcon.tsx │ ├── GlobeIcon.tsx │ ├── GmailIcon.tsx │ ├── HelpIcon.tsx │ ├── HelpSquareIcon.tsx │ ├── IdentificationIcon.tsx │ ├── IncognitoIcon.tsx │ ├── InformationCircleIcon.tsx │ ├── KeyIcon.tsx │ ├── LegalIcon.tsx │ ├── LinkIcon.tsx │ ├── LockIcon.tsx │ ├── LoginSquareIcon.tsx │ ├── LogoLines.tsx │ ├── LogoutIcon.tsx │ ├── MagnifierIcon.tsx │ ├── MailIcon.tsx │ ├── MailWithLines.tsx │ ├── MinusIcon.tsx │ ├── MoreVerticalIcon.tsx │ ├── MultiplePlusIcon.tsx │ ├── OpenNewWindowIcon.tsx │ ├── OptimismIcon.tsx │ ├── OutgoingLink.tsx │ ├── PlusCircleIcon.tsx │ ├── PlusIcon.tsx │ ├── QRIcon.tsx │ ├── RemoveCustomIcon.tsx │ ├── SearchIcon.tsx │ ├── SecurityIcon.tsx │ ├── SendIcon.tsx │ ├── SettingsIcon.tsx │ ├── SmartPhoneIcon.tsx │ ├── SpinnerIcon.tsx │ ├── StartUp.tsx │ ├── SubtractIcon.tsx │ ├── SuccessCheckIcon.tsx │ ├── SuccessIcon.tsx │ ├── TelegramIcon.tsx │ ├── TestTubeIcon.tsx │ ├── TransactionIcon.tsx │ ├── TrashIcon.tsx │ ├── TrophyIcon.tsx │ ├── UploadIcon.tsx │ ├── UsdcIcon.tsx │ ├── UserAccountIcon.tsx │ ├── UserAddIcon.tsx │ ├── UserCardIcon.tsx │ ├── UserCircleIcon.tsx │ ├── UserEditIcon.tsx │ ├── UserMultipleIcon.tsx │ ├── UserStoryIcon.tsx │ ├── WLDIcon.tsx │ ├── WLDTokenIcon.tsx │ ├── WallenPocketIcon.tsx │ ├── WalletIcon.tsx │ ├── WarningErrorIcon.tsx │ ├── WorldBlueprintIcon.tsx │ ├── WorldIcon.tsx │ └── WorldTextLogo.tsx ├── ImageDropZone │ └── index.tsx ├── InitialSteps │ ├── IconFrame │ │ └── index.tsx │ ├── Step │ │ └── index.tsx │ └── index.tsx ├── Input │ └── index.tsx ├── LayersIconFrame │ └── index.tsx ├── Link │ └── index.tsx ├── LoggedUserNav │ ├── Help │ │ └── index.tsx │ ├── Teams │ │ ├── TeamLogo │ │ │ └── index.tsx │ │ ├── graphql │ │ │ └── client │ │ │ │ ├── fetch-teams.generated.ts │ │ │ │ └── fetch-teams.graphql │ │ └── index.tsx │ ├── graphql │ │ └── client │ │ │ ├── fetch-team.generated.ts │ │ │ └── fetch-team.graphql │ └── index.tsx ├── Notification │ ├── IconFrame │ │ └── index.tsx │ └── index.tsx ├── OtpInput │ └── index.tsx ├── Pagination │ └── index.tsx ├── PlaceholderImage │ └── index.tsx ├── QuickAction │ └── index.tsx ├── Radio │ └── index.tsx ├── Section │ ├── Header │ │ ├── Button │ │ │ └── index.tsx │ │ ├── Search │ │ │ └── index.tsx │ │ ├── Title │ │ │ └── index.tsx │ │ └── index.tsx │ └── index.tsx ├── Select │ ├── Button │ │ └── index.tsx │ ├── Option │ │ └── index.tsx │ ├── Options │ │ └── index.tsx │ └── index.tsx ├── SelectMultiple │ └── index.tsx ├── SizingWrapper │ └── index.tsx ├── Stepper │ └── index.tsx ├── Switch │ └── index.tsx ├── SwitcherBox │ └── index.tsx ├── Tabs │ ├── Tab │ │ └── index.tsx │ └── index.tsx ├── TextArea │ └── index.tsx ├── Toggle │ └── index.tsx ├── Typography │ └── index.tsx └── Unauthorized │ └── index.tsx ├── graphql-codegen.schema.js ├── graphql-codegen.types.js ├── graphql ├── graphql.schema.json └── graphql.ts ├── instrumentation.ts ├── jest.config.ts ├── jest.setup.ts ├── lib ├── apollo-wrapper.tsx ├── calculate-color-from-string.ts ├── categories.ts ├── compare-versions.ts ├── compare-versions.unit.spec.ts ├── constants.ts ├── crypto.client.ts ├── crypto.server.ts ├── frontend-api.ts ├── genarate-title.ts ├── hashing.ts ├── ironclad-activity-api.ts ├── languages.ts ├── logger.ts ├── opensearch.ts ├── parameter-store.ts ├── permissions │ ├── README.md │ ├── graphql │ │ └── server │ │ │ ├── get-app-delete-permissions.generated.ts │ │ │ ├── get-app-delete-permissions.graphql │ │ │ ├── get-app-insert-permissions.generated.ts │ │ │ ├── get-app-insert-permissions.graphql │ │ │ ├── get-app-metadata-update-permissions.generated.ts │ │ │ ├── get-app-metadata-update-permissions.graphql │ │ │ ├── get-app-update-permissions.generated.ts │ │ │ ├── get-app-update-permissions.graphql │ │ │ ├── get-localisations-delete-permissions.generated.ts │ │ │ ├── get-localisations-delete-permissions.graphql │ │ │ ├── get-localisations-insert-permissions.generated.ts │ │ │ ├── get-localisations-insert-permissions.graphql │ │ │ ├── get-localisations-update-permissions.generated.ts │ │ │ ├── get-localisations-update-permissions.graphql │ │ │ ├── get-team-delete-permissions.generated.ts │ │ │ ├── get-team-delete-permissions.graphql │ │ │ ├── get-team-update-permissions.generated.ts │ │ │ ├── get-team-update-permissions.graphql │ │ │ ├── get-verification-status-update-permissions.generated.ts │ │ │ └── get-verification-status-update-permissions.graphql │ └── index.ts ├── redis.ts ├── schema │ ├── index.ts │ └── schema.unit.spec.ts ├── server-utils.ts ├── types.ts ├── urls.ts ├── use-refetch-queries.ts └── utils.ts ├── middleware.ts ├── next-env.d.ts ├── next.config.mjs ├── package.json ├── playwright.config.ts ├── pnpm-lock.yaml ├── postcss.config.js ├── public ├── avatars │ ├── alien.png │ ├── bear.png │ ├── cow.png │ ├── dinosaur.png │ ├── dog.png │ ├── dragon.png │ ├── exploding_owl.png │ ├── exploding_unicorn.png │ ├── fox.png │ ├── ghost.png │ ├── giraffe.png │ ├── koala.png │ ├── lion.png │ ├── love_skull.png │ ├── monkey.png │ ├── mouse.png │ ├── mybskull.png │ ├── octopus.png │ ├── owl.png │ ├── panda.png │ ├── pig.png │ ├── rabbit.png │ ├── rooster.png │ ├── shark.png │ ├── skull.png │ ├── sleeping_cow.png │ ├── tiger.png │ ├── unicorn.png │ └── wolf.png ├── favicon.ico ├── icons │ ├── flags │ │ ├── AD.svg │ │ ├── AE.svg │ │ ├── AG.svg │ │ ├── AI.svg │ │ ├── AM.svg │ │ ├── AO.svg │ │ ├── AR.svg │ │ ├── AT.svg │ │ ├── AU.svg │ │ ├── AW.svg │ │ ├── AZ.svg │ │ ├── BB.svg │ │ ├── BE.svg │ │ ├── BF.svg │ │ ├── BG.svg │ │ ├── BH.svg │ │ ├── BJ.svg │ │ ├── BM.svg │ │ ├── BN.svg │ │ ├── BR.svg │ │ ├── BS.svg │ │ ├── BT.svg │ │ ├── BW.svg │ │ ├── BZ.svg │ │ ├── CA.svg │ │ ├── CH.svg │ │ ├── CI.svg │ │ ├── CL.svg │ │ ├── CM.svg │ │ ├── CN.svg │ │ ├── CO.svg │ │ ├── CR.svg │ │ ├── CW.svg │ │ ├── CY.svg │ │ ├── CZ.svg │ │ ├── DE.svg │ │ ├── DJ.svg │ │ ├── DK.svg │ │ ├── DM.svg │ │ ├── DO.svg │ │ ├── DZ.svg │ │ ├── EC.svg │ │ ├── EE.svg │ │ ├── ES.svg │ │ ├── FI.svg │ │ ├── FJ.svg │ │ ├── FM.svg │ │ ├── FR.svg │ │ ├── GA.svg │ │ ├── GB.svg │ │ ├── GD.svg │ │ ├── GE.svg │ │ ├── GH.svg │ │ ├── GL.svg │ │ ├── GM.svg │ │ ├── GN.svg │ │ ├── GP.svg │ │ ├── GQ.svg │ │ ├── GR.svg │ │ ├── GT.svg │ │ ├── GW.svg │ │ ├── GY.svg │ │ ├── HK.svg │ │ ├── HN.svg │ │ ├── HR.svg │ │ ├── HT.svg │ │ ├── HU.svg │ │ ├── ID.svg │ │ ├── IE.svg │ │ ├── IL.svg │ │ ├── IN.svg │ │ ├── IS.svg │ │ ├── IT.svg │ │ ├── JM.svg │ │ ├── JO.svg │ │ ├── JP.svg │ │ ├── KE.svg │ │ ├── KG.svg │ │ ├── KI.svg │ │ ├── KM.svg │ │ ├── KN.svg │ │ ├── KR.svg │ │ ├── KW.svg │ │ ├── KY.svg │ │ ├── KZ.svg │ │ ├── LA.svg │ │ ├── LC.svg │ │ ├── LI.svg │ │ ├── LK.svg │ │ ├── LR.svg │ │ ├── LS.svg │ │ ├── LT.svg │ │ ├── LU.svg │ │ ├── LV.svg │ │ ├── MA.svg │ │ ├── MC.svg │ │ ├── MD.svg │ │ ├── MG.svg │ │ ├── MH.svg │ │ ├── MN.svg │ │ ├── MR.svg │ │ ├── MT.svg │ │ ├── MU.svg │ │ ├── MX.svg │ │ ├── MY.svg │ │ ├── MZ.svg │ │ ├── NA.svg │ │ ├── NE.svg │ │ ├── NG.svg │ │ ├── NI.svg │ │ ├── NL.svg │ │ ├── NO.svg │ │ ├── NR.svg │ │ ├── NZ.svg │ │ ├── OM.svg │ │ ├── PA.svg │ │ ├── PE.svg │ │ ├── PG.svg │ │ ├── PH.svg │ │ ├── PK.svg │ │ ├── PL.svg │ │ ├── PR.svg │ │ ├── PT.svg │ │ ├── PW.svg │ │ ├── PY.svg │ │ ├── RO.svg │ │ ├── RW.svg │ │ ├── SA.svg │ │ ├── SB.svg │ │ ├── SC.svg │ │ ├── SE.svg │ │ ├── SG.svg │ │ ├── SI.svg │ │ ├── SK.svg │ │ ├── SL.svg │ │ ├── SM.svg │ │ ├── SN.svg │ │ ├── SR.svg │ │ ├── ST.svg │ │ ├── SV.svg │ │ ├── SX.svg │ │ ├── SZ.svg │ │ ├── TD.svg │ │ ├── TG.svg │ │ ├── TH.svg │ │ ├── TJ.svg │ │ ├── TL.svg │ │ ├── TM.svg │ │ ├── TN.svg │ │ ├── TO.svg │ │ ├── TR.svg │ │ ├── TT.svg │ │ ├── TV.svg │ │ ├── TW.svg │ │ ├── UA.svg │ │ ├── UG.svg │ │ ├── US.svg │ │ ├── UY.svg │ │ ├── UZ.svg │ │ ├── VC.svg │ │ ├── VG.svg │ │ ├── VN.svg │ │ ├── VU.svg │ │ ├── WS.svg │ │ ├── ZA.svg │ │ ├── ZM.svg │ │ └── ZW.svg │ └── logo.svg ├── logo.png ├── passport.png └── robots.txt ├── scenes ├── Onboarding │ ├── CreateTeam │ │ ├── layout │ │ │ ├── CloseButton │ │ │ │ └── index.tsx │ │ │ └── index.tsx │ │ └── page │ │ │ ├── Form │ │ │ └── index.tsx │ │ │ ├── graphql │ │ │ └── server │ │ │ │ ├── fetch-user.generated.ts │ │ │ │ └── fetch-user.gql │ │ │ └── index.tsx │ ├── Join │ │ └── page │ │ │ ├── Logo │ │ │ └── index.tsx │ │ │ ├── graphql │ │ │ └── server │ │ │ │ ├── fetch-invites.generated.ts │ │ │ │ └── fetch-invites.gql │ │ │ └── index.tsx │ ├── JoinCallback │ │ └── page │ │ │ ├── JoinCallbackPageContent │ │ │ └── index.tsx │ │ │ └── index.tsx │ ├── Login │ │ ├── layout │ │ │ └── index.tsx │ │ └── page │ │ │ ├── graphql │ │ │ └── server │ │ │ │ ├── fetch-memberships.generated.ts │ │ │ │ └── fetch-memberships.gql │ │ │ └── index.tsx │ └── layout │ │ └── index.tsx ├── Portal │ ├── Kiosk │ │ └── index.tsx │ ├── Profile │ │ ├── DangerZone │ │ │ ├── DeleteAccountDialog │ │ │ │ ├── graphql │ │ │ │ │ └── client │ │ │ │ │ │ ├── delete-account.generated.ts │ │ │ │ │ │ └── delete-account.graphql │ │ │ │ └── index.tsx │ │ │ └── page │ │ │ │ └── index.tsx │ │ ├── Teams │ │ │ └── page │ │ │ │ ├── LeaveTeamDialog │ │ │ │ ├── graphql │ │ │ │ │ └── client │ │ │ │ │ │ ├── leave-team.generated.ts │ │ │ │ │ │ └── leave-team.graphql │ │ │ │ └── index.tsx │ │ │ │ ├── List │ │ │ │ ├── Item │ │ │ │ │ └── index.tsx │ │ │ │ ├── TeamLogo │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ │ ├── TransferTeamDialog │ │ │ │ ├── graphql │ │ │ │ │ └── client │ │ │ │ │ │ ├── fetch-members.generated.ts │ │ │ │ │ │ ├── fetch-members.graphql │ │ │ │ │ │ ├── fetch-user-membership.generated.ts │ │ │ │ │ │ ├── fetch-user-membership.graphql │ │ │ │ │ │ ├── transfer-ownership.generated.ts │ │ │ │ │ │ └── transfer-ownership.graphql │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ ├── common │ │ │ └── UserInfo │ │ │ │ ├── Icon │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ ├── layout │ │ │ └── index.tsx │ │ ├── page │ │ │ ├── ColorSelector │ │ │ │ ├── Option │ │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ │ ├── graphql │ │ │ │ └── client │ │ │ │ │ ├── update-user.generated.ts │ │ │ │ │ └── update-user.graphql │ │ │ └── index.tsx │ │ └── types.ts │ ├── Teams │ │ ├── TeamId │ │ │ ├── Apps │ │ │ │ ├── AppId │ │ │ │ │ ├── Actions │ │ │ │ │ │ ├── ActionId │ │ │ │ │ │ │ ├── Components │ │ │ │ │ │ │ │ ├── ActionsHeader │ │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ │ │ ├── get-action-name.generated.ts │ │ │ │ │ │ │ │ │ │ │ └── get-action-name.graphql │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── Kiosk │ │ │ │ │ │ │ │ │ ├── Connected │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── IDKitBridge │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── KioskError │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── Success │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── VerificationLevelPicker │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ └── Waiting │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── Danger │ │ │ │ │ │ │ │ ├── ActionDangerZoneContent │ │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ │ │ ├── delete-action.generated.ts │ │ │ │ │ │ │ │ │ │ │ └── delete-action.graphql │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ │ ├── get-single-action.generated.ts │ │ │ │ │ │ │ │ │ │ └── get-single-action.graphql │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── Kiosk │ │ │ │ │ │ │ │ ├── ActiveKiosk │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ │ ├── get-kiosk-action.generated.ts │ │ │ │ │ │ │ │ │ │ ├── get-kiosk-action.graphql │ │ │ │ │ │ │ │ │ │ ├── toggle-kiosk.generated.ts │ │ │ │ │ │ │ │ │ │ └── toggle-kiosk.graphql │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── ProofDebuging │ │ │ │ │ │ │ │ ├── Debugger │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ │ ├── debugger.generated.ts │ │ │ │ │ │ │ │ │ │ └── debugger.graphql │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── Settings │ │ │ │ │ │ │ │ ├── TryAction │ │ │ │ │ │ │ │ │ ├── CodeBlock │ │ │ │ │ │ │ │ │ │ ├── CodeDisplays │ │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ ├── MiniKiosk │ │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── UpdateAction │ │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ │ │ │ ├── get-action-update-permissions.generated.ts │ │ │ │ │ │ │ │ │ │ │ ├── get-action-update-permissions.graphql │ │ │ │ │ │ │ │ │ │ │ ├── update-action.generated.ts │ │ │ │ │ │ │ │ │ │ │ └── update-action.graphql │ │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ │ │ ├── form-schema.ts │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ │ ├── get-single-action.generated.ts │ │ │ │ │ │ │ │ │ │ └── get-single-action.graphql │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ │ │ ├── fetch-app-env.generated.ts │ │ │ │ │ │ │ │ │ │ └── fetch-app-env.graphql │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ ├── ActionStatsGraph │ │ │ │ │ │ │ │ ├── StatCard │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── TimespanSelector │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ │ ├── fetch-action-stats.generated.ts │ │ │ │ │ │ │ │ │ │ └── fetch-action-stats.gql │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── VerifiedTable │ │ │ │ │ │ │ │ ├── VerifiedRow │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ ├── get-single-action.generated.ts │ │ │ │ │ │ │ │ │ └── get-single-action.graphql │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── page │ │ │ │ │ │ │ ├── ActionsList │ │ │ │ │ │ │ ├── ActionRow │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── Item │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── CreateActionModal │ │ │ │ │ │ │ ├── AppFlowOnCompleteTypeSelector │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── FlowTypeSelector │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── MaxVerificationsSelector │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ │ ├── get-action-insert-permissions.generated.ts │ │ │ │ │ │ │ │ │ ├── get-action-insert-permissions.graphql │ │ │ │ │ │ │ │ │ ├── insert-action.generated.ts │ │ │ │ │ │ │ │ │ └── insert-action.graphql │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ ├── form-schema.ts │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ ├── actions.generated.ts │ │ │ │ │ │ │ │ ├── actions.graphql │ │ │ │ │ │ │ │ ├── app.generated.ts │ │ │ │ │ │ │ │ └── app.graphql │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Configuration │ │ │ │ │ │ ├── Advanced │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ ├── SetupForm │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ │ │ ├── update-setup.generated.ts │ │ │ │ │ │ │ │ │ │ └── update-setup.graphql │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── form-schema.ts │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ └── submit.ts │ │ │ │ │ │ ├── AppStore │ │ │ │ │ │ │ ├── ContentCardImageUpload │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ │ ├── update-content-card-image.generated.ts │ │ │ │ │ │ │ │ │ │ └── update-content-card-image.graphql │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── FormSchema │ │ │ │ │ │ │ │ ├── field-schema.ts │ │ │ │ │ │ │ │ ├── form-schema.ts │ │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ │ ├── ImageForm │ │ │ │ │ │ │ │ ├── ImageDisplay │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── ImageLoader │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── ImageUploadField.tsx │ │ │ │ │ │ │ │ ├── MetaTagImageField.tsx │ │ │ │ │ │ │ │ ├── ShowcaseImagesField.tsx │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ ├── LogoImageUpload │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ │ ├── update-logo.generated.ts │ │ │ │ │ │ │ │ │ │ └── update-logo.graphql │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── app-store-form-provider.tsx │ │ │ │ │ │ │ ├── app-store.tsx │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ ├── FormFields │ │ │ │ │ │ │ │ │ ├── FormSection.tsx │ │ │ │ │ │ │ │ │ └── RadioGroup.tsx │ │ │ │ │ │ │ │ ├── FormSections │ │ │ │ │ │ │ │ │ ├── CategorySection.tsx │ │ │ │ │ │ │ │ │ ├── ComplianceSection.tsx │ │ │ │ │ │ │ │ │ ├── ContentCardImageSection.tsx │ │ │ │ │ │ │ │ │ ├── CountriesSection.tsx │ │ │ │ │ │ │ │ │ ├── HumansOnlySection.tsx │ │ │ │ │ │ │ │ │ ├── LanguagesSection.tsx │ │ │ │ │ │ │ │ │ ├── LocalisationsSection │ │ │ │ │ │ │ │ │ │ ├── LocalisationsSection.tsx │ │ │ │ │ │ │ │ │ │ ├── components │ │ │ │ │ │ │ │ │ │ │ ├── LanguageTabs.tsx │ │ │ │ │ │ │ │ │ │ │ └── LocalisationFields.tsx │ │ │ │ │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ │ │ │ │ └── useLanguageSelection.ts │ │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ │ ├── LogoSection.tsx │ │ │ │ │ │ │ │ │ ├── SupportSection.tsx │ │ │ │ │ │ │ │ │ └── WebsiteSection.tsx │ │ │ │ │ │ │ │ └── SaveButton.tsx │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ │ ├── fetch-localisations.generated.ts │ │ │ │ │ │ │ │ │ ├── fetch-localisations.graphql │ │ │ │ │ │ │ │ │ ├── upsert-localised-meta-tag-image.generated.ts │ │ │ │ │ │ │ │ │ ├── upsert-localised-meta-tag-image.graphql │ │ │ │ │ │ │ │ │ ├── upsert-localised-showcase-images.generated.ts │ │ │ │ │ │ │ │ │ └── upsert-localised-showcase-images.graphql │ │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ │ ├── delete-unused-localisations.generated.ts │ │ │ │ │ │ │ │ │ ├── delete-unused-localisations.graphql │ │ │ │ │ │ │ │ │ ├── update-app-store-complete.generated.ts │ │ │ │ │ │ │ │ │ └── update-app-store-complete.graphql │ │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ │ ├── useAppStoreForm.ts │ │ │ │ │ │ │ │ ├── useFormData.ts │ │ │ │ │ │ │ │ └── useSupportType.ts │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ ├── server │ │ │ │ │ │ │ │ └── update-app-store.ts │ │ │ │ │ │ │ ├── types │ │ │ │ │ │ │ │ └── AppStoreFormTypes.ts │ │ │ │ │ │ │ ├── utils.ts │ │ │ │ │ │ │ └── utils │ │ │ │ │ │ │ │ ├── dataTransforms.ts │ │ │ │ │ │ │ │ └── form-error-utils.ts │ │ │ │ │ │ ├── AppTopBar │ │ │ │ │ │ │ ├── FormSkeleton │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── LogoImageUpload │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ │ ├── update-logo.generated.ts │ │ │ │ │ │ │ │ │ │ └── update-logo.graphql │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── SubmitAppModal │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ │ │ ├── validate-localisations.generated.ts │ │ │ │ │ │ │ │ │ │ └── validate-localisations.graphql │ │ │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ │ │ ├── submit-app.generated.ts │ │ │ │ │ │ │ │ │ │ └── submit-app.graphql │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── VersionSwitcher │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ ├── client │ │ │ │ │ │ │ │ │ ├── create-editable-row.generated.ts │ │ │ │ │ │ │ │ │ └── create-editable-row.graphql │ │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ │ ├── fetch-review-app-metadata.generated.ts │ │ │ │ │ │ │ │ │ └── fetch-review-app-metadata.graphql │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ └── submit.ts │ │ │ │ │ │ ├── BasicInformation │ │ │ │ │ │ │ ├── AppStatus │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── QrQuickAction │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── form-schema.ts │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ │ ├── update-app.generated.ts │ │ │ │ │ │ │ │ │ └── update-app.graphql │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ └── submit.ts │ │ │ │ │ │ ├── Danger │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ ├── DeleteModal │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ │ │ ├── delete-app.generated.ts │ │ │ │ │ │ │ │ │ │ └── delete-app.graphql │ │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── Error │ │ │ │ │ │ │ └── error.tsx │ │ │ │ │ │ ├── PageComponents │ │ │ │ │ │ │ └── RemainingCharacters │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── constants.ts │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ ├── fetch-app-metadata.generated.ts │ │ │ │ │ │ │ │ ├── fetch-app-metadata.graphql │ │ │ │ │ │ │ │ ├── fetch-images.generated.ts │ │ │ │ │ │ │ │ ├── fetch-images.graphql │ │ │ │ │ │ │ │ ├── fetch-team-name.generated.ts │ │ │ │ │ │ │ │ └── fetch-team-name.graphql │ │ │ │ │ │ ├── hook │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ ├── get-uploaded-image.generated.ts │ │ │ │ │ │ │ │ │ ├── get-uploaded-image.graphql │ │ │ │ │ │ │ │ │ ├── upload-image.generated.ts │ │ │ │ │ │ │ │ │ └── upload-image.graphql │ │ │ │ │ │ │ └── use-image.tsx │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ ├── ImagesProvider │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── page.tsx │ │ │ │ │ │ └── types.ts │ │ │ │ │ ├── Notifications │ │ │ │ │ │ ├── layout.tsx │ │ │ │ │ │ └── page.tsx │ │ │ │ │ ├── SignInWithWorldId │ │ │ │ │ │ ├── ProofDebugging │ │ │ │ │ │ │ └── page │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── error │ │ │ │ │ │ │ └── error.tsx │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── page │ │ │ │ │ │ │ ├── ClientInformation │ │ │ │ │ │ │ ├── Links │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── Redirects │ │ │ │ │ │ │ │ ├── RedirectInput │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ │ ├── delete-redirect.generated.ts │ │ │ │ │ │ │ │ │ │ ├── delete-redirect.graphql │ │ │ │ │ │ │ │ │ │ ├── fetch-redirect.generated.ts │ │ │ │ │ │ │ │ │ │ ├── fetch-redirect.graphql │ │ │ │ │ │ │ │ │ │ ├── insert-redirect.generated.ts │ │ │ │ │ │ │ │ │ │ ├── insert-redirect.graphql │ │ │ │ │ │ │ │ │ │ ├── update-redirect.generated.ts │ │ │ │ │ │ │ │ │ │ └── update-redirect.graphql │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ │ ├── fetch-sign-in-action.generated.ts │ │ │ │ │ │ │ │ │ ├── fetch-sign-in-action.graphql │ │ │ │ │ │ │ │ │ ├── reset-secret.generated.ts │ │ │ │ │ │ │ │ │ ├── reset-secret.graphql │ │ │ │ │ │ │ │ │ ├── update-sign-in-action.generated.ts │ │ │ │ │ │ │ │ │ └── update-sign-in-action.graphql │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ ├── fetch-signin.generated.ts │ │ │ │ │ │ │ │ └── fetch-signin.graphql │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Transactions │ │ │ │ │ │ ├── layout │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── page │ │ │ │ │ │ │ ├── ErrorState │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── TransactionsTable │ │ │ │ │ │ │ ├── TransactionRow │ │ │ │ │ │ │ │ ├── AddressArrow │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── Status │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ ├── Token │ │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── getAccumulativeTransactionData.ts │ │ │ │ │ │ │ └── index.ts │ │ │ │ │ ├── layout │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── server │ │ │ │ │ │ │ │ ├── fetch-app-env.generated.ts │ │ │ │ │ │ │ │ └── fetch-app-env.graphql │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── page │ │ │ │ │ │ ├── AppStatsGraph │ │ │ │ │ │ ├── GraphsSection │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ ├── stat.tsx │ │ │ │ │ │ │ └── use-get-accumulative-transactions.ts │ │ │ │ │ │ ├── StatCard │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── StatCardGlobalRanking │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── StatCards │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── use-get-metrics.ts │ │ │ │ │ │ ├── TimespanSelector │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ ├── fetch-app-stats.generated.ts │ │ │ │ │ │ │ │ └── fetch-app-stats.gql │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── BanStatusSection │ │ │ │ │ │ ├── ban-status.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── QuickActionsSection │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── VerificationStatusSection │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── client │ │ │ │ │ │ │ ├── get-is-app-banned.generated.ts │ │ │ │ │ │ │ ├── get-is-app-banned.graphql │ │ │ │ │ │ │ ├── get-verification-data.generated.ts │ │ │ │ │ │ │ └── get-verification-data.gql │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── server │ │ │ │ │ │ └── index.ts │ │ │ │ ├── common │ │ │ │ │ ├── BanMessageDialog │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ReviewMessageDialog │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ReviewStatus │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── hooks │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── remove-app-from-review.generated.ts │ │ │ │ │ │ │ └── remove-app-from-review.graphql │ │ │ │ │ │ ├── server │ │ │ │ │ │ └── index.ts │ │ │ │ │ │ └── use-remove-from-review.tsx │ │ │ │ └── page │ │ │ │ │ ├── ClientPage │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graphql │ │ │ │ │ └── server │ │ │ │ │ │ ├── apps.generated.ts │ │ │ │ │ │ └── apps.gql │ │ │ │ │ └── index.tsx │ │ │ └── Team │ │ │ │ ├── AffiliateProgram │ │ │ │ ├── Account │ │ │ │ │ └── page │ │ │ │ │ │ ├── EmailDialog │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── WalletDialog │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── Earnings │ │ │ │ │ ├── page │ │ │ │ │ │ ├── EarningsHeader │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── RewardsChart │ │ │ │ │ │ │ ├── TimespanSelector │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── stat.tsx │ │ │ │ │ │ ├── TransactionsTable │ │ │ │ │ │ │ ├── TransactionBadge │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── TransactionDetailsDialog │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── TransactionRow │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ └── use-get-affiliate-transactions.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── server │ │ │ │ │ │ ├── getAffiliateTransactions.ts │ │ │ │ │ │ └── mocks │ │ │ │ │ │ └── mock-transactions.ts │ │ │ │ ├── HowItWorks │ │ │ │ │ ├── CountryRewards │ │ │ │ │ │ ├── CountryList │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── page │ │ │ │ │ │ └── index.tsx │ │ │ │ ├── Overview │ │ │ │ │ ├── page │ │ │ │ │ │ ├── InviteUserDialog │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── OverviewProfile │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── VerificationsChart │ │ │ │ │ │ │ ├── TimespanSelector │ │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ │ └── stat.tsx │ │ │ │ │ │ ├── hooks │ │ │ │ │ │ │ └── use-get-affiliate-metadata.ts │ │ │ │ │ │ ├── index.tsx │ │ │ │ │ │ └── server │ │ │ │ │ │ │ ├── getAffiliateMetadata.ts │ │ │ │ │ │ │ └── mock.ts │ │ │ │ │ └── server │ │ │ │ │ │ ├── executeAcceptTerms.ts │ │ │ │ │ │ └── getIdentityVerificationLink.ts │ │ │ │ ├── Verify │ │ │ │ │ ├── AcceptTerms │ │ │ │ │ │ ├── doc.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── Withdraw │ │ │ │ │ ├── page │ │ │ │ │ │ ├── ConfirmTransaction │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── EnterAmount │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── EnterCode │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── WithdrawSuccess │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── common │ │ │ │ │ │ │ └── types.ts │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── server │ │ │ │ │ │ ├── confirmWithdraw.ts │ │ │ │ │ │ └── initiateWithdraw.ts │ │ │ │ ├── common │ │ │ │ │ ├── affiliate-enabled-atom.ts │ │ │ │ │ ├── hooks │ │ │ │ │ │ ├── use-get-affiliate-balance.ts │ │ │ │ │ │ └── use-get-affiliate-overview.ts │ │ │ │ │ ├── server │ │ │ │ │ │ ├── getAffiliateBalance.ts │ │ │ │ │ │ ├── getAffiliateOverview.ts │ │ │ │ │ │ ├── getParameter.ts │ │ │ │ │ │ └── mocks │ │ │ │ │ │ │ ├── balance.ts │ │ │ │ │ │ │ └── overview.ts │ │ │ │ │ └── utils.ts │ │ │ │ └── layout │ │ │ │ │ └── index.tsx │ │ │ │ ├── ApiKeys │ │ │ │ └── page │ │ │ │ │ ├── ApiKeyTable │ │ │ │ │ ├── ApiKeyRow │ │ │ │ │ │ ├── Status │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ ├── reset-api-key.generated.ts │ │ │ │ │ │ │ │ └── reset-api-key.graphql │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── DeleteKeyModal │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ ├── delete-key.generated.ts │ │ │ │ │ │ │ │ └── delete-key.graphql │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── ViewDetailsModal │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ ├── update-key.generated.ts │ │ │ │ │ │ │ │ └── update-key.graphql │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── CreateKeyModal │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── client │ │ │ │ │ │ │ ├── create-key.generated.ts │ │ │ │ │ │ │ └── create-key.graphql │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graphql │ │ │ │ │ └── client │ │ │ │ │ │ ├── fetch-keys.generated.ts │ │ │ │ │ │ └── fetch-keys.graphql │ │ │ │ │ └── index.tsx │ │ │ │ ├── Apps │ │ │ │ └── page │ │ │ │ │ └── index.tsx │ │ │ │ ├── Danger │ │ │ │ └── page │ │ │ │ │ └── index.tsx │ │ │ │ ├── Settings │ │ │ │ ├── graphql │ │ │ │ │ └── server │ │ │ │ │ │ ├── update-team.generated.ts │ │ │ │ │ │ └── update-team.graphql │ │ │ │ ├── page │ │ │ │ │ └── index.tsx │ │ │ │ └── server │ │ │ │ │ └── submit.ts │ │ │ │ ├── common │ │ │ │ └── TeamProfile │ │ │ │ │ ├── Image │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graphql │ │ │ │ │ └── client │ │ │ │ │ │ ├── fetch-team.generated.ts │ │ │ │ │ │ └── fetch-team.gql │ │ │ │ │ └── index.tsx │ │ │ │ ├── layout │ │ │ │ └── index.tsx │ │ │ │ └── page │ │ │ │ ├── Apps │ │ │ │ ├── App │ │ │ │ │ ├── AppLogo │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── graphql │ │ │ │ │ └── client │ │ │ │ │ │ ├── fetch-apps.generated.ts │ │ │ │ │ │ └── fetch-apps.gql │ │ │ │ └── index.tsx │ │ │ │ ├── Members │ │ │ │ ├── InviteTeamMemberDialog │ │ │ │ │ ├── EmailsInput │ │ │ │ │ │ └── index.tsx │ │ │ │ │ └── index.tsx │ │ │ │ ├── List │ │ │ │ │ ├── EditRoleDialog │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ ├── edit-role.generated.ts │ │ │ │ │ │ │ │ └── edit-role.gql │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── Item │ │ │ │ │ │ ├── UserLogo │ │ │ │ │ │ │ └── index.tsx │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── PermissionsDialog │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── RemoveUserDialog │ │ │ │ │ │ ├── graphql │ │ │ │ │ │ │ └── client │ │ │ │ │ │ │ │ ├── remove-user.generated.ts │ │ │ │ │ │ │ │ └── remove-user.gql │ │ │ │ │ │ └── index.tsx │ │ │ │ │ ├── graphql │ │ │ │ │ │ └── client │ │ │ │ │ │ │ ├── delete-invite.generated.ts │ │ │ │ │ │ │ └── delete-invite.gql │ │ │ │ │ └── index.tsx │ │ │ │ ├── graphql │ │ │ │ │ └── client │ │ │ │ │ │ ├── fetch-team-members.generated.ts │ │ │ │ │ │ ├── fetch-team-members.gql │ │ │ │ │ │ ├── invite-team-members.generated.ts │ │ │ │ │ │ └── invite-team-members.gql │ │ │ │ └── index.tsx │ │ │ │ └── index.tsx │ │ └── page │ │ │ └── index.tsx │ ├── common │ │ └── DeleteTeamDialog │ │ │ ├── graphql │ │ │ └── server │ │ │ │ ├── delete-team.generated.ts │ │ │ │ └── delete-team.graphql │ │ │ ├── index.tsx │ │ │ └── server │ │ │ └── index.ts │ └── layout │ │ ├── AppSelector │ │ ├── graphql │ │ │ └── client │ │ │ │ ├── fetch-apps.generated.ts │ │ │ │ └── fetch-apps.gql │ │ └── index.tsx │ │ ├── CreateAppDialog │ │ ├── Image │ │ │ └── index.tsx │ │ ├── RadioCard │ │ │ └── index.tsx │ │ ├── form-schema.ts │ │ ├── graphql │ │ │ └── server │ │ │ │ ├── insert-app.generated.ts │ │ │ │ └── insert-app.gql │ │ ├── index.tsx │ │ └── server │ │ │ └── submit.ts │ │ ├── Header │ │ └── index.tsx │ │ └── index.tsx ├── Root │ ├── layout │ │ └── index.tsx │ ├── page │ │ ├── graphql │ │ │ └── server │ │ │ │ ├── fetch-memberships.generated.ts │ │ │ │ └── fetch-memberships.gql │ │ └── index.tsx │ └── providers │ │ ├── PostHogPageView.tsx │ │ └── providers.tsx ├── Unauthorized │ └── page.tsx └── common │ └── me-query │ └── client │ ├── graphql │ └── client │ │ ├── me-query.generated.ts │ │ └── me-query.gql │ └── index.tsx ├── services └── posthogClient.ts ├── styles └── globals.css ├── tailwind.config.ts ├── tests ├── api │ ├── __mocks__ │ │ ├── app-review-proof.mock.ts │ │ ├── jwk.ts │ │ ├── jwks.mock.ts │ │ ├── kms.mock.ts │ │ ├── proof.mock.ts │ │ └── sequencer.mock.ts │ ├── debugger.test.ts │ ├── delete-jwks.test.ts │ ├── gen-external-nullifier.test.ts │ ├── graphql.test.ts │ ├── hasura │ │ └── create-app-report │ │ │ └── index.test.ts │ ├── helpers │ │ └── verify.test.ts │ ├── utils.test.ts │ ├── v1 │ │ ├── oidc │ │ │ ├── authorize.test.ts │ │ │ ├── userinfo.test.ts │ │ │ └── validate.test.ts │ │ └── precheck.test.ts │ └── v2 │ │ ├── app │ │ └── submit-app-review.test.ts │ │ ├── create-action.test.ts │ │ ├── minikit-app-metadata.test.ts │ │ ├── minikit-transaction-debug.test.ts │ │ ├── minikit-transaction.test.ts │ │ ├── minikit-user-grant-cycle.test.ts │ │ ├── public │ │ └── apps │ │ │ ├── app.test.ts │ │ │ └── apps.test.ts │ │ ├── send-notification.test.ts │ │ └── verify.test.ts ├── e2e │ ├── global-setup.ts │ ├── global-teardown.ts │ ├── graphql │ │ └── clean-up │ │ │ ├── clean-up.generated.ts │ │ │ ├── clean-up.graphql │ │ │ └── index.ts │ ├── helpers │ │ ├── constants.ts │ │ ├── hasura │ │ │ ├── admin-graphql-client.ts │ │ │ ├── app │ │ │ │ ├── create-app.ts │ │ │ │ ├── delete-apps-for-user.ts │ │ │ │ ├── graphql │ │ │ │ │ ├── delete-apps.generated.ts │ │ │ │ │ ├── delete-apps.graphql │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── insert-app.generated.ts │ │ │ │ │ └── insert-app.graphql │ │ │ │ └── index.ts │ │ │ ├── index.ts │ │ │ ├── membership │ │ │ │ ├── create-membership.ts │ │ │ │ ├── delete-membership.ts │ │ │ │ ├── graphql │ │ │ │ │ ├── delete-membership.generated.ts │ │ │ │ │ ├── delete-membership.graphql │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── insert-membership.generated.ts │ │ │ │ │ └── insert-membership.graphql │ │ │ │ └── index.ts │ │ │ ├── team │ │ │ │ ├── create-team.ts │ │ │ │ ├── delete-team.ts │ │ │ │ ├── graphql │ │ │ │ │ ├── delete-team.generated.ts │ │ │ │ │ ├── delete-team.graphql │ │ │ │ │ ├── index.ts │ │ │ │ │ ├── insert-team.generated.ts │ │ │ │ │ └── insert-team.graphql │ │ │ │ └── index.ts │ │ │ └── user │ │ │ │ ├── create-user.ts │ │ │ │ ├── delete-user.ts │ │ │ │ ├── graphql │ │ │ │ ├── delete-user.generated.ts │ │ │ │ ├── delete-user.graphql │ │ │ │ ├── index.ts │ │ │ │ ├── insert-user.generated.ts │ │ │ │ └── insert-user.graphql │ │ │ │ └── index.ts │ │ ├── index.ts │ │ └── test.ts │ └── specs │ │ ├── action.spec.ts │ │ └── app.spec.ts ├── integration │ ├── action.test.ts │ ├── api-key-security.test.ts │ ├── api │ │ └── v2 │ │ │ └── verify.test.ts │ ├── app.test.ts │ ├── auth │ │ ├── create-team.test.ts │ │ ├── delete-account.test.ts │ │ ├── join-callback.test.ts │ │ └── login-callback.test.ts │ ├── db │ │ ├── default │ │ └── resetdb.sql │ ├── graphql-proxy.test.ts │ ├── jwks.test.ts │ ├── membership.test.ts │ ├── oidc │ │ ├── authorize.test.ts │ │ └── token.test.ts │ ├── redirect.test.ts │ ├── setup.ts │ ├── team.test.ts │ ├── test-utils.ts │ └── user.test.ts ├── unit │ ├── check-flow-type.test.ts │ ├── parse-locale.test.ts │ └── update-session.test.ts └── verifyHasuraIsUp.js └── tsconfig.json /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/api-tests-code-quality.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/.github/workflows/api-tests-code-quality.yml -------------------------------------------------------------------------------- /.github/workflows/ci-app-router.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/.github/workflows/ci-app-router.yml -------------------------------------------------------------------------------- /.github/workflows/relyance-sci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/.github/workflows/relyance-sci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v20.18.0 2 | -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- 1 | # General 2 | * @andy-t-wang @decentralgabe @Gr1dlock @bin-umar 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/README.md -------------------------------------------------------------------------------- /cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/cspell.json -------------------------------------------------------------------------------- /docker-compose-test.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/docker-compose-test.yaml -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /hasura/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/.dockerignore -------------------------------------------------------------------------------- /hasura/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/Dockerfile -------------------------------------------------------------------------------- /hasura/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/README.md -------------------------------------------------------------------------------- /hasura/config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/config.yaml -------------------------------------------------------------------------------- /hasura/metadata/actions.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/metadata/actions.graphql -------------------------------------------------------------------------------- /hasura/metadata/actions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/metadata/actions.yaml -------------------------------------------------------------------------------- /hasura/metadata/allow_list.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /hasura/metadata/api_limits.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/metadata/api_limits.yaml -------------------------------------------------------------------------------- /hasura/metadata/backend_configs.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /hasura/metadata/cron_triggers.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/metadata/cron_triggers.yaml -------------------------------------------------------------------------------- /hasura/metadata/databases/databases.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/metadata/databases/databases.yaml -------------------------------------------------------------------------------- /hasura/metadata/databases/default/functions/functions.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/metadata/databases/default/functions/functions.yaml -------------------------------------------------------------------------------- /hasura/metadata/databases/default/tables/public_app.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/metadata/databases/default/tables/public_app.yaml -------------------------------------------------------------------------------- /hasura/metadata/databases/default/tables/public_app_daily_users.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: app_daily_users 3 | schema: public 4 | -------------------------------------------------------------------------------- /hasura/metadata/databases/default/tables/public_cache.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/metadata/databases/default/tables/public_cache.yaml -------------------------------------------------------------------------------- /hasura/metadata/databases/default/tables/public_nullifier_uses_seen.yaml: -------------------------------------------------------------------------------- 1 | table: 2 | name: nullifier_uses_seen 3 | schema: public 4 | -------------------------------------------------------------------------------- /hasura/metadata/databases/default/tables/tables.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/metadata/databases/default/tables/tables.yaml -------------------------------------------------------------------------------- /hasura/metadata/graphql_schema_introspection.yaml: -------------------------------------------------------------------------------- 1 | disabled_for_roles: [] 2 | -------------------------------------------------------------------------------- /hasura/metadata/inherited_roles.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /hasura/metadata/metrics_config.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /hasura/metadata/network.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /hasura/metadata/opentelemetry.yaml: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /hasura/metadata/query_collections.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /hasura/metadata/remote_schemas.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /hasura/metadata/rest_endpoints.yaml: -------------------------------------------------------------------------------- 1 | [] 2 | -------------------------------------------------------------------------------- /hasura/metadata/version.yaml: -------------------------------------------------------------------------------- 1 | version: 3 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1676582194859_gen_random_friendly_id/down.sql: -------------------------------------------------------------------------------- 1 | DROP FUNCTION IF EXISTS gen_random_friendly_id(VARCHAR); -------------------------------------------------------------------------------- /hasura/migrations/default/1676582663723_create_table_public_cache/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."cache"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1676582806432_create_table_public_team/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."team"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1676583036959_create_table_public_user/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."user"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1676583332783_create_table_public_app/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."app"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1676583921722_create_table_public_action/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."action"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1676584181333_create_table_public_nullifier/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."nullifier"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1676584281958_create_table_public_jwks/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."jwks"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1676584337807_create_table_public_api_key/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."api_key"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1677035369960_create_table_public_revoke/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."revocation"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1677111527278_create_table_public_auth_code/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."auth_code"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1677773990566_alter_table_public_user_add_column_name/down.sql: -------------------------------------------------------------------------------- 1 | alter table "public"."user" drop column "name" -------------------------------------------------------------------------------- /hasura/migrations/default/1686780048978_create_table_public_invite/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."invite"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1691756907458_alter_table_public_user_add_column_auth0Id/down.sql: -------------------------------------------------------------------------------- 1 | alter table "public"."user" drop column "auth0Id"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1694731348594_alter_table_public_action_add_column_privacy_policy_uri/down.sql: -------------------------------------------------------------------------------- 1 | alter table "public"."action" drop column "privacy_policy_uri"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1694731364313_alter_table_public_action_add_column_terms_uri/down.sql: -------------------------------------------------------------------------------- 1 | alter table "public"."action" drop column "terms_uri"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1698852361636_drop_table_public_revocation/up.sql: -------------------------------------------------------------------------------- 1 | DROP table "public"."revocation"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1704485495003_alter_table_public_user_add_column_posthog_id/down.sql: -------------------------------------------------------------------------------- 1 | alter table "public"."user" drop column if exists "posthog_id"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1705073562169_add_owners_to_memberships_table/down.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM membership 2 | WHERE role = 'OWNER'; -------------------------------------------------------------------------------- /hasura/migrations/default/1705087600730_migrate_dropped_app_rows_to_app_metadata/down.sql: -------------------------------------------------------------------------------- 1 | DELETE FROM "public"."app_metadata"; -------------------------------------------------------------------------------- /hasura/migrations/default/1710320198066_create_table_public_app_rankings/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."app_rankings"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1720687478651_create_table_public_localisations/down.sql: -------------------------------------------------------------------------------- 1 | DROP TABLE "public"."localisations"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1724764553849_add_associated_domains/down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "public"."app_metadata" 2 | DROP COLUMN "associated_domains"; -------------------------------------------------------------------------------- /hasura/migrations/default/1726177042301_add import all contacts/down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE "public"."app_metadata" 2 | DROP COLUMN "canImportAllContacts"; -------------------------------------------------------------------------------- /hasura/migrations/default/1729020740764_userid_in_reports/down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE app_report 2 | DROP COLUMN "user_id"; -------------------------------------------------------------------------------- /hasura/migrations/default/1729020740764_userid_in_reports/up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE app_report 2 | ADD COLUMN "user_id" TEXT; -------------------------------------------------------------------------------- /hasura/migrations/default/1731366080224_create_index_action_id_uses/down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX IF EXISTS "public"."action_id_uses"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1731651264113_create_index_app_id_index/down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX IF EXISTS "public"."app_id_index"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1734430170874_app_metadata_changelog/down.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE app_metadata 2 | DROP COLUMN changelog; -------------------------------------------------------------------------------- /hasura/migrations/default/1734430170874_app_metadata_changelog/up.sql: -------------------------------------------------------------------------------- 1 | ALTER TABLE app_metadata 2 | ADD COLUMN changelog text; 3 | -------------------------------------------------------------------------------- /hasura/migrations/default/1743352480964_create_index_notification_log_created_at/down.sql: -------------------------------------------------------------------------------- 1 | DROP INDEX IF EXISTS "public"."notification_log_created_at"; 2 | -------------------------------------------------------------------------------- /hasura/migrations/default/1745259204240_reset_invalid_fields/down.sql: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /hasura/migrations/default/1751472174016_alter_table_public_app_add_column_deleted_at/down.sql: -------------------------------------------------------------------------------- 1 | alter table "public"."app" drop column "deleted_at"; -------------------------------------------------------------------------------- /hasura/migrations/default/1756378551887_alter_table_public_team_add_column_deleted_at/down.sql: -------------------------------------------------------------------------------- 1 | alter table "public"."team" drop column "deleted_at"; 2 | 3 | -------------------------------------------------------------------------------- /hasura/seeds/default/1676722071333_cacheSeed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/seeds/default/1676722071333_cacheSeed.sql -------------------------------------------------------------------------------- /hasura/seeds/default/1676722071530_jwkSeed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/seeds/default/1676722071530_jwkSeed.sql -------------------------------------------------------------------------------- /hasura/seeds/default/1676722071560_teamSeed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/seeds/default/1676722071560_teamSeed.sql -------------------------------------------------------------------------------- /hasura/seeds/default/1676722088705_userSeed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/seeds/default/1676722088705_userSeed.sql -------------------------------------------------------------------------------- /hasura/seeds/default/1678146259008_appSeed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/seeds/default/1678146259008_appSeed.sql -------------------------------------------------------------------------------- /hasura/seeds/default/1678146469554_actionSeed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/seeds/default/1678146469554_actionSeed.sql -------------------------------------------------------------------------------- /hasura/seeds/default/1678146566240_redirectSeed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/seeds/default/1678146566240_redirectSeed.sql -------------------------------------------------------------------------------- /hasura/seeds/default/1704901197527_membershipsSeed.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/hasura/seeds/default/1704901197527_membershipsSeed.sql -------------------------------------------------------------------------------- /relyance.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/relyance.yaml -------------------------------------------------------------------------------- /tests/api/.env.development: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/.env.development -------------------------------------------------------------------------------- /tests/api/.prettierignore: -------------------------------------------------------------------------------- 1 | pnpm-lock.yaml 2 | /node_modules 3 | ctrf/ 4 | -------------------------------------------------------------------------------- /tests/api/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/.prettierrc -------------------------------------------------------------------------------- /tests/api/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/README.md -------------------------------------------------------------------------------- /tests/api/cspell.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/cspell.json -------------------------------------------------------------------------------- /tests/api/eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/eslint.config.ts -------------------------------------------------------------------------------- /tests/api/global.d.ts: -------------------------------------------------------------------------------- 1 | import "jest-expect-message"; 2 | -------------------------------------------------------------------------------- /tests/api/helpers/auth0/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/helpers/auth0/constants.ts -------------------------------------------------------------------------------- /tests/api/helpers/auth0/create-app-session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/helpers/auth0/create-app-session.ts -------------------------------------------------------------------------------- /tests/api/helpers/auth0/create-cookie.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/helpers/auth0/create-cookie.ts -------------------------------------------------------------------------------- /tests/api/helpers/auth0/decrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/helpers/auth0/decrypt.ts -------------------------------------------------------------------------------- /tests/api/helpers/auth0/encrypt.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/helpers/auth0/encrypt.ts -------------------------------------------------------------------------------- /tests/api/helpers/auth0/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./create-app-session"; 2 | -------------------------------------------------------------------------------- /tests/api/helpers/aws-authorizer-lambda.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/helpers/aws-authorizer-lambda.ts -------------------------------------------------------------------------------- /tests/api/helpers/hasura.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/helpers/hasura.ts -------------------------------------------------------------------------------- /tests/api/helpers/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./hasura"; 2 | -------------------------------------------------------------------------------- /tests/api/helpers/s3-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/helpers/s3-setup.ts -------------------------------------------------------------------------------- /tests/api/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/jest.config.ts -------------------------------------------------------------------------------- /tests/api/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/jest.setup.ts -------------------------------------------------------------------------------- /tests/api/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/package.json -------------------------------------------------------------------------------- /tests/api/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/pnpm-lock.yaml -------------------------------------------------------------------------------- /tests/api/specs/auxiliary/auxiliary-endpoints.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/auxiliary/auxiliary-endpoints.spec.ts -------------------------------------------------------------------------------- /tests/api/specs/dev-portal-helpers/create-team.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/dev-portal-helpers/create-team.spec.ts -------------------------------------------------------------------------------- /tests/api/specs/hasura/app-draft.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/hasura/app-draft.spec.ts -------------------------------------------------------------------------------- /tests/api/specs/hasura/app-management.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/hasura/app-management.spec.ts -------------------------------------------------------------------------------- /tests/api/specs/hasura/app-verification.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/hasura/app-verification.spec.ts -------------------------------------------------------------------------------- /tests/api/specs/hasura/get-app-review-images.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/hasura/get-app-review-images.spec.ts -------------------------------------------------------------------------------- /tests/api/specs/hasura/get-image.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/hasura/get-image.spec.ts -------------------------------------------------------------------------------- /tests/api/specs/hasura/get-unverified-images.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/hasura/get-unverified-images.spec.ts -------------------------------------------------------------------------------- /tests/api/specs/hasura/invalidate-cache.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/hasura/invalidate-cache.spec.ts -------------------------------------------------------------------------------- /tests/api/specs/hasura/invite-team-members.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/hasura/invite-team-members.spec.ts -------------------------------------------------------------------------------- /tests/api/specs/hasura/reset-api-key.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/hasura/reset-api-key.spec.ts -------------------------------------------------------------------------------- /tests/api/specs/hasura/upload-image.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/hasura/upload-image.spec.ts -------------------------------------------------------------------------------- /tests/api/specs/hasura/validate-localisation.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/hasura/validate-localisation.spec.ts -------------------------------------------------------------------------------- /tests/api/specs/public/public-apps.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/specs/public/public-apps.spec.ts -------------------------------------------------------------------------------- /tests/api/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/tests/api/tsconfig.json -------------------------------------------------------------------------------- /web/.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/.dockerignore -------------------------------------------------------------------------------- /web/.env.test: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/.env.test -------------------------------------------------------------------------------- /web/.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/.eslintrc.js -------------------------------------------------------------------------------- /web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/.gitignore -------------------------------------------------------------------------------- /web/.graphqlconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/.graphqlconfig -------------------------------------------------------------------------------- /web/.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/.prettierignore -------------------------------------------------------------------------------- /web/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/.prettierrc.js -------------------------------------------------------------------------------- /web/@types/global.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/@types/global.d.ts -------------------------------------------------------------------------------- /web/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/Dockerfile -------------------------------------------------------------------------------- /web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/README.md -------------------------------------------------------------------------------- /web/api/_delete-expired-auth-codes/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/_delete-expired-auth-codes/index.ts -------------------------------------------------------------------------------- /web/api/_delete-jwks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/_delete-jwks/index.ts -------------------------------------------------------------------------------- /web/api/_gen-external-nullifier/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/_gen-external-nullifier/index.ts -------------------------------------------------------------------------------- /web/api/_rollup-app-stats/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/_rollup-app-stats/index.ts -------------------------------------------------------------------------------- /web/api/auth/[auth0]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/auth/[auth0]/index.ts -------------------------------------------------------------------------------- /web/api/create-team/graphql/insert-membership.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/create-team/graphql/insert-membership.graphql -------------------------------------------------------------------------------- /web/api/create-team/graphql/insert-team.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/create-team/graphql/insert-team.generated.ts -------------------------------------------------------------------------------- /web/api/create-team/graphql/insert-team.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/create-team/graphql/insert-team.graphql -------------------------------------------------------------------------------- /web/api/create-team/graphql/insert-user.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/create-team/graphql/insert-user.generated.ts -------------------------------------------------------------------------------- /web/api/create-team/graphql/insert-user.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/create-team/graphql/insert-user.graphql -------------------------------------------------------------------------------- /web/api/create-team/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/create-team/index.ts -------------------------------------------------------------------------------- /web/api/delete-account/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/delete-account/index.ts -------------------------------------------------------------------------------- /web/api/delete-expired-notification-logs/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/delete-expired-notification-logs/index.ts -------------------------------------------------------------------------------- /web/api/hasura/ban-app/graphql/ban-app.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/ban-app/graphql/ban-app.generated.ts -------------------------------------------------------------------------------- /web/api/hasura/ban-app/graphql/ban-app.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/ban-app/graphql/ban-app.graphql -------------------------------------------------------------------------------- /web/api/hasura/ban-app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/ban-app/index.ts -------------------------------------------------------------------------------- /web/api/hasura/change-app-report-status/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/change-app-report-status/index.ts -------------------------------------------------------------------------------- /web/api/hasura/create-app-report/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/create-app-report/index.ts -------------------------------------------------------------------------------- /web/api/hasura/create-new-draft/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/create-new-draft/index.ts -------------------------------------------------------------------------------- /web/api/hasura/delete-images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/delete-images/index.ts -------------------------------------------------------------------------------- /web/api/hasura/get-app-review-images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/get-app-review-images/index.ts -------------------------------------------------------------------------------- /web/api/hasura/get-image/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/get-image/index.ts -------------------------------------------------------------------------------- /web/api/hasura/get-unverified-images/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/get-unverified-images/index.ts -------------------------------------------------------------------------------- /web/api/hasura/graphql/checkUserInApp.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/graphql/checkUserInApp.generated.ts -------------------------------------------------------------------------------- /web/api/hasura/graphql/checkUserInApp.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/graphql/checkUserInApp.graphql -------------------------------------------------------------------------------- /web/api/hasura/invalidate-cache/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/invalidate-cache/index.ts -------------------------------------------------------------------------------- /web/api/hasura/invite-team-members/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/invite-team-members/index.ts -------------------------------------------------------------------------------- /web/api/hasura/reset-api-key/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/reset-api-key/index.ts -------------------------------------------------------------------------------- /web/api/hasura/reset-client-secret/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/reset-client-secret/index.ts -------------------------------------------------------------------------------- /web/api/hasura/unban-app/graphql/unban-app.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/unban-app/graphql/unban-app.generated.ts -------------------------------------------------------------------------------- /web/api/hasura/unban-app/graphql/unban-app.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/unban-app/graphql/unban-app.graphql -------------------------------------------------------------------------------- /web/api/hasura/unban-app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/unban-app/index.ts -------------------------------------------------------------------------------- /web/api/hasura/upload-image/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/upload-image/index.ts -------------------------------------------------------------------------------- /web/api/hasura/validate-localisation/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/validate-localisation/index.ts -------------------------------------------------------------------------------- /web/api/hasura/verify-app/graphql/verifyApp.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/verify-app/graphql/verifyApp.graphql -------------------------------------------------------------------------------- /web/api/hasura/verify-app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/hasura/verify-app/index.ts -------------------------------------------------------------------------------- /web/api/helpers/app-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/app-store.ts -------------------------------------------------------------------------------- /web/api/helpers/auth/verify-api-key.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/auth/verify-api-key.ts -------------------------------------------------------------------------------- /web/api/helpers/errors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/errors.ts -------------------------------------------------------------------------------- /web/api/helpers/fetch-metrics.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/fetch-metrics.ts -------------------------------------------------------------------------------- /web/api/helpers/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/graphql.ts -------------------------------------------------------------------------------- /web/api/helpers/image-processing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/image-processing.ts -------------------------------------------------------------------------------- /web/api/helpers/is-email-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/is-email-user.ts -------------------------------------------------------------------------------- /web/api/helpers/is-password-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/is-password-user.ts -------------------------------------------------------------------------------- /web/api/helpers/jwks/graphql/delete-expired-jwks.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/jwks/graphql/delete-expired-jwks.gql -------------------------------------------------------------------------------- /web/api/helpers/jwks/graphql/insert-jwk.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/jwks/graphql/insert-jwk.generated.ts -------------------------------------------------------------------------------- /web/api/helpers/jwks/graphql/insert-jwk.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/jwks/graphql/insert-jwk.gql -------------------------------------------------------------------------------- /web/api/helpers/jwks/graphql/retrieve-jwk.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/jwks/graphql/retrieve-jwk.generated.ts -------------------------------------------------------------------------------- /web/api/helpers/jwks/graphql/retrieve-jwk.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/jwks/graphql/retrieve-jwk.gql -------------------------------------------------------------------------------- /web/api/helpers/jwks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/jwks/index.ts -------------------------------------------------------------------------------- /web/api/helpers/jwts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/jwts.ts -------------------------------------------------------------------------------- /web/api/helpers/kms.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/kms.ts -------------------------------------------------------------------------------- /web/api/helpers/oidc/graphql/fetch-app-secret-query.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/oidc/graphql/fetch-app-secret-query.gql -------------------------------------------------------------------------------- /web/api/helpers/oidc/graphql/fetch-oidc-app.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/oidc/graphql/fetch-oidc-app.gql -------------------------------------------------------------------------------- /web/api/helpers/oidc/graphql/insert-auth-code.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/oidc/graphql/insert-auth-code.gql -------------------------------------------------------------------------------- /web/api/helpers/oidc/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/oidc/index.ts -------------------------------------------------------------------------------- /web/api/helpers/send-email.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/send-email.ts -------------------------------------------------------------------------------- /web/api/helpers/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/utils.ts -------------------------------------------------------------------------------- /web/api/helpers/validate-request-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/validate-request-schema.ts -------------------------------------------------------------------------------- /web/api/helpers/verify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/helpers/verify.ts -------------------------------------------------------------------------------- /web/api/join-callback/graphql/get-invite-by-id.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/join-callback/graphql/get-invite-by-id.graphql -------------------------------------------------------------------------------- /web/api/join-callback/graphql/insert-user.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/join-callback/graphql/insert-user.generated.ts -------------------------------------------------------------------------------- /web/api/join-callback/graphql/insert-user.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/join-callback/graphql/insert-user.graphql -------------------------------------------------------------------------------- /web/api/join-callback/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/join-callback/index.ts -------------------------------------------------------------------------------- /web/api/login-callback/graphql/delete-invite.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/login-callback/graphql/delete-invite.graphql -------------------------------------------------------------------------------- /web/api/login-callback/graphql/fetch-email-user.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/login-callback/graphql/fetch-email-user.graphql -------------------------------------------------------------------------------- /web/api/login-callback/graphql/fetch-invite.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/login-callback/graphql/fetch-invite.graphql -------------------------------------------------------------------------------- /web/api/login-callback/graphql/update-user.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/login-callback/graphql/update-user.generated.ts -------------------------------------------------------------------------------- /web/api/login-callback/graphql/update-user.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/login-callback/graphql/update-user.graphql -------------------------------------------------------------------------------- /web/api/login-callback/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/login-callback/index.ts -------------------------------------------------------------------------------- /web/api/update-session/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/update-session/index.ts -------------------------------------------------------------------------------- /web/api/v1/debugger/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/debugger/index.ts -------------------------------------------------------------------------------- /web/api/v1/graphql/graphql/get-api-key.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/graphql/graphql/get-api-key.generated.ts -------------------------------------------------------------------------------- /web/api/v1/graphql/graphql/get-api-key.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/graphql/graphql/get-api-key.graphql -------------------------------------------------------------------------------- /web/api/v1/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/graphql/index.ts -------------------------------------------------------------------------------- /web/api/v1/jwks/graphql/get-jwks.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/jwks/graphql/get-jwks.generated.ts -------------------------------------------------------------------------------- /web/api/v1/jwks/graphql/get-jwks.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/jwks/graphql/get-jwks.graphql -------------------------------------------------------------------------------- /web/api/v1/jwks/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/jwks/index.ts -------------------------------------------------------------------------------- /web/api/v1/oidc/authorize/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/oidc/authorize/index.ts -------------------------------------------------------------------------------- /web/api/v1/oidc/introspect/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/oidc/introspect/index.ts -------------------------------------------------------------------------------- /web/api/v1/oidc/openid-configuration/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/oidc/openid-configuration/index.ts -------------------------------------------------------------------------------- /web/api/v1/oidc/token/graphql/delete-auth-code.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/oidc/token/graphql/delete-auth-code.graphql -------------------------------------------------------------------------------- /web/api/v1/oidc/token/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/oidc/token/index.ts -------------------------------------------------------------------------------- /web/api/v1/oidc/userinfo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/oidc/userinfo/index.ts -------------------------------------------------------------------------------- /web/api/v1/oidc/validate/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/oidc/validate/index.ts -------------------------------------------------------------------------------- /web/api/v1/precheck/[app_id]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v1/precheck/[app_id]/index.ts -------------------------------------------------------------------------------- /web/api/v2/app/submit-app-review/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/app/submit-app-review/index.ts -------------------------------------------------------------------------------- /web/api/v2/create-action/graphql/fetch-api-key.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/create-action/graphql/fetch-api-key.gql -------------------------------------------------------------------------------- /web/api/v2/create-action/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/create-action/index.ts -------------------------------------------------------------------------------- /web/api/v2/minikit/app-metadata/[app_id]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/minikit/app-metadata/[app_id]/index.ts -------------------------------------------------------------------------------- /web/api/v2/minikit/graphql/fetch-api-key.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/minikit/graphql/fetch-api-key.generated.ts -------------------------------------------------------------------------------- /web/api/v2/minikit/graphql/fetch-api-key.gql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/minikit/graphql/fetch-api-key.gql -------------------------------------------------------------------------------- /web/api/v2/minikit/send-notification/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/minikit/send-notification/index.ts -------------------------------------------------------------------------------- /web/api/v2/minikit/send-notification/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/minikit/send-notification/schema.ts -------------------------------------------------------------------------------- /web/api/v2/minikit/transaction/debug/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/minikit/transaction/debug/index.ts -------------------------------------------------------------------------------- /web/api/v2/minikit/user-grant-cycle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/minikit/user-grant-cycle/index.ts -------------------------------------------------------------------------------- /web/api/v2/public/app/[app_id]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/public/app/[app_id]/index.ts -------------------------------------------------------------------------------- /web/api/v2/public/apps/graphql/get-app-rankings.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/public/apps/graphql/get-app-rankings.graphql -------------------------------------------------------------------------------- /web/api/v2/public/apps/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/public/apps/index.ts -------------------------------------------------------------------------------- /web/api/v2/public/apps/search/[search_term]/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/public/apps/search/[search_term]/index.ts -------------------------------------------------------------------------------- /web/api/v2/public/constants.ts: -------------------------------------------------------------------------------- 1 | // TODO remove when min app is higher 2 | export const CONTACTS_APP_AVAILABLE_FROM = "2.8.7803"; 3 | -------------------------------------------------------------------------------- /web/api/v2/verify/graphql/fetch-app-action.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/verify/graphql/fetch-app-action.generated.ts -------------------------------------------------------------------------------- /web/api/v2/verify/graphql/fetch-app-action.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/verify/graphql/fetch-app-action.graphql -------------------------------------------------------------------------------- /web/api/v2/verify/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/api/v2/verify/index.ts -------------------------------------------------------------------------------- /web/app/(onboarding)/create-team/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(onboarding)/create-team/layout.tsx -------------------------------------------------------------------------------- /web/app/(onboarding)/create-team/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(onboarding)/create-team/page.tsx -------------------------------------------------------------------------------- /web/app/(onboarding)/join-callback/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(onboarding)/join-callback/page.tsx -------------------------------------------------------------------------------- /web/app/(onboarding)/join/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(onboarding)/join/page.tsx -------------------------------------------------------------------------------- /web/app/(onboarding)/login/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(onboarding)/login/layout.tsx -------------------------------------------------------------------------------- /web/app/(onboarding)/login/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(onboarding)/login/page.tsx -------------------------------------------------------------------------------- /web/app/(portal)/kiosk/[appId]/[actionId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/kiosk/[appId]/[actionId]/page.tsx -------------------------------------------------------------------------------- /web/app/(portal)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/layout.tsx -------------------------------------------------------------------------------- /web/app/(portal)/profile/danger/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/profile/danger/page.tsx -------------------------------------------------------------------------------- /web/app/(portal)/profile/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/profile/layout.tsx -------------------------------------------------------------------------------- /web/app/(portal)/profile/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/profile/page.tsx -------------------------------------------------------------------------------- /web/app/(portal)/profile/teams/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/profile/teams/page.tsx -------------------------------------------------------------------------------- /web/app/(portal)/teams/[teamId]/(team)/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/teams/[teamId]/(team)/app/page.tsx -------------------------------------------------------------------------------- /web/app/(portal)/teams/[teamId]/(team)/danger/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/teams/[teamId]/(team)/danger/page.tsx -------------------------------------------------------------------------------- /web/app/(portal)/teams/[teamId]/(team)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/teams/[teamId]/(team)/layout.tsx -------------------------------------------------------------------------------- /web/app/(portal)/teams/[teamId]/(team)/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/teams/[teamId]/(team)/page.tsx -------------------------------------------------------------------------------- /web/app/(portal)/teams/[teamId]/apps/[appId]/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/teams/[teamId]/apps/[appId]/layout.tsx -------------------------------------------------------------------------------- /web/app/(portal)/teams/[teamId]/apps/[appId]/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/teams/[teamId]/apps/[appId]/page.tsx -------------------------------------------------------------------------------- /web/app/(portal)/teams/[teamId]/apps/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/teams/[teamId]/apps/page.tsx -------------------------------------------------------------------------------- /web/app/(portal)/teams/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(portal)/teams/page.tsx -------------------------------------------------------------------------------- /web/app/(unauthorized)/unauthorized/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/(unauthorized)/unauthorized/page.tsx -------------------------------------------------------------------------------- /web/app/api/%5Fdelete-expired-auth-codes/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/_delete-expired-auth-codes"; 2 | -------------------------------------------------------------------------------- /web/app/api/%5Fdelete-jwks/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/_delete-jwks"; 2 | -------------------------------------------------------------------------------- /web/app/api/%5Fgen-external-nullifier/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/_gen-external-nullifier"; 2 | -------------------------------------------------------------------------------- /web/app/api/%5Frollup-app-stats/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/_rollup-app-stats"; 2 | -------------------------------------------------------------------------------- /web/app/api/auth/[auth0]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/api/auth/[auth0]/route.ts -------------------------------------------------------------------------------- /web/app/api/create-team/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/create-team"; 2 | -------------------------------------------------------------------------------- /web/app/api/delete-expired-notification-logs/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/delete-expired-notification-logs"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/ban-app/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/ban-app"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/change-app-report-status/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/change-app-report-status"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/create-app-report/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/create-app-report"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/create-new-draft/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/create-new-draft"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/delete-images/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/delete-images"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/get-app-review-images/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/get-app-review-images"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/get-image/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/get-image"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/get-unverified-images/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/get-unverified-images"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/invalidate-cache/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/invalidate-cache"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/invite-team-members/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/invite-team-members"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/reset-api-key/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/reset-api-key"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/reset-client-secret/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/reset-client-secret"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/unban-app/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/unban-app"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/upload-image/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/upload-image"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/validate-localisation/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/validate-localisation"; 2 | -------------------------------------------------------------------------------- /web/app/api/hasura/verify-app/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/hasura/verify-app"; 2 | -------------------------------------------------------------------------------- /web/app/api/health/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/api/health/route.ts -------------------------------------------------------------------------------- /web/app/api/join-callback/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/join-callback"; 2 | -------------------------------------------------------------------------------- /web/app/api/public/app/[app_id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/api/public/app/[app_id]/route.ts -------------------------------------------------------------------------------- /web/app/api/public/apps/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/api/public/apps/route.ts -------------------------------------------------------------------------------- /web/app/api/update-session/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/update-session"; 2 | -------------------------------------------------------------------------------- /web/app/api/v1/debugger/route.ts: -------------------------------------------------------------------------------- 1 | export { OPTIONS, POST } from "@/api/v1/debugger"; 2 | -------------------------------------------------------------------------------- /web/app/api/v1/graphql/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/v1/graphql"; 2 | -------------------------------------------------------------------------------- /web/app/api/v1/jwks/route.ts: -------------------------------------------------------------------------------- 1 | export { GET, OPTIONS } from "@/api/v1/jwks"; 2 | -------------------------------------------------------------------------------- /web/app/api/v1/oidc/authorize/route.ts: -------------------------------------------------------------------------------- 1 | export { OPTIONS, POST } from "@/api/v1/oidc/authorize"; 2 | -------------------------------------------------------------------------------- /web/app/api/v1/oidc/introspect/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/v1/oidc/introspect"; 2 | -------------------------------------------------------------------------------- /web/app/api/v1/oidc/openid-configuration/route.ts: -------------------------------------------------------------------------------- 1 | export { GET, OPTIONS } from "@/api/v1/oidc/openid-configuration"; 2 | -------------------------------------------------------------------------------- /web/app/api/v1/oidc/token/route.ts: -------------------------------------------------------------------------------- 1 | export { OPTIONS, POST } from "@/api/v1/oidc/token"; 2 | -------------------------------------------------------------------------------- /web/app/api/v1/oidc/userinfo/route.ts: -------------------------------------------------------------------------------- 1 | export { GET, OPTIONS, POST } from "@/api/v1/oidc/userinfo"; 2 | -------------------------------------------------------------------------------- /web/app/api/v1/oidc/validate/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/v1/oidc/validate"; 2 | -------------------------------------------------------------------------------- /web/app/api/v1/precheck/[app_id]/route.ts: -------------------------------------------------------------------------------- 1 | export { OPTIONS, POST } from "@/api/v1/precheck/[app_id]"; 2 | -------------------------------------------------------------------------------- /web/app/api/v2/app/submit-app-review/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/api/v2/app/submit-app-review/route.ts -------------------------------------------------------------------------------- /web/app/api/v2/create-action/[app_id]/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/v2/create-action"; 2 | -------------------------------------------------------------------------------- /web/app/api/v2/minikit/app-metadata/[app_id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/api/v2/minikit/app-metadata/[app_id]/route.ts -------------------------------------------------------------------------------- /web/app/api/v2/minikit/send-notification/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/v2/minikit/send-notification"; 2 | -------------------------------------------------------------------------------- /web/app/api/v2/minikit/transaction/debug/route.ts: -------------------------------------------------------------------------------- 1 | export { GET, OPTIONS } from "@/api/v2/minikit/transaction/debug"; 2 | -------------------------------------------------------------------------------- /web/app/api/v2/minikit/user-grant-cycle/route.ts: -------------------------------------------------------------------------------- 1 | export { GET } from "@/api/v2/minikit/user-grant-cycle"; 2 | -------------------------------------------------------------------------------- /web/app/api/v2/public/app/[app_id]/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/api/v2/public/app/[app_id]/route.ts -------------------------------------------------------------------------------- /web/app/api/v2/public/apps/route.ts: -------------------------------------------------------------------------------- 1 | export { GET } from "@/api/v2/public/apps"; 2 | -------------------------------------------------------------------------------- /web/app/api/v2/verify/[app_id]/route.ts: -------------------------------------------------------------------------------- 1 | export { POST } from "@/api/v2/verify"; 2 | -------------------------------------------------------------------------------- /web/app/apple-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/apple-icon.png -------------------------------------------------------------------------------- /web/app/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/icon.ico -------------------------------------------------------------------------------- /web/app/icon16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/icon16.png -------------------------------------------------------------------------------- /web/app/icon32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/icon32.png -------------------------------------------------------------------------------- /web/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/layout.tsx -------------------------------------------------------------------------------- /web/app/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/app/page.ts -------------------------------------------------------------------------------- /web/aws-role-sample-policy.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/aws-role-sample-policy.json -------------------------------------------------------------------------------- /web/components/AppStatus/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/AppStatus/index.tsx -------------------------------------------------------------------------------- /web/components/BottomBar/Link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/BottomBar/Link/index.tsx -------------------------------------------------------------------------------- /web/components/BottomBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/BottomBar/index.tsx -------------------------------------------------------------------------------- /web/components/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Button/index.tsx -------------------------------------------------------------------------------- /web/components/Category/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Category/index.tsx -------------------------------------------------------------------------------- /web/components/Chart/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Chart/index.tsx -------------------------------------------------------------------------------- /web/components/Checkbox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Checkbox/index.tsx -------------------------------------------------------------------------------- /web/components/CircleIconContainer/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/CircleIconContainer/index.tsx -------------------------------------------------------------------------------- /web/components/CodeBlock/PreTag/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/CodeBlock/PreTag/index.tsx -------------------------------------------------------------------------------- /web/components/CodeBlock/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/CodeBlock/index.tsx -------------------------------------------------------------------------------- /web/components/CopyButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/CopyButton/index.tsx -------------------------------------------------------------------------------- /web/components/CountryBadge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/CountryBadge/index.tsx -------------------------------------------------------------------------------- /web/components/DecoratedButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/DecoratedButton/index.tsx -------------------------------------------------------------------------------- /web/components/Dialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Dialog/index.tsx -------------------------------------------------------------------------------- /web/components/DialogOverlay/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/DialogOverlay/index.tsx -------------------------------------------------------------------------------- /web/components/DialogPanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/DialogPanel/index.tsx -------------------------------------------------------------------------------- /web/components/DisclosureButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/DisclosureButton/index.tsx -------------------------------------------------------------------------------- /web/components/DisclosurePanel/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/DisclosurePanel/index.tsx -------------------------------------------------------------------------------- /web/components/Dropdown/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Dropdown/Button/index.tsx -------------------------------------------------------------------------------- /web/components/Dropdown/List/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Dropdown/List/index.tsx -------------------------------------------------------------------------------- /web/components/Dropdown/ListHeader/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Dropdown/ListHeader/index.tsx -------------------------------------------------------------------------------- /web/components/Dropdown/ListItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Dropdown/ListItem/index.tsx -------------------------------------------------------------------------------- /web/components/Dropdown/ListItemIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Dropdown/ListItemIcon/index.tsx -------------------------------------------------------------------------------- /web/components/Dropdown/ListItemText/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Dropdown/ListItemText/index.tsx -------------------------------------------------------------------------------- /web/components/Dropdown/ListSeparator/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Dropdown/ListSeparator/index.tsx -------------------------------------------------------------------------------- /web/components/Dropdown/Sub/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Dropdown/Sub/index.tsx -------------------------------------------------------------------------------- /web/components/Dropdown/SubButton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Dropdown/SubButton/index.tsx -------------------------------------------------------------------------------- /web/components/Dropdown/SubList/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Dropdown/SubList/index.tsx -------------------------------------------------------------------------------- /web/components/Dropdown/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Dropdown/index.tsx -------------------------------------------------------------------------------- /web/components/Environment/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Environment/index.tsx -------------------------------------------------------------------------------- /web/components/Icons/AddCircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/AddCircleIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/AlertIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/AlertIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/AppIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/AppIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/ArrowDownSharp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/ArrowDownSharp.tsx -------------------------------------------------------------------------------- /web/components/Icons/ArrowRightIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/ArrowRightIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/ArrowUpIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/ArrowUpIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/BankIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/BankIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/CaretIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/CaretIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/CheckIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/CheckIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/CheckmarkBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/CheckmarkBadge.tsx -------------------------------------------------------------------------------- /web/components/Icons/CheckmarkCircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/CheckmarkCircleIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/ChevronLeftIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/ChevronLeftIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/ChevronRightIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/ChevronRightIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/CloseIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/CloseIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/CloudIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/CloudIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/CodeFolderIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/CodeFolderIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/CodeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/CodeIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/CollapseIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/CollapseIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/CopyCheckIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/CopyCheckIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/CopyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/CopyIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/CopySquareIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/CopySquareIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/CustomerSupportIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/CustomerSupportIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/DashboardSquareIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/DashboardSquareIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/DiscordIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/DiscordIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/DocsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/DocsIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/EditIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/EditIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/EditUserIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/EditUserIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/ElementsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/ElementsIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/EnvelopeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/EnvelopeIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/ExchangeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/ExchangeIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/ExpandIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/ExpandIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/ExternalLinkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/ExternalLinkIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/FailedIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/FailedIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/FlaskIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/FlaskIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/GithubIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/GithubIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/GlobeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/GlobeIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/GmailIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/GmailIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/HelpIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/HelpIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/HelpSquareIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/HelpSquareIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/IdentificationIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/IdentificationIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/IncognitoIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/IncognitoIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/InformationCircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/InformationCircleIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/KeyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/KeyIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/LegalIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/LegalIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/LinkIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/LinkIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/LockIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/LockIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/LoginSquareIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/LoginSquareIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/LogoLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/LogoLines.tsx -------------------------------------------------------------------------------- /web/components/Icons/LogoutIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/LogoutIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/MagnifierIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/MagnifierIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/MailIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/MailIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/MailWithLines.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/MailWithLines.tsx -------------------------------------------------------------------------------- /web/components/Icons/MinusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/MinusIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/MoreVerticalIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/MoreVerticalIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/MultiplePlusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/MultiplePlusIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/OpenNewWindowIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/OpenNewWindowIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/OptimismIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/OptimismIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/OutgoingLink.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/OutgoingLink.tsx -------------------------------------------------------------------------------- /web/components/Icons/PlusCircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/PlusCircleIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/PlusIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/PlusIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/QRIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/QRIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/RemoveCustomIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/RemoveCustomIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/SearchIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/SearchIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/SecurityIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/SecurityIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/SendIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/SendIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/SettingsIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/SettingsIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/SmartPhoneIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/SmartPhoneIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/SpinnerIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/SpinnerIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/StartUp.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/StartUp.tsx -------------------------------------------------------------------------------- /web/components/Icons/SubtractIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/SubtractIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/SuccessCheckIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/SuccessCheckIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/SuccessIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/SuccessIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/TelegramIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/TelegramIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/TestTubeIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/TestTubeIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/TransactionIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/TransactionIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/TrashIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/TrashIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/TrophyIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/TrophyIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/UploadIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/UploadIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/UsdcIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/UsdcIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/UserAccountIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/UserAccountIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/UserAddIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/UserAddIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/UserCardIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/UserCardIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/UserCircleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/UserCircleIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/UserEditIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/UserEditIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/UserMultipleIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/UserMultipleIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/UserStoryIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/UserStoryIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/WLDIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/WLDIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/WLDTokenIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/WLDTokenIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/WallenPocketIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/WallenPocketIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/WalletIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/WalletIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/WarningErrorIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/WarningErrorIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/WorldBlueprintIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/WorldBlueprintIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/WorldIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/WorldIcon.tsx -------------------------------------------------------------------------------- /web/components/Icons/WorldTextLogo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Icons/WorldTextLogo.tsx -------------------------------------------------------------------------------- /web/components/ImageDropZone/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/ImageDropZone/index.tsx -------------------------------------------------------------------------------- /web/components/InitialSteps/IconFrame/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/InitialSteps/IconFrame/index.tsx -------------------------------------------------------------------------------- /web/components/InitialSteps/Step/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/InitialSteps/Step/index.tsx -------------------------------------------------------------------------------- /web/components/InitialSteps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/InitialSteps/index.tsx -------------------------------------------------------------------------------- /web/components/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Input/index.tsx -------------------------------------------------------------------------------- /web/components/LayersIconFrame/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/LayersIconFrame/index.tsx -------------------------------------------------------------------------------- /web/components/Link/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Link/index.tsx -------------------------------------------------------------------------------- /web/components/LoggedUserNav/Help/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/LoggedUserNav/Help/index.tsx -------------------------------------------------------------------------------- /web/components/LoggedUserNav/Teams/TeamLogo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/LoggedUserNav/Teams/TeamLogo/index.tsx -------------------------------------------------------------------------------- /web/components/LoggedUserNav/Teams/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/LoggedUserNav/Teams/index.tsx -------------------------------------------------------------------------------- /web/components/LoggedUserNav/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/LoggedUserNav/index.tsx -------------------------------------------------------------------------------- /web/components/Notification/IconFrame/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Notification/IconFrame/index.tsx -------------------------------------------------------------------------------- /web/components/Notification/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Notification/index.tsx -------------------------------------------------------------------------------- /web/components/OtpInput/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/OtpInput/index.tsx -------------------------------------------------------------------------------- /web/components/Pagination/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Pagination/index.tsx -------------------------------------------------------------------------------- /web/components/PlaceholderImage/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/PlaceholderImage/index.tsx -------------------------------------------------------------------------------- /web/components/QuickAction/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/QuickAction/index.tsx -------------------------------------------------------------------------------- /web/components/Radio/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Radio/index.tsx -------------------------------------------------------------------------------- /web/components/Section/Header/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Section/Header/Button/index.tsx -------------------------------------------------------------------------------- /web/components/Section/Header/Search/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Section/Header/Search/index.tsx -------------------------------------------------------------------------------- /web/components/Section/Header/Title/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Section/Header/Title/index.tsx -------------------------------------------------------------------------------- /web/components/Section/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Section/Header/index.tsx -------------------------------------------------------------------------------- /web/components/Section/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Section/index.tsx -------------------------------------------------------------------------------- /web/components/Select/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Select/Button/index.tsx -------------------------------------------------------------------------------- /web/components/Select/Option/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Select/Option/index.tsx -------------------------------------------------------------------------------- /web/components/Select/Options/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Select/Options/index.tsx -------------------------------------------------------------------------------- /web/components/Select/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Select/index.tsx -------------------------------------------------------------------------------- /web/components/SelectMultiple/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/SelectMultiple/index.tsx -------------------------------------------------------------------------------- /web/components/SizingWrapper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/SizingWrapper/index.tsx -------------------------------------------------------------------------------- /web/components/Stepper/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Stepper/index.tsx -------------------------------------------------------------------------------- /web/components/Switch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Switch/index.tsx -------------------------------------------------------------------------------- /web/components/SwitcherBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/SwitcherBox/index.tsx -------------------------------------------------------------------------------- /web/components/Tabs/Tab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Tabs/Tab/index.tsx -------------------------------------------------------------------------------- /web/components/Tabs/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Tabs/index.tsx -------------------------------------------------------------------------------- /web/components/TextArea/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/TextArea/index.tsx -------------------------------------------------------------------------------- /web/components/Toggle/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Toggle/index.tsx -------------------------------------------------------------------------------- /web/components/Typography/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Typography/index.tsx -------------------------------------------------------------------------------- /web/components/Unauthorized/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/components/Unauthorized/index.tsx -------------------------------------------------------------------------------- /web/graphql-codegen.schema.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/graphql-codegen.schema.js -------------------------------------------------------------------------------- /web/graphql-codegen.types.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/graphql-codegen.types.js -------------------------------------------------------------------------------- /web/graphql/graphql.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/graphql/graphql.schema.json -------------------------------------------------------------------------------- /web/graphql/graphql.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/graphql/graphql.ts -------------------------------------------------------------------------------- /web/instrumentation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/instrumentation.ts -------------------------------------------------------------------------------- /web/jest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/jest.config.ts -------------------------------------------------------------------------------- /web/jest.setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/jest.setup.ts -------------------------------------------------------------------------------- /web/lib/apollo-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/apollo-wrapper.tsx -------------------------------------------------------------------------------- /web/lib/calculate-color-from-string.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/calculate-color-from-string.ts -------------------------------------------------------------------------------- /web/lib/categories.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/categories.ts -------------------------------------------------------------------------------- /web/lib/compare-versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/compare-versions.ts -------------------------------------------------------------------------------- /web/lib/compare-versions.unit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/compare-versions.unit.spec.ts -------------------------------------------------------------------------------- /web/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/constants.ts -------------------------------------------------------------------------------- /web/lib/crypto.client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/crypto.client.ts -------------------------------------------------------------------------------- /web/lib/crypto.server.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/crypto.server.ts -------------------------------------------------------------------------------- /web/lib/frontend-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/frontend-api.ts -------------------------------------------------------------------------------- /web/lib/genarate-title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/genarate-title.ts -------------------------------------------------------------------------------- /web/lib/hashing.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/hashing.ts -------------------------------------------------------------------------------- /web/lib/ironclad-activity-api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/ironclad-activity-api.ts -------------------------------------------------------------------------------- /web/lib/languages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/languages.ts -------------------------------------------------------------------------------- /web/lib/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/logger.ts -------------------------------------------------------------------------------- /web/lib/opensearch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/opensearch.ts -------------------------------------------------------------------------------- /web/lib/parameter-store.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/parameter-store.ts -------------------------------------------------------------------------------- /web/lib/permissions/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/permissions/README.md -------------------------------------------------------------------------------- /web/lib/permissions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/permissions/index.ts -------------------------------------------------------------------------------- /web/lib/redis.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/redis.ts -------------------------------------------------------------------------------- /web/lib/schema/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/schema/index.ts -------------------------------------------------------------------------------- /web/lib/schema/schema.unit.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/schema/schema.unit.spec.ts -------------------------------------------------------------------------------- /web/lib/server-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/server-utils.ts -------------------------------------------------------------------------------- /web/lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/types.ts -------------------------------------------------------------------------------- /web/lib/urls.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/urls.ts -------------------------------------------------------------------------------- /web/lib/use-refetch-queries.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/use-refetch-queries.ts -------------------------------------------------------------------------------- /web/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/lib/utils.ts -------------------------------------------------------------------------------- /web/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/middleware.ts -------------------------------------------------------------------------------- /web/next-env.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/next-env.d.ts -------------------------------------------------------------------------------- /web/next.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/next.config.mjs -------------------------------------------------------------------------------- /web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/package.json -------------------------------------------------------------------------------- /web/playwright.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/playwright.config.ts -------------------------------------------------------------------------------- /web/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/pnpm-lock.yaml -------------------------------------------------------------------------------- /web/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/postcss.config.js -------------------------------------------------------------------------------- /web/public/avatars/alien.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/alien.png -------------------------------------------------------------------------------- /web/public/avatars/bear.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/bear.png -------------------------------------------------------------------------------- /web/public/avatars/cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/cow.png -------------------------------------------------------------------------------- /web/public/avatars/dinosaur.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/dinosaur.png -------------------------------------------------------------------------------- /web/public/avatars/dog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/dog.png -------------------------------------------------------------------------------- /web/public/avatars/dragon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/dragon.png -------------------------------------------------------------------------------- /web/public/avatars/exploding_owl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/exploding_owl.png -------------------------------------------------------------------------------- /web/public/avatars/exploding_unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/exploding_unicorn.png -------------------------------------------------------------------------------- /web/public/avatars/fox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/fox.png -------------------------------------------------------------------------------- /web/public/avatars/ghost.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/ghost.png -------------------------------------------------------------------------------- /web/public/avatars/giraffe.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/giraffe.png -------------------------------------------------------------------------------- /web/public/avatars/koala.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/koala.png -------------------------------------------------------------------------------- /web/public/avatars/lion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/lion.png -------------------------------------------------------------------------------- /web/public/avatars/love_skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/love_skull.png -------------------------------------------------------------------------------- /web/public/avatars/monkey.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/monkey.png -------------------------------------------------------------------------------- /web/public/avatars/mouse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/mouse.png -------------------------------------------------------------------------------- /web/public/avatars/mybskull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/mybskull.png -------------------------------------------------------------------------------- /web/public/avatars/octopus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/octopus.png -------------------------------------------------------------------------------- /web/public/avatars/owl.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/owl.png -------------------------------------------------------------------------------- /web/public/avatars/panda.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/panda.png -------------------------------------------------------------------------------- /web/public/avatars/pig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/pig.png -------------------------------------------------------------------------------- /web/public/avatars/rabbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/rabbit.png -------------------------------------------------------------------------------- /web/public/avatars/rooster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/rooster.png -------------------------------------------------------------------------------- /web/public/avatars/shark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/shark.png -------------------------------------------------------------------------------- /web/public/avatars/skull.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/skull.png -------------------------------------------------------------------------------- /web/public/avatars/sleeping_cow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/sleeping_cow.png -------------------------------------------------------------------------------- /web/public/avatars/tiger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/tiger.png -------------------------------------------------------------------------------- /web/public/avatars/unicorn.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/unicorn.png -------------------------------------------------------------------------------- /web/public/avatars/wolf.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/avatars/wolf.png -------------------------------------------------------------------------------- /web/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/favicon.ico -------------------------------------------------------------------------------- /web/public/icons/flags/AD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/AD.svg -------------------------------------------------------------------------------- /web/public/icons/flags/AE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/AE.svg -------------------------------------------------------------------------------- /web/public/icons/flags/AG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/AG.svg -------------------------------------------------------------------------------- /web/public/icons/flags/AI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/AI.svg -------------------------------------------------------------------------------- /web/public/icons/flags/AM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/AM.svg -------------------------------------------------------------------------------- /web/public/icons/flags/AO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/AO.svg -------------------------------------------------------------------------------- /web/public/icons/flags/AR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/AR.svg -------------------------------------------------------------------------------- /web/public/icons/flags/AT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/AT.svg -------------------------------------------------------------------------------- /web/public/icons/flags/AU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/AU.svg -------------------------------------------------------------------------------- /web/public/icons/flags/AW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/AW.svg -------------------------------------------------------------------------------- /web/public/icons/flags/AZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/AZ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/BB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/BB.svg -------------------------------------------------------------------------------- /web/public/icons/flags/BE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/BE.svg -------------------------------------------------------------------------------- /web/public/icons/flags/BF.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/BF.svg -------------------------------------------------------------------------------- /web/public/icons/flags/BG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/BG.svg -------------------------------------------------------------------------------- /web/public/icons/flags/BH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/BH.svg -------------------------------------------------------------------------------- /web/public/icons/flags/BJ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/BJ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/BM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/BM.svg -------------------------------------------------------------------------------- /web/public/icons/flags/BN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/BN.svg -------------------------------------------------------------------------------- /web/public/icons/flags/BR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/BR.svg -------------------------------------------------------------------------------- /web/public/icons/flags/BS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/BS.svg -------------------------------------------------------------------------------- /web/public/icons/flags/BT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/BT.svg -------------------------------------------------------------------------------- /web/public/icons/flags/BW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/BW.svg -------------------------------------------------------------------------------- /web/public/icons/flags/BZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/BZ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/CA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/CA.svg -------------------------------------------------------------------------------- /web/public/icons/flags/CH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/CH.svg -------------------------------------------------------------------------------- /web/public/icons/flags/CI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/CI.svg -------------------------------------------------------------------------------- /web/public/icons/flags/CL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/CL.svg -------------------------------------------------------------------------------- /web/public/icons/flags/CM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/CM.svg -------------------------------------------------------------------------------- /web/public/icons/flags/CN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/CN.svg -------------------------------------------------------------------------------- /web/public/icons/flags/CO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/CO.svg -------------------------------------------------------------------------------- /web/public/icons/flags/CR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/CR.svg -------------------------------------------------------------------------------- /web/public/icons/flags/CW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/CW.svg -------------------------------------------------------------------------------- /web/public/icons/flags/CY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/CY.svg -------------------------------------------------------------------------------- /web/public/icons/flags/CZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/CZ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/DE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/DE.svg -------------------------------------------------------------------------------- /web/public/icons/flags/DJ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/DJ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/DK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/DK.svg -------------------------------------------------------------------------------- /web/public/icons/flags/DM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/DM.svg -------------------------------------------------------------------------------- /web/public/icons/flags/DO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/DO.svg -------------------------------------------------------------------------------- /web/public/icons/flags/DZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/DZ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/EC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/EC.svg -------------------------------------------------------------------------------- /web/public/icons/flags/EE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/EE.svg -------------------------------------------------------------------------------- /web/public/icons/flags/ES.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/ES.svg -------------------------------------------------------------------------------- /web/public/icons/flags/FI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/FI.svg -------------------------------------------------------------------------------- /web/public/icons/flags/FJ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/FJ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/FM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/FM.svg -------------------------------------------------------------------------------- /web/public/icons/flags/FR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/FR.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GA.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GB.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GD.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GE.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GH.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GL.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GM.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GN.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GP.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GQ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GQ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GR.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GT.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GW.svg -------------------------------------------------------------------------------- /web/public/icons/flags/GY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/GY.svg -------------------------------------------------------------------------------- /web/public/icons/flags/HK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/HK.svg -------------------------------------------------------------------------------- /web/public/icons/flags/HN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/HN.svg -------------------------------------------------------------------------------- /web/public/icons/flags/HR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/HR.svg -------------------------------------------------------------------------------- /web/public/icons/flags/HT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/HT.svg -------------------------------------------------------------------------------- /web/public/icons/flags/HU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/HU.svg -------------------------------------------------------------------------------- /web/public/icons/flags/ID.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/ID.svg -------------------------------------------------------------------------------- /web/public/icons/flags/IE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/IE.svg -------------------------------------------------------------------------------- /web/public/icons/flags/IL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/IL.svg -------------------------------------------------------------------------------- /web/public/icons/flags/IN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/IN.svg -------------------------------------------------------------------------------- /web/public/icons/flags/IS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/IS.svg -------------------------------------------------------------------------------- /web/public/icons/flags/IT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/IT.svg -------------------------------------------------------------------------------- /web/public/icons/flags/JM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/JM.svg -------------------------------------------------------------------------------- /web/public/icons/flags/JO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/JO.svg -------------------------------------------------------------------------------- /web/public/icons/flags/JP.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/JP.svg -------------------------------------------------------------------------------- /web/public/icons/flags/KE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/KE.svg -------------------------------------------------------------------------------- /web/public/icons/flags/KG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/KG.svg -------------------------------------------------------------------------------- /web/public/icons/flags/KI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/KI.svg -------------------------------------------------------------------------------- /web/public/icons/flags/KM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/KM.svg -------------------------------------------------------------------------------- /web/public/icons/flags/KN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/KN.svg -------------------------------------------------------------------------------- /web/public/icons/flags/KR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/KR.svg -------------------------------------------------------------------------------- /web/public/icons/flags/KW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/KW.svg -------------------------------------------------------------------------------- /web/public/icons/flags/KY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/KY.svg -------------------------------------------------------------------------------- /web/public/icons/flags/KZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/KZ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/LA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/LA.svg -------------------------------------------------------------------------------- /web/public/icons/flags/LC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/LC.svg -------------------------------------------------------------------------------- /web/public/icons/flags/LI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/LI.svg -------------------------------------------------------------------------------- /web/public/icons/flags/LK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/LK.svg -------------------------------------------------------------------------------- /web/public/icons/flags/LR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/LR.svg -------------------------------------------------------------------------------- /web/public/icons/flags/LS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/LS.svg -------------------------------------------------------------------------------- /web/public/icons/flags/LT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/LT.svg -------------------------------------------------------------------------------- /web/public/icons/flags/LU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/LU.svg -------------------------------------------------------------------------------- /web/public/icons/flags/LV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/LV.svg -------------------------------------------------------------------------------- /web/public/icons/flags/MA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/MA.svg -------------------------------------------------------------------------------- /web/public/icons/flags/MC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/MC.svg -------------------------------------------------------------------------------- /web/public/icons/flags/MD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/MD.svg -------------------------------------------------------------------------------- /web/public/icons/flags/MG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/MG.svg -------------------------------------------------------------------------------- /web/public/icons/flags/MH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/MH.svg -------------------------------------------------------------------------------- /web/public/icons/flags/MN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/MN.svg -------------------------------------------------------------------------------- /web/public/icons/flags/MR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/MR.svg -------------------------------------------------------------------------------- /web/public/icons/flags/MT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/MT.svg -------------------------------------------------------------------------------- /web/public/icons/flags/MU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/MU.svg -------------------------------------------------------------------------------- /web/public/icons/flags/MX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/MX.svg -------------------------------------------------------------------------------- /web/public/icons/flags/MY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/MY.svg -------------------------------------------------------------------------------- /web/public/icons/flags/MZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/MZ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/NA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/NA.svg -------------------------------------------------------------------------------- /web/public/icons/flags/NE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/NE.svg -------------------------------------------------------------------------------- /web/public/icons/flags/NG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/NG.svg -------------------------------------------------------------------------------- /web/public/icons/flags/NI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/NI.svg -------------------------------------------------------------------------------- /web/public/icons/flags/NL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/NL.svg -------------------------------------------------------------------------------- /web/public/icons/flags/NO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/NO.svg -------------------------------------------------------------------------------- /web/public/icons/flags/NR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/NR.svg -------------------------------------------------------------------------------- /web/public/icons/flags/NZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/NZ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/OM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/OM.svg -------------------------------------------------------------------------------- /web/public/icons/flags/PA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/PA.svg -------------------------------------------------------------------------------- /web/public/icons/flags/PE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/PE.svg -------------------------------------------------------------------------------- /web/public/icons/flags/PG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/PG.svg -------------------------------------------------------------------------------- /web/public/icons/flags/PH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/PH.svg -------------------------------------------------------------------------------- /web/public/icons/flags/PK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/PK.svg -------------------------------------------------------------------------------- /web/public/icons/flags/PL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/PL.svg -------------------------------------------------------------------------------- /web/public/icons/flags/PR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/PR.svg -------------------------------------------------------------------------------- /web/public/icons/flags/PT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/PT.svg -------------------------------------------------------------------------------- /web/public/icons/flags/PW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/PW.svg -------------------------------------------------------------------------------- /web/public/icons/flags/PY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/PY.svg -------------------------------------------------------------------------------- /web/public/icons/flags/RO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/RO.svg -------------------------------------------------------------------------------- /web/public/icons/flags/RW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/RW.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SA.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SB.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SB.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SC.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SE.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SE.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SG.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SI.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SI.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SK.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SK.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SL.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SM.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SN.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SR.svg -------------------------------------------------------------------------------- /web/public/icons/flags/ST.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/ST.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SV.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SX.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SX.svg -------------------------------------------------------------------------------- /web/public/icons/flags/SZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/SZ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/TD.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/TD.svg -------------------------------------------------------------------------------- /web/public/icons/flags/TG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/TG.svg -------------------------------------------------------------------------------- /web/public/icons/flags/TH.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/TH.svg -------------------------------------------------------------------------------- /web/public/icons/flags/TJ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/TJ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/TL.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/TL.svg -------------------------------------------------------------------------------- /web/public/icons/flags/TM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/TM.svg -------------------------------------------------------------------------------- /web/public/icons/flags/TN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/TN.svg -------------------------------------------------------------------------------- /web/public/icons/flags/TO.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/TO.svg -------------------------------------------------------------------------------- /web/public/icons/flags/TR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/TR.svg -------------------------------------------------------------------------------- /web/public/icons/flags/TT.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/TT.svg -------------------------------------------------------------------------------- /web/public/icons/flags/TV.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/TV.svg -------------------------------------------------------------------------------- /web/public/icons/flags/TW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/TW.svg -------------------------------------------------------------------------------- /web/public/icons/flags/UA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/UA.svg -------------------------------------------------------------------------------- /web/public/icons/flags/UG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/UG.svg -------------------------------------------------------------------------------- /web/public/icons/flags/US.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/US.svg -------------------------------------------------------------------------------- /web/public/icons/flags/UY.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/UY.svg -------------------------------------------------------------------------------- /web/public/icons/flags/UZ.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/UZ.svg -------------------------------------------------------------------------------- /web/public/icons/flags/VC.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/VC.svg -------------------------------------------------------------------------------- /web/public/icons/flags/VG.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/VG.svg -------------------------------------------------------------------------------- /web/public/icons/flags/VN.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/VN.svg -------------------------------------------------------------------------------- /web/public/icons/flags/VU.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/VU.svg -------------------------------------------------------------------------------- /web/public/icons/flags/WS.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/WS.svg -------------------------------------------------------------------------------- /web/public/icons/flags/ZA.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/ZA.svg -------------------------------------------------------------------------------- /web/public/icons/flags/ZM.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/ZM.svg -------------------------------------------------------------------------------- /web/public/icons/flags/ZW.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/flags/ZW.svg -------------------------------------------------------------------------------- /web/public/icons/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/icons/logo.svg -------------------------------------------------------------------------------- /web/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/logo.png -------------------------------------------------------------------------------- /web/public/passport.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/passport.png -------------------------------------------------------------------------------- /web/public/robots.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/public/robots.txt -------------------------------------------------------------------------------- /web/scenes/Onboarding/CreateTeam/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Onboarding/CreateTeam/layout/index.tsx -------------------------------------------------------------------------------- /web/scenes/Onboarding/CreateTeam/page/Form/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Onboarding/CreateTeam/page/Form/index.tsx -------------------------------------------------------------------------------- /web/scenes/Onboarding/CreateTeam/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Onboarding/CreateTeam/page/index.tsx -------------------------------------------------------------------------------- /web/scenes/Onboarding/Join/page/Logo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Onboarding/Join/page/Logo/index.tsx -------------------------------------------------------------------------------- /web/scenes/Onboarding/Join/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Onboarding/Join/page/index.tsx -------------------------------------------------------------------------------- /web/scenes/Onboarding/JoinCallback/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Onboarding/JoinCallback/page/index.tsx -------------------------------------------------------------------------------- /web/scenes/Onboarding/Login/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Onboarding/Login/layout/index.tsx -------------------------------------------------------------------------------- /web/scenes/Onboarding/Login/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Onboarding/Login/page/index.tsx -------------------------------------------------------------------------------- /web/scenes/Onboarding/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Onboarding/layout/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Kiosk/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Kiosk/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Profile/DangerZone/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Profile/DangerZone/page/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Profile/Teams/page/List/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Profile/Teams/page/List/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Profile/Teams/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Profile/Teams/page/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Profile/common/UserInfo/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Profile/common/UserInfo/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Profile/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Profile/layout/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Profile/page/ColorSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Profile/page/ColorSelector/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Profile/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Profile/page/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Profile/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Profile/types.ts -------------------------------------------------------------------------------- /web/scenes/Portal/Teams/TeamId/Apps/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Teams/TeamId/Apps/page/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Teams/TeamId/Team/Apps/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Teams/TeamId/Team/Apps/page/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Teams/TeamId/Team/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Teams/TeamId/Team/layout/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Teams/TeamId/Team/page/Apps/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Teams/TeamId/Team/page/Apps/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Teams/TeamId/Team/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Teams/TeamId/Team/page/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/Teams/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/Teams/page/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/common/DeleteTeamDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/common/DeleteTeamDialog/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/layout/AppSelector/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/layout/AppSelector/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/layout/CreateAppDialog/form-schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/layout/CreateAppDialog/form-schema.ts -------------------------------------------------------------------------------- /web/scenes/Portal/layout/CreateAppDialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/layout/CreateAppDialog/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/layout/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/layout/Header/index.tsx -------------------------------------------------------------------------------- /web/scenes/Portal/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Portal/layout/index.tsx -------------------------------------------------------------------------------- /web/scenes/Root/layout/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Root/layout/index.tsx -------------------------------------------------------------------------------- /web/scenes/Root/page/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Root/page/index.tsx -------------------------------------------------------------------------------- /web/scenes/Root/providers/PostHogPageView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Root/providers/PostHogPageView.tsx -------------------------------------------------------------------------------- /web/scenes/Root/providers/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Root/providers/providers.tsx -------------------------------------------------------------------------------- /web/scenes/Unauthorized/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/Unauthorized/page.tsx -------------------------------------------------------------------------------- /web/scenes/common/me-query/client/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/scenes/common/me-query/client/index.tsx -------------------------------------------------------------------------------- /web/services/posthogClient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/services/posthogClient.ts -------------------------------------------------------------------------------- /web/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/styles/globals.css -------------------------------------------------------------------------------- /web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tailwind.config.ts -------------------------------------------------------------------------------- /web/tests/api/__mocks__/app-review-proof.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/__mocks__/app-review-proof.mock.ts -------------------------------------------------------------------------------- /web/tests/api/__mocks__/jwk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/__mocks__/jwk.ts -------------------------------------------------------------------------------- /web/tests/api/__mocks__/jwks.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/__mocks__/jwks.mock.ts -------------------------------------------------------------------------------- /web/tests/api/__mocks__/kms.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/__mocks__/kms.mock.ts -------------------------------------------------------------------------------- /web/tests/api/__mocks__/proof.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/__mocks__/proof.mock.ts -------------------------------------------------------------------------------- /web/tests/api/__mocks__/sequencer.mock.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/__mocks__/sequencer.mock.ts -------------------------------------------------------------------------------- /web/tests/api/debugger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/debugger.test.ts -------------------------------------------------------------------------------- /web/tests/api/delete-jwks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/delete-jwks.test.ts -------------------------------------------------------------------------------- /web/tests/api/gen-external-nullifier.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/gen-external-nullifier.test.ts -------------------------------------------------------------------------------- /web/tests/api/graphql.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/graphql.test.ts -------------------------------------------------------------------------------- /web/tests/api/hasura/create-app-report/index.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/hasura/create-app-report/index.test.ts -------------------------------------------------------------------------------- /web/tests/api/helpers/verify.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/helpers/verify.test.ts -------------------------------------------------------------------------------- /web/tests/api/utils.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/utils.test.ts -------------------------------------------------------------------------------- /web/tests/api/v1/oidc/authorize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v1/oidc/authorize.test.ts -------------------------------------------------------------------------------- /web/tests/api/v1/oidc/userinfo.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v1/oidc/userinfo.test.ts -------------------------------------------------------------------------------- /web/tests/api/v1/oidc/validate.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v1/oidc/validate.test.ts -------------------------------------------------------------------------------- /web/tests/api/v1/precheck.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v1/precheck.test.ts -------------------------------------------------------------------------------- /web/tests/api/v2/app/submit-app-review.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v2/app/submit-app-review.test.ts -------------------------------------------------------------------------------- /web/tests/api/v2/create-action.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v2/create-action.test.ts -------------------------------------------------------------------------------- /web/tests/api/v2/minikit-app-metadata.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v2/minikit-app-metadata.test.ts -------------------------------------------------------------------------------- /web/tests/api/v2/minikit-transaction-debug.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v2/minikit-transaction-debug.test.ts -------------------------------------------------------------------------------- /web/tests/api/v2/minikit-transaction.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v2/minikit-transaction.test.ts -------------------------------------------------------------------------------- /web/tests/api/v2/minikit-user-grant-cycle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v2/minikit-user-grant-cycle.test.ts -------------------------------------------------------------------------------- /web/tests/api/v2/public/apps/app.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v2/public/apps/app.test.ts -------------------------------------------------------------------------------- /web/tests/api/v2/public/apps/apps.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v2/public/apps/apps.test.ts -------------------------------------------------------------------------------- /web/tests/api/v2/send-notification.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v2/send-notification.test.ts -------------------------------------------------------------------------------- /web/tests/api/v2/verify.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/api/v2/verify.test.ts -------------------------------------------------------------------------------- /web/tests/e2e/global-setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/global-setup.ts -------------------------------------------------------------------------------- /web/tests/e2e/global-teardown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/global-teardown.ts -------------------------------------------------------------------------------- /web/tests/e2e/graphql/clean-up/clean-up.generated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/graphql/clean-up/clean-up.generated.ts -------------------------------------------------------------------------------- /web/tests/e2e/graphql/clean-up/clean-up.graphql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/graphql/clean-up/clean-up.graphql -------------------------------------------------------------------------------- /web/tests/e2e/graphql/clean-up/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/graphql/clean-up/index.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/constants.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/admin-graphql-client.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/hasura/admin-graphql-client.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/app/create-app.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/hasura/app/create-app.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/app/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/hasura/app/graphql/index.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/hasura/app/index.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/index.ts: -------------------------------------------------------------------------------- 1 | export * from "./admin-graphql-client"; 2 | -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/membership/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/hasura/membership/index.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/team/create-team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/hasura/team/create-team.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/team/delete-team.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/hasura/team/delete-team.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/team/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/hasura/team/graphql/index.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/team/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/hasura/team/index.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/user/create-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/hasura/user/create-user.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/user/delete-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/hasura/user/delete-user.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/user/graphql/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/hasura/user/graphql/index.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/hasura/user/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/hasura/user/index.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/index.ts -------------------------------------------------------------------------------- /web/tests/e2e/helpers/test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/helpers/test.ts -------------------------------------------------------------------------------- /web/tests/e2e/specs/action.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/specs/action.spec.ts -------------------------------------------------------------------------------- /web/tests/e2e/specs/app.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/e2e/specs/app.spec.ts -------------------------------------------------------------------------------- /web/tests/integration/action.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/action.test.ts -------------------------------------------------------------------------------- /web/tests/integration/api-key-security.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/api-key-security.test.ts -------------------------------------------------------------------------------- /web/tests/integration/api/v2/verify.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/api/v2/verify.test.ts -------------------------------------------------------------------------------- /web/tests/integration/app.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/app.test.ts -------------------------------------------------------------------------------- /web/tests/integration/auth/create-team.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/auth/create-team.test.ts -------------------------------------------------------------------------------- /web/tests/integration/auth/delete-account.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/auth/delete-account.test.ts -------------------------------------------------------------------------------- /web/tests/integration/auth/join-callback.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/auth/join-callback.test.ts -------------------------------------------------------------------------------- /web/tests/integration/auth/login-callback.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/auth/login-callback.test.ts -------------------------------------------------------------------------------- /web/tests/integration/db/default: -------------------------------------------------------------------------------- 1 | ../../../../hasura/seeds/default -------------------------------------------------------------------------------- /web/tests/integration/db/resetdb.sql: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/db/resetdb.sql -------------------------------------------------------------------------------- /web/tests/integration/graphql-proxy.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/graphql-proxy.test.ts -------------------------------------------------------------------------------- /web/tests/integration/jwks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/jwks.test.ts -------------------------------------------------------------------------------- /web/tests/integration/membership.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/membership.test.ts -------------------------------------------------------------------------------- /web/tests/integration/oidc/authorize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/oidc/authorize.test.ts -------------------------------------------------------------------------------- /web/tests/integration/oidc/token.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/oidc/token.test.ts -------------------------------------------------------------------------------- /web/tests/integration/redirect.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/redirect.test.ts -------------------------------------------------------------------------------- /web/tests/integration/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/setup.ts -------------------------------------------------------------------------------- /web/tests/integration/team.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/team.test.ts -------------------------------------------------------------------------------- /web/tests/integration/test-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/test-utils.ts -------------------------------------------------------------------------------- /web/tests/integration/user.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/integration/user.test.ts -------------------------------------------------------------------------------- /web/tests/unit/check-flow-type.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/unit/check-flow-type.test.ts -------------------------------------------------------------------------------- /web/tests/unit/parse-locale.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/unit/parse-locale.test.ts -------------------------------------------------------------------------------- /web/tests/unit/update-session.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/unit/update-session.test.ts -------------------------------------------------------------------------------- /web/tests/verifyHasuraIsUp.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tests/verifyHasuraIsUp.js -------------------------------------------------------------------------------- /web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/worldcoin/developer-portal/HEAD/web/tsconfig.json --------------------------------------------------------------------------------