@reactionary/fake 0.6.6 → 0.6.7

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.
@@ -167,7 +167,11 @@ class FakeCheckoutCapability extends CheckoutCapability {
167
167
  })
168
168
  }
169
169
  },
170
- readyForFinalization: false
170
+ readyForFinalization: false,
171
+ pointOfContact: {
172
+ email: this.generator.internet.email(),
173
+ phone: this.generator.phone.number()
174
+ }
171
175
  };
172
176
  return checkout;
173
177
  }
package/package.json CHANGED
@@ -1,13 +1,13 @@
1
1
  {
2
2
  "name": "@reactionary/fake",
3
- "version": "0.6.6",
3
+ "version": "0.6.7",
4
4
  "type": "module",
5
5
  "main": "./index.js",
6
6
  "types": "./src/index.d.ts",
7
7
  "dependencies": {
8
8
  "vitest": "^4.0.9",
9
9
  "@nx/vite": "22.4.5",
10
- "@reactionary/core": "0.6.6",
10
+ "@reactionary/core": "0.6.7",
11
11
  "zod": "4.1.9",
12
12
  "@faker-js/faker": "^9.8.0"
13
13
  },
@@ -52,5 +52,9 @@ export declare class FakeCheckoutCapability<TFactory extends CheckoutFactory = F
52
52
  };
53
53
  };
54
54
  readyForFinalization: false;
55
+ pointOfContact: {
56
+ email: string;
57
+ phone: string;
58
+ };
55
59
  };
56
60
  }