@fragus/sam-types 1.0.20 → 1.0.22

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 CHANGED
@@ -1,5 +1,5 @@
1
1
  {
2
- "version": "1.0.20",
2
+ "version": "1.0.22",
3
3
  "name": "@fragus/sam-types",
4
4
  "description": "Typescript interfaces for all types used to communicate between SAM client(s) and the SAM API",
5
5
  "author": "Fragus",
@@ -29,6 +29,7 @@ export interface IContractDetailsRecord {
29
29
  monthlyTemplatePrice: PriceSpecification
30
30
  monthlyPrice: PriceSpecification
31
31
  paymentMethod: PaymentGateway
32
+ cardWallet: string | null // wallet name, e.g. 'apple_pay', 'google_pay', 'link', used for card payment
32
33
  prettyIdentifierShort: string
33
34
  prettyIdentifier: string
34
35
  providerPayments: number
@@ -27,7 +27,6 @@ export interface PaymentPlan {
27
27
  */
28
28
  export interface IPreparePaymentRequest {
29
29
  prettyIdentifier: string
30
- cancel_url: string
31
30
  success_url: string
32
31
  }
33
32