@carrot-foundation/schemas 0.1.35 → 0.1.37

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 (41) hide show
  1. package/README.md +1 -1
  2. package/dist/index.cjs +1131 -43
  3. package/dist/index.cjs.map +1 -1
  4. package/dist/index.d.cts +963 -17
  5. package/dist/index.d.ts +963 -17
  6. package/dist/index.js +1107 -42
  7. package/dist/index.js.map +1 -1
  8. package/package.json +1 -1
  9. package/schemas/ipfs/collection/collection.example.json +1 -0
  10. package/schemas/ipfs/collection/collection.schema.json +305 -32
  11. package/schemas/ipfs/credit/credit.example.json +1 -0
  12. package/schemas/ipfs/credit/credit.schema.json +326 -45
  13. package/schemas/ipfs/credit-purchase-receipt/credit-purchase-receipt.example.json +290 -0
  14. package/schemas/ipfs/credit-purchase-receipt/credit-purchase-receipt.schema.json +1768 -0
  15. package/schemas/ipfs/gas-id/gas-id.schema.json +6 -6
  16. package/schemas/ipfs/mass-id/mass-id.schema.json +6 -6
  17. package/schemas/ipfs/mass-id-audit/mass-id-audit.example.json +30 -29
  18. package/schemas/ipfs/mass-id-audit/mass-id-audit.schema.json +636 -15
  19. package/schemas/ipfs/methodology/methodology.example.json +27 -26
  20. package/schemas/ipfs/methodology/methodology.schema.json +457 -15
  21. package/schemas/ipfs/recycled-id/recycled-id.schema.json +6 -6
  22. package/schemas/ipfs/gas-id/gas-id.attributes.schema.json +0 -219
  23. package/schemas/ipfs/gas-id/gas-id.data.schema.json +0 -120
  24. package/schemas/ipfs/mass-id-audit/mass-id-audit.data.schema.json +0 -130
  25. package/schemas/ipfs/methodology/methodology.data.schema.json +0 -121
  26. package/schemas/ipfs/purchase-id/purchase-id.attributes.schema.json +0 -91
  27. package/schemas/ipfs/purchase-id/purchase-id.data.schema.json +0 -337
  28. package/schemas/ipfs/purchase-id/purchase-id.example.json +0 -224
  29. package/schemas/ipfs/purchase-id/purchase-id.schema.json +0 -29
  30. package/schemas/ipfs/recycled-id/recycled-id.attributes.schema.json +0 -202
  31. package/schemas/ipfs/recycled-id/recycled-id.data.schema.json +0 -63
  32. package/schemas/ipfs/shared/base/base.schema.json +0 -163
  33. package/schemas/ipfs/shared/certificate/certificate.schema.json +0 -145
  34. package/schemas/ipfs/shared/definitions/definitions.schema.json +0 -255
  35. package/schemas/ipfs/shared/entities/location/location.schema.json +0 -90
  36. package/schemas/ipfs/shared/entities/participant/participant.schema.json +0 -28
  37. package/schemas/ipfs/shared/nft/nft.schema.json +0 -182
  38. package/schemas/ipfs/shared/references/audit-reference/audit-reference.schema.json +0 -42
  39. package/schemas/ipfs/shared/references/gas-id-reference/gas-id-reference.schema.json +0 -27
  40. package/schemas/ipfs/shared/references/mass-id-reference/mass-id-reference.schema.json +0 -27
  41. package/schemas/ipfs/shared/references/methodology-reference/methodology-reference.schema.json +0 -34
package/README.md CHANGED
@@ -113,7 +113,7 @@ The package includes full TypeScript definitions:
113
113
  import { MassIDIpfs, MassIDData } from '@carrot-foundation/schemas';
114
114
 
115
115
  // Types are automatically inferred from the schemas
116
- const massIdData: MassIDData = {
116
+ const massIDData: MassIDData = {
117
117
  // ...
118
118
  };
119
119
  ```