@stacksjs/defaults 0.72.1 → 0.72.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -276,7 +276,7 @@ The `drivers/` directory contains placeholder files for: `gupshup`, `nexmo` (ali
276
276
  enabled: false, // Must explicitly enable
277
277
  provider: 'twilio', // 'twilio' | 'vonage'
278
278
  from: env.SMS_FROM_NUMBER || '',
279
- defaultCountryCode: 'US',
279
+ defaultCountryCode: '1',
280
280
  messageType: 'TRANSACTIONAL', // TRANSACTIONAL or PROMOTIONAL
281
281
 
282
282
  drivers: {
@@ -376,7 +376,7 @@ interface VerificationResult {
376
376
  - Config is loaded lazily via dynamic import on first `send()`/operation -- `init()` pre-loads it
377
377
  - Only Twilio and Vonage drivers are fully implemented; other drivers (gupshup, plivo, sns, telnyx, etc.) are commented-out placeholders
378
378
  - `pinpoint` appears in config but has no driver implementation in `getDriver()` -- using it throws `'Unsupported SMS provider: pinpoint'`
379
- - The `defaultCountryCode` in config is `'US'` but `formatE164()` uses it as a numeric code prefix (the fallback is `'1'`), so the actual behavior uses the number `'1'` for US
379
+ - `defaultCountryCode` is a numeric dialing prefix such as `'1'` for the US or `'44'` for the UK
380
380
  - Template variables use single-brace syntax `{variableName}`, NOT double-brace
381
381
  - `sendBulk()` sends all messages in parallel via `Promise.all` -- no rate limiting
382
382
  - Twilio verification requires a `verifyServiceSid` passed to the driver constructor, which is not part of the standard config structure
@@ -2,7 +2,7 @@
2
2
  "publisher": "Stacks",
3
3
  "name": "vscode-stacks",
4
4
  "displayName": "Stacks",
5
- "version": "0.72.1",
5
+ "version": "0.72.2",
6
6
  "description": "A modern Stacks development environment.",
7
7
  "license": "MIT",
8
8
  "funding": "https://github.com/sponsors/chrisbbreuer",
package/package.json CHANGED
@@ -2,7 +2,7 @@
2
2
  "name": "@stacksjs/defaults",
3
3
  "type": "module",
4
4
  "sideEffects": false,
5
- "version": "0.72.1",
5
+ "version": "0.72.2",
6
6
  "description": "The complete managed Stacks application scaffold, including runtime defaults, AI guidance, editor metadata, and npm-backed project support files.",
7
7
  "author": "Chris Breuer",
8
8
  "license": "MIT",
@@ -46,7 +46,7 @@
46
46
  "dependencies": {
47
47
  "@iconify-json/f7": "^1.2.2",
48
48
  "@iconify-json/hugeicons": "^1.2.27",
49
- "@stacksjs/mobile": "^0.72.1",
49
+ "@stacksjs/mobile": "^0.72.2",
50
50
  "@stacksjs/sanitizer": "^0.2.113"
51
51
  },
52
52
  "scripts": {