toga-ai 1.0.253 → 1.0.255
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.
|
@@ -68,6 +68,17 @@ Live titles: `"1 Year Unlimited Tech Support - Annual/Monthly"` and
|
|
|
68
68
|
**Kept in sync with the dbchanges2 rows** (tech `2c4f8a1e-…`, warranty `5d9e3f72-…`).
|
|
69
69
|
- `CLIENT_IDENTIFIER_RATE = 'Rate'`, `PORTAL_URL_TECH` / `PORTAL_URL_WARRANTY`,
|
|
70
70
|
`SUPPORT_PHONE = '1-206-260-6187'`.
|
|
71
|
+
- `WARRANTY_TERMS_URL = 'https://hometechsupport.rate.togaview.com/terms/home-warranty'` —
|
|
72
|
+
AIG Terms & Conditions, set **provisionally** (the PM expects this to change before/after
|
|
73
|
+
go-live; the in-code comment flags it).
|
|
74
|
+
|
|
75
|
+
### Next Charge date (computed, not stored)
|
|
76
|
+
|
|
77
|
+
`{nextChargeDate}` is **computed**, not read from a static field. Private helper
|
|
78
|
+
`_Model_Rate_Entitlement::nextChargeDate($payload, $isYearly)` returns **one billing period
|
|
79
|
+
after the coverage start date** — base date is `dateCoverageStart`, falling back to
|
|
80
|
+
`datePurchase`, then `now`: **+1 year** for an annual plan, **+1 month** for monthly. This
|
|
81
|
+
matches how `_Worker_Rate` extends Rate subscriptions.
|
|
71
82
|
|
|
72
83
|
## Templates (dbchanges2)
|
|
73
84
|
|
|
@@ -117,15 +128,25 @@ Email web-font reality: Gmail/Outlook strip web fonts and fall back; Apple Mail/
|
|
|
117
128
|
[`notification-email-template.md`](../../../2.0/apps/worker2/features/notification-email-template.md):
|
|
118
129
|
worker actions do not auto-register `DB_CLIENT`.
|
|
119
130
|
|
|
120
|
-
## Go-live
|
|
131
|
+
## Go-live values (TRUE-79251 — resolved)
|
|
132
|
+
|
|
133
|
+
The pre-go-live TODOs are now resolved to final values:
|
|
121
134
|
|
|
122
|
-
|
|
135
|
+
- **Support phone** — `1-206-260-6187` (`SUPPORT_PHONE` in `_Model_Rate_Entitlement`).
|
|
136
|
+
- **From address / name** — `ratetechsupport@togatech.com` / "Rate"
|
|
137
|
+
(`sendFromEmailAddress` / `sendFromName` on the dbchanges2 `Client_Rate.EmailTemplates` rows).
|
|
138
|
+
- **Next Charge date** — now **computed** via `_Model_Rate_Entitlement::nextChargeDate()` (see
|
|
139
|
+
*Next Charge date* above), no longer a static field.
|
|
140
|
+
- **AIG Terms & Conditions URL** — `WARRANTY_TERMS_URL` set **provisionally** to
|
|
141
|
+
`https://hometechsupport.rate.togaview.com/terms/home-warranty`. **Provisional** — the PM
|
|
142
|
+
expects it to change before/after go-live.
|
|
123
143
|
|
|
124
|
-
|
|
125
|
-
- From-address / name — currently `donotreply@togatech.com` / "Rate".
|
|
126
|
-
- Confirm the **Next Charge** source field — currently `dateCoverageEnd`.
|
|
144
|
+
Remaining items are **optional / separate, not go-live blockers**:
|
|
127
145
|
|
|
128
|
-
|
|
146
|
+
- The `_Email.php` UTF-8 `CharSet` framework fix (root-cause of the ASCII-only-subjects
|
|
147
|
+
workaround above — see
|
|
148
|
+
[`email-template-sending.md`](../../../2.0/apps/_underscore/features/email-template-sending.md)).
|
|
149
|
+
- An Axiforma web font for the footer "POWERED BY" label (currently rendered as the logo image).
|
|
129
150
|
|
|
130
151
|
## Change history
|
|
131
152
|
|
|
@@ -135,3 +156,10 @@ Not yet durable knowledge — open items before go-live:
|
|
|
135
156
|
`_Worker_Notification_EmailTemplate::Send`, brand assets on `toga-public/rate/Email/`.
|
|
136
157
|
Fires on purchase independent of the AIG-contract outcome. Tested locally with a real send
|
|
137
158
|
to the dev team. (mhammontree)
|
|
159
|
+
- 2026-06-30 — Resolved the go-live values (TRUE-79251): support phone `1-206-260-6187`, from
|
|
160
|
+
`ratetechsupport@togatech.com` / "Rate", Next Charge now **computed** via new
|
|
161
|
+
`nextChargeDate()` helper (+1yr annual / +1mo monthly off coverage start), and provisional
|
|
162
|
+
`WARRANTY_TERMS_URL`. `_Email.php` UTF-8 fix and Axiforma footer font left as optional. (mhammontree)
|
|
163
|
+
- 2026-06-30 — Updated the provisional `WARRANTY_TERMS_URL` (TRUE-79251): the AIG warranty
|
|
164
|
+
Terms & Conditions URL changed to `https://hometechsupport.rate.togaview.com/terms/home-warranty`
|
|
165
|
+
(was `…/termsandconditions`). Still provisional. (mhammontree)
|
package/package.json
CHANGED