@pax2pay/model-banking 0.1.302 → 0.1.303

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.
@@ -3,7 +3,12 @@ import { isly } from "isly"
3
3
  export interface PaxgiroCredit {
4
4
  type: "paxgiro-credit"
5
5
  reference: string
6
+ justInTime?: boolean
6
7
  }
7
8
  export namespace PaxgiroCredit {
8
- export const type = isly.object<PaxgiroCredit>({ type: isly.string("paxgiro-credit"), reference: isly.string() })
9
+ export const type = isly.object<PaxgiroCredit>({
10
+ type: isly.string("paxgiro-credit"),
11
+ reference: isly.string(),
12
+ justInTime: isly.boolean().optional(),
13
+ })
9
14
  }
@@ -2,6 +2,7 @@ import { isly } from "isly";
2
2
  export interface PaxgiroCredit {
3
3
  type: "paxgiro-credit";
4
4
  reference: string;
5
+ justInTime?: boolean;
5
6
  }
6
7
  export declare namespace PaxgiroCredit {
7
8
  const type: isly.object.ExtendableType<PaxgiroCredit>;
@@ -1,6 +1,10 @@
1
1
  import { isly } from "isly";
2
2
  export var PaxgiroCredit;
3
3
  (function (PaxgiroCredit) {
4
- PaxgiroCredit.type = isly.object({ type: isly.string("paxgiro-credit"), reference: isly.string() });
4
+ PaxgiroCredit.type = isly.object({
5
+ type: isly.string("paxgiro-credit"),
6
+ reference: isly.string(),
7
+ justInTime: isly.boolean().optional(),
8
+ });
5
9
  })(PaxgiroCredit || (PaxgiroCredit = {}));
6
10
  //# sourceMappingURL=PaxgiroCredit.js.map
@@ -1 +1 @@
1
- {"version":3,"file":"PaxgiroCredit.js","sourceRoot":"../","sources":["Rail/Address/PaxgiroCredit.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAM3B,MAAM,KAAW,aAAa,CAE7B;AAFD,WAAiB,aAAa;IAChB,kBAAI,GAAG,IAAI,CAAC,MAAM,CAAgB,EAAE,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC,EAAE,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE,EAAE,CAAC,CAAA;AAClH,CAAC,EAFgB,aAAa,KAAb,aAAa,QAE7B"}
1
+ {"version":3,"file":"PaxgiroCredit.js","sourceRoot":"../","sources":["Rail/Address/PaxgiroCredit.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,IAAI,EAAE,MAAM,MAAM,CAAA;AAO3B,MAAM,KAAW,aAAa,CAM7B;AAND,WAAiB,aAAa;IAChB,kBAAI,GAAG,IAAI,CAAC,MAAM,CAAgB;QAC9C,IAAI,EAAE,IAAI,CAAC,MAAM,CAAC,gBAAgB,CAAC;QACnC,SAAS,EAAE,IAAI,CAAC,MAAM,EAAE;QACxB,UAAU,EAAE,IAAI,CAAC,OAAO,EAAE,CAAC,QAAQ,EAAE;KACrC,CAAC,CAAA;AACH,CAAC,EANgB,aAAa,KAAb,aAAa,QAM7B"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pax2pay/model-banking",
3
- "version": "0.1.302",
3
+ "version": "0.1.303",
4
4
  "description": "Library containing data model types and functions for the Pax2Pay Banking API.",
5
5
  "author": "Pax2Pay Ltd",
6
6
  "license": "MIT",