sinfactura-types 1.8.1 → 1.8.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.
- package/dist/invoice.d.ts +7 -0
- package/dist/store.d.ts +8 -0
- package/package.json +1 -1
package/dist/invoice.d.ts
CHANGED
|
@@ -363,6 +363,13 @@ declare global {
|
|
|
363
363
|
effectiveFrom: string;
|
|
364
364
|
acceptanceWindowDays: number;
|
|
365
365
|
acceptanceWindowValidThrough?: string;
|
|
366
|
+
/**
|
|
367
|
+
* api#1754 — epoch-ms last-write trace, set by the api on every threshold
|
|
368
|
+
* write and echoed on GET /config + the POST response (api PLATFORM_API.md
|
|
369
|
+
* section 20). OPTIONAL by design: a row written before the field carries
|
|
370
|
+
* none, so a reader must not treat its absence as "never updated".
|
|
371
|
+
*/
|
|
372
|
+
updatedAt?: number;
|
|
366
373
|
}
|
|
367
374
|
}
|
|
368
375
|
export {};
|
package/dist/store.d.ts
CHANGED
|
@@ -109,6 +109,14 @@ declare global {
|
|
|
109
109
|
* default — does NOT reinterpret existing Account rows.
|
|
110
110
|
*/
|
|
111
111
|
defaultAccountCurrency?: string;
|
|
112
|
+
/**
|
|
113
|
+
* api#1768 / ADR-0004 section 5 — tenant opt-out from AI product
|
|
114
|
+
* enrichment. Absent is the (common) "tenant never touched the toggle"
|
|
115
|
+
* default and does NOT block; only an explicit `true` blocks. The api
|
|
116
|
+
* gate is fail-CLOSED on a read failure, but open on a missing field —
|
|
117
|
+
* do not conflate the two.
|
|
118
|
+
*/
|
|
119
|
+
aiOptOut?: boolean;
|
|
112
120
|
/**
|
|
113
121
|
* api#1740 — per-category × per-channel notification/feedback defaults.
|
|
114
122
|
* Store-level baseline the app layers per-device overrides on top of
|