From b916a3eaa4011b9c3cd0cdfe06b3e3f9a2cd4c7e Mon Sep 17 00:00:00 2001 From: Sticks Date: Tue, 2 Jun 2026 20:24:36 -0400 Subject: [PATCH] add APNs, SMS, and Apple Maps env vars to oneround egg --- egg-oneround-api.json | 70 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 70 insertions(+) diff --git a/egg-oneround-api.json b/egg-oneround-api.json index e3ea7cd..4f3f26e 100644 --- a/egg-oneround-api.json +++ b/egg-oneround-api.json @@ -328,6 +328,76 @@ "rules": "required|string", "field_type": "text" }, + { + "name": "APNs Team ID", + "description": "Apple Developer Team ID for push notifications. Leave empty to disable push.", + "env_variable": "APNS_TEAM_ID", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string", + "field_type": "text" + }, + { + "name": "APNs Key ID", + "description": "Key ID for the APNs auth key (.p8 file)", + "env_variable": "APNS_KEY_ID", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string", + "field_type": "text" + }, + { + "name": "APNs Key Path", + "description": "Path to the APNs .p8 auth key file inside the container", + "env_variable": "APNS_KEY_PATH", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string", + "field_type": "text" + }, + { + "name": "SMS API Key", + "description": "API key for the SMS service (used for phone verification). Leave empty to disable.", + "env_variable": "SMS_API_KEY", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string", + "field_type": "text" + }, + { + "name": "Apple Maps Team ID", + "description": "Apple Developer Team ID for Apple Maps (used for phone number enrichment on bookings)", + "env_variable": "APPLE_MAPS_TEAM_ID", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string", + "field_type": "text" + }, + { + "name": "Apple Maps Key ID", + "description": "Key ID for Apple Maps Server token", + "env_variable": "APPLE_MAPS_KEY_ID", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string", + "field_type": "text" + }, + { + "name": "Apple Maps Key Path", + "description": "Path to the Apple Maps .p8 auth key file inside the container", + "env_variable": "APPLE_MAPS_KEY_PATH", + "default_value": "", + "user_viewable": true, + "user_editable": true, + "rules": "nullable|string", + "field_type": "text" + }, { "name": "Add Region", "description": "Named region to ingest on startup (e.g. michigan, florida, california). Leave empty to skip.",