add APNs, SMS, and Apple Maps env vars to oneround egg

This commit is contained in:
2026-06-02 20:24:36 -04:00
parent 4050ad411b
commit b916a3eaa4

View File

@@ -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.",