@everipedia/iq-utils 1.0.1 → 2.0.1

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 (44) hide show
  1. package/CHANGELOG.md +13 -1
  2. package/dist/index.d.mts +693 -0
  3. package/dist/index.d.ts +693 -0
  4. package/dist/index.js +640 -0
  5. package/dist/index.js.map +1 -0
  6. package/dist/index.mjs +580 -0
  7. package/dist/index.mjs.map +1 -0
  8. package/package.json +52 -53
  9. package/build/main/data/constants.d.ts +0 -24
  10. package/build/main/data/constants.js +0 -28
  11. package/build/main/index.d.ts +0 -7
  12. package/build/main/index.js +0 -24
  13. package/build/main/lib/checkWikiValidity.d.ts +0 -67
  14. package/build/main/lib/checkWikiValidity.js +0 -209
  15. package/build/main/lib/helpers/wiki.helpers.d.ts +0 -32
  16. package/build/main/lib/helpers/wiki.helpers.js +0 -86
  17. package/build/main/lib/isDeepEqual.d.ts +0 -3
  18. package/build/main/lib/isDeepEqual.js +0 -53
  19. package/build/main/lib/wikiScore.d.ts +0 -2
  20. package/build/main/lib/wikiScore.js +0 -127
  21. package/build/main/schema/wiki.schema.d.ts +0 -798
  22. package/build/main/schema/wiki.schema.js +0 -289
  23. package/build/main/types/wiki.d.ts +0 -9
  24. package/build/main/types/wiki.js +0 -14
  25. package/build/main/types/wikiBuilder.d.ts +0 -11
  26. package/build/main/types/wikiBuilder.js +0 -3
  27. package/build/module/data/constants.d.ts +0 -24
  28. package/build/module/data/constants.js +0 -25
  29. package/build/module/index.d.ts +0 -7
  30. package/build/module/index.js +0 -8
  31. package/build/module/lib/checkWikiValidity.d.ts +0 -67
  32. package/build/module/lib/checkWikiValidity.js +0 -191
  33. package/build/module/lib/helpers/wiki.helpers.d.ts +0 -32
  34. package/build/module/lib/helpers/wiki.helpers.js +0 -75
  35. package/build/module/lib/isDeepEqual.d.ts +0 -3
  36. package/build/module/lib/isDeepEqual.js +0 -51
  37. package/build/module/lib/wikiScore.d.ts +0 -2
  38. package/build/module/lib/wikiScore.js +0 -121
  39. package/build/module/schema/wiki.schema.d.ts +0 -798
  40. package/build/module/schema/wiki.schema.js +0 -286
  41. package/build/module/types/wiki.d.ts +0 -9
  42. package/build/module/types/wiki.js +0 -11
  43. package/build/module/types/wikiBuilder.d.ts +0 -11
  44. package/build/module/types/wikiBuilder.js +0 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,17 @@
1
1
  ## 0.2.8
2
2
 
3
+ ## 2.0.1
4
+
5
+ ### Patch Changes
6
+
7
+ - 502eda3: Updates the wiki schema to match publish schema rather than fetch from graphql
8
+
9
+ ## 2.0.0
10
+
11
+ ### Major Changes
12
+
13
+ - 589e5ea: Simplifies the file structure and variable and method function names from exports
14
+
3
15
  ## 1.0.1
4
16
 
5
17
  ### Patch Changes
@@ -164,7 +176,7 @@
164
176
  };
165
177
  };
166
178
  },
167
- 'title' | 'content' | 'summary'
179
+ "title" | "content" | "summary"
168
180
  >;
169
181
  ```
170
182