payjp 2.2.2 → 2.2.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.
Files changed (2) hide show
  1. package/built/index.d.ts +3 -1
  2. package/package.json +1 -1
package/built/index.d.ts CHANGED
@@ -266,6 +266,8 @@ declare namespace Payjp {
266
266
  metadata: OptionsMetadata | null;
267
267
  name: string | null;
268
268
  three_d_secure_status: string | null;
269
+ email: string | null;
270
+ phone: string | null;
269
271
  }
270
272
  export interface Plan {
271
273
  object: "plan";
@@ -441,7 +443,7 @@ declare namespace Payjp {
441
443
  object: "term";
442
444
  id: string;
443
445
  livemode: boolean;
444
- start_at: number | null;
446
+ start_at: number;
445
447
  end_at: number | null;
446
448
  closed: boolean;
447
449
  charge_count: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "payjp",
3
- "version": "2.2.2",
3
+ "version": "2.2.4",
4
4
  "description": "PAY.JP node.js bindings",
5
5
  "main": "built/index.js",
6
6
  "types": "built/index.d.ts",