@better-giving/donation 5.0.3 → 5.0.4
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/interfaces.d.mts +4 -0
- package/package.json +1 -1
- package/src/interfaces.mts +4 -0
package/dist/interfaces.d.mts
CHANGED
|
@@ -100,6 +100,8 @@ export interface IDonationOnHoldAttr {
|
|
|
100
100
|
/** may be empty */
|
|
101
101
|
inHonorOf?: string;
|
|
102
102
|
tributeNotif?: ITributeNotif;
|
|
103
|
+
/** @ignore - for migration purposes */
|
|
104
|
+
migration?: string;
|
|
103
105
|
}
|
|
104
106
|
export interface IDonationOnholdUpdate extends Partial<Omit<IDonationOnHoldAttr, "transactionId">> {
|
|
105
107
|
}
|
|
@@ -273,6 +275,8 @@ export interface IDonationFinalAttr {
|
|
|
273
275
|
taxReceiptId?: string;
|
|
274
276
|
/** e.g. crypto:tron, stripe:card */
|
|
275
277
|
via?: string;
|
|
278
|
+
/** @ignore - for migration purposes */
|
|
279
|
+
migration?: string;
|
|
276
280
|
}
|
|
277
281
|
export interface IDonationFinalUpdate extends Partial<Omit<IDonationFinalAttr, "transactionId">> {
|
|
278
282
|
}
|
package/package.json
CHANGED
package/src/interfaces.mts
CHANGED
|
@@ -120,6 +120,8 @@ export interface IDonationOnHoldAttr {
|
|
|
120
120
|
/** may be empty */
|
|
121
121
|
inHonorOf?: string;
|
|
122
122
|
tributeNotif?: ITributeNotif;
|
|
123
|
+
/** @ignore - for migration purposes */
|
|
124
|
+
migration?: string;
|
|
123
125
|
}
|
|
124
126
|
|
|
125
127
|
export interface IDonationOnholdUpdate
|
|
@@ -312,6 +314,8 @@ export interface IDonationFinalAttr {
|
|
|
312
314
|
taxReceiptId?: string;
|
|
313
315
|
/** e.g. crypto:tron, stripe:card */
|
|
314
316
|
via?: string;
|
|
317
|
+
/** @ignore - for migration purposes */
|
|
318
|
+
migration?: string;
|
|
315
319
|
}
|
|
316
320
|
|
|
317
321
|
export interface IDonationFinalUpdate
|