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.
- package/dist/store.d.ts +5 -0
- 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 {
|