@autobusal/providers 1.8.0 → 1.9.0
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/package.json +1 -1
- package/types/settings.ts +8 -0
package/package.json
CHANGED
package/types/settings.ts
CHANGED
|
@@ -174,6 +174,10 @@ export interface LabelSettings {
|
|
|
174
174
|
telegram?: {
|
|
175
175
|
status: 'disabled' | 'dedicated' | 'main'
|
|
176
176
|
price: number
|
|
177
|
+
// Edited: Ferjolt Ozuni - Date: 2026-07-31
|
|
178
|
+
// whether this label gives the addon fee back on cancellation;
|
|
179
|
+
// snapshotted onto each purchase, so it only affects future orders
|
|
180
|
+
refundable?: boolean
|
|
177
181
|
bot_token?: string
|
|
178
182
|
bot_username?: string
|
|
179
183
|
}
|
|
@@ -185,6 +189,10 @@ export interface LabelSettings {
|
|
|
185
189
|
whatsapp?: {
|
|
186
190
|
status: 'disabled' | 'dedicated' | 'main'
|
|
187
191
|
price: number
|
|
192
|
+
// Edited: Ferjolt Ozuni - Date: 2026-07-31
|
|
193
|
+
// whether this label gives the addon fee back on cancellation;
|
|
194
|
+
// snapshotted onto each purchase, so it only affects future orders
|
|
195
|
+
refundable?: boolean
|
|
188
196
|
phone_number_id?: string
|
|
189
197
|
access_token?: string
|
|
190
198
|
template_name?: string
|