@pax2pay/client 0.0.68 → 0.0.69

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.
@@ -0,0 +1,10 @@
1
+ import * as isoly from "isoly";
2
+ export interface CardDeliveryResponse {
3
+ type: "EMAIL";
4
+ to: string | [string, string];
5
+ deliveredMessage: string;
6
+ linkExpiry: isoly.Date;
7
+ sent: string;
8
+ status: "SUCCESS" | "FAILURE" | "TODO";
9
+ statusText?: string;
10
+ }
@@ -0,0 +1,2 @@
1
+ export {};
2
+ //# sourceMappingURL=CardDeliveryResponse.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"CardDeliveryResponse.js","sourceRoot":"../","sources":["model/CardDeliveryResponse.ts"],"names":[],"mappings":""}
@@ -1,5 +1,6 @@
1
1
  import { AccountResponse } from "./AccountResponse";
2
2
  import { BookingInfo } from "./BookingInfo";
3
+ import { CardDeliveryResponse } from "./CardDeliveryResponse";
3
4
  import { CardScheduleResponseItem } from "./CardScheduleResponseItem";
4
5
  import { CardTypeSpecification } from "./CardTypeSpecification";
5
6
  import { CardUsage } from "./CardUsage";
@@ -28,4 +29,5 @@ export interface CardResponse {
28
29
  createdBy?: string;
29
30
  bookingInfo?: BookingInfo;
30
31
  schedule?: CardScheduleResponseItem[];
32
+ delivery?: CardDeliveryResponse;
31
33
  }
@@ -0,0 +1,12 @@
1
+ import * as isoly from "isoly"
2
+
3
+ export interface CardDeliveryResponse {
4
+ type: "EMAIL"
5
+ to: string | [string, string]
6
+ deliveredMessage: string
7
+ linkExpiry: isoly.Date
8
+ sent: string
9
+ status: "SUCCESS" | "FAILURE" | "TODO"
10
+ statusText?: string
11
+ }
12
+
@@ -1,5 +1,6 @@
1
1
  import { AccountResponse } from "./AccountResponse"
2
2
  import { BookingInfo } from "./BookingInfo"
3
+ import { CardDeliveryResponse } from "./CardDeliveryResponse"
3
4
  import { CardScheduleResponseItem } from "./CardScheduleResponseItem"
4
5
  import { CardTypeSpecification } from "./CardTypeSpecification"
5
6
  import { CardUsage } from "./CardUsage"
@@ -39,4 +40,5 @@ export interface CardResponse {
39
40
  createdBy?: string
40
41
  bookingInfo?: BookingInfo
41
42
  schedule?: CardScheduleResponseItem[]
43
+ delivery?: CardDeliveryResponse
42
44
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pax2pay/client",
3
- "version": "0.0.68",
3
+ "version": "0.0.69",
4
4
  "description": "Client library for the Pax2Pay API",
5
5
  "author": "Pax2Pay Ltd.",
6
6
  "license": "MIT",