tickera-angular-components 0.0.1-dev.72 → 0.0.1-dev.73
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/index.d.ts +11 -11
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -1012,17 +1012,6 @@ interface GiftBondsResponse {
|
|
|
1012
1012
|
message: string;
|
|
1013
1013
|
}
|
|
1014
1014
|
|
|
1015
|
-
interface ValidateGiftBondResponse {
|
|
1016
|
-
data: {
|
|
1017
|
-
valid: boolean;
|
|
1018
|
-
message: string;
|
|
1019
|
-
code: string;
|
|
1020
|
-
bond?: GiftBond;
|
|
1021
|
-
};
|
|
1022
|
-
statusCode: number;
|
|
1023
|
-
message: string;
|
|
1024
|
-
}
|
|
1025
|
-
|
|
1026
1015
|
interface GiftBondPurchase extends Auditable {
|
|
1027
1016
|
id: number;
|
|
1028
1017
|
code: string;
|
|
@@ -1039,6 +1028,17 @@ interface GiftBondPurchase extends Auditable {
|
|
|
1039
1028
|
buyer_id: number;
|
|
1040
1029
|
}
|
|
1041
1030
|
|
|
1031
|
+
interface ValidateGiftBondResponse {
|
|
1032
|
+
data: {
|
|
1033
|
+
valid: boolean;
|
|
1034
|
+
message: string;
|
|
1035
|
+
code: string;
|
|
1036
|
+
bond?: GiftBondPurchase;
|
|
1037
|
+
};
|
|
1038
|
+
statusCode: number;
|
|
1039
|
+
message: string;
|
|
1040
|
+
}
|
|
1041
|
+
|
|
1042
1042
|
interface GiftBondPurchaseResponse {
|
|
1043
1043
|
statusCode: number;
|
|
1044
1044
|
data: GiftBondPurchase;
|