sinfactura-types 1.6.28 → 1.6.29

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.
Files changed (2) hide show
  1. package/dist/store.d.ts +5 -0
  2. package/package.json +1 -1
package/dist/store.d.ts CHANGED
@@ -184,6 +184,11 @@ declare global {
184
184
  afip?: Afip;
185
185
  mercadopago?: Mercadopago;
186
186
  whatsapp?: WhatsAppConfig;
187
+ sms?: SmsIntegration;
188
+ }
189
+ interface SmsIntegration {
190
+ /** When true, the store may send SMS through the shared platform account. */
191
+ enabled?: boolean;
187
192
  }
188
193
  type FxAutoUpdateStrategy = "overwrite" | "overwrite-if-stale" | "notify-only";
189
194
  interface FxAutoUpdateBinding {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sinfactura-types",
3
- "version": "1.6.28",
3
+ "version": "1.6.29",
4
4
  "main": "dist/index.js",
5
5
  "type": "module",
6
6
  "types": "./dist/index.d.ts",