cyc-type-def 3.0.1 → 3.0.2

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/dist/index.d.cts CHANGED
@@ -349,7 +349,13 @@ interface Claim extends Base {
349
349
  /**
350
350
  * Sheep ID of the person who made the claim.
351
351
  */
352
- payable: string;
352
+ payableSheepId: string;
353
+ /**
354
+ * Name of the person who made the claim.
355
+ *
356
+ * Denormalization of payableSheepId for easier reference.
357
+ */
358
+ payableName: string;
353
359
  /**
354
360
  * payable bank account
355
361
  */
package/dist/index.d.ts CHANGED
@@ -349,7 +349,13 @@ interface Claim extends Base {
349
349
  /**
350
350
  * Sheep ID of the person who made the claim.
351
351
  */
352
- payable: string;
352
+ payableSheepId: string;
353
+ /**
354
+ * Name of the person who made the claim.
355
+ *
356
+ * Denormalization of payableSheepId for easier reference.
357
+ */
358
+ payableName: string;
353
359
  /**
354
360
  * payable bank account
355
361
  */
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "cyc-type-def",
3
- "version": "3.0.1",
3
+ "version": "3.0.2",
4
4
  "main": "dist/index.js",
5
5
  "types": "dist/index.d.ts",
6
6
  "type": "module",