graphor 0.4.1 → 0.4.3

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 (101) hide show
  1. package/CHANGELOG.md +28 -40
  2. package/LICENSE +1 -1
  3. package/README.md +297 -269
  4. package/client.d.mts +16 -15
  5. package/client.d.mts.map +1 -1
  6. package/client.d.ts +16 -15
  7. package/client.d.ts.map +1 -1
  8. package/client.js +46 -47
  9. package/client.js.map +1 -1
  10. package/client.mjs +44 -45
  11. package/client.mjs.map +1 -1
  12. package/core/api-promise.d.mts +2 -2
  13. package/core/api-promise.d.mts.map +1 -1
  14. package/core/api-promise.d.ts +2 -2
  15. package/core/api-promise.d.ts.map +1 -1
  16. package/core/api-promise.js.map +1 -1
  17. package/core/api-promise.mjs.map +1 -1
  18. package/core/error.d.mts +2 -2
  19. package/core/error.d.mts.map +1 -1
  20. package/core/error.d.ts +2 -2
  21. package/core/error.d.ts.map +1 -1
  22. package/core/error.js +4 -4
  23. package/core/error.js.map +1 -1
  24. package/core/error.mjs +2 -2
  25. package/core/error.mjs.map +1 -1
  26. package/core/resource.d.mts +3 -3
  27. package/core/resource.d.mts.map +1 -1
  28. package/core/resource.d.ts +3 -3
  29. package/core/resource.d.ts.map +1 -1
  30. package/core/resource.js.map +1 -1
  31. package/core/resource.mjs.map +1 -1
  32. package/index.d.mts +3 -3
  33. package/index.d.mts.map +1 -1
  34. package/index.d.ts +3 -3
  35. package/index.d.ts.map +1 -1
  36. package/index.js +4 -4
  37. package/index.js.map +1 -1
  38. package/index.mjs +3 -3
  39. package/index.mjs.map +1 -1
  40. package/internal/parse.d.mts +2 -2
  41. package/internal/parse.d.mts.map +1 -1
  42. package/internal/parse.d.ts +2 -2
  43. package/internal/parse.d.ts.map +1 -1
  44. package/internal/parse.js.map +1 -1
  45. package/internal/parse.mjs.map +1 -1
  46. package/internal/shims.js +1 -1
  47. package/internal/shims.js.map +1 -1
  48. package/internal/shims.mjs +1 -1
  49. package/internal/shims.mjs.map +1 -1
  50. package/internal/uploads.d.mts +4 -4
  51. package/internal/uploads.d.mts.map +1 -1
  52. package/internal/uploads.d.ts +4 -4
  53. package/internal/uploads.d.ts.map +1 -1
  54. package/internal/uploads.js.map +1 -1
  55. package/internal/uploads.mjs.map +1 -1
  56. package/internal/utils/base64.js +2 -2
  57. package/internal/utils/base64.js.map +1 -1
  58. package/internal/utils/base64.mjs +3 -3
  59. package/internal/utils/base64.mjs.map +1 -1
  60. package/internal/utils/log.d.mts +3 -3
  61. package/internal/utils/log.d.mts.map +1 -1
  62. package/internal/utils/log.d.ts +3 -3
  63. package/internal/utils/log.d.ts.map +1 -1
  64. package/internal/utils/log.js.map +1 -1
  65. package/internal/utils/log.mjs.map +1 -1
  66. package/internal/utils/path.js +1 -1
  67. package/internal/utils/path.js.map +1 -1
  68. package/internal/utils/path.mjs +2 -2
  69. package/internal/utils/path.mjs.map +1 -1
  70. package/internal/utils/values.js +5 -5
  71. package/internal/utils/values.js.map +1 -1
  72. package/internal/utils/values.mjs +6 -6
  73. package/internal/utils/values.mjs.map +1 -1
  74. package/package.json +3 -3
  75. package/resources/index.d.mts +1 -1
  76. package/resources/index.d.mts.map +1 -1
  77. package/resources/index.d.ts +1 -1
  78. package/resources/index.d.ts.map +1 -1
  79. package/resources/sources.d.mts +9 -6
  80. package/resources/sources.d.mts.map +1 -1
  81. package/resources/sources.d.ts +9 -6
  82. package/resources/sources.d.ts.map +1 -1
  83. package/src/client.ts +37 -37
  84. package/src/core/api-promise.ts +4 -4
  85. package/src/core/error.ts +2 -2
  86. package/src/core/resource.ts +3 -3
  87. package/src/index.ts +3 -3
  88. package/src/internal/parse.ts +2 -2
  89. package/src/internal/shims.ts +1 -1
  90. package/src/internal/uploads.ts +5 -5
  91. package/src/internal/utils/base64.ts +3 -3
  92. package/src/internal/utils/log.ts +3 -3
  93. package/src/internal/utils/path.ts +2 -2
  94. package/src/internal/utils/values.ts +6 -6
  95. package/src/resources/index.ts +1 -1
  96. package/src/resources/sources.ts +18 -14
  97. package/src/version.ts +1 -1
  98. package/version.d.mts +1 -1
  99. package/version.d.ts +1 -1
  100. package/version.js +1 -1
  101. package/version.mjs +1 -1
package/CHANGELOG.md CHANGED
@@ -1,66 +1,54 @@
1
1
  # Changelog
2
2
 
3
- ## 0.4.1 (2026-02-03)
3
+ ## 0.4.3 (2026-02-10)
4
4
 
5
- Full Changelog: [v0.4.0...v0.4.1](https://github.com/synapseops/graphor-typescript-sdk/compare/v0.4.0...v0.4.1)
5
+ Full Changelog: [v0.4.2...v0.4.3](https://github.com/synapseops/graphor-typescript-sdk/compare/v0.4.2...v0.4.3)
6
6
 
7
- ### Bug Fixes
8
-
9
- * **client:** avoid memory leak with abort signals ([15e14bd](https://github.com/synapseops/graphor-typescript-sdk/commit/15e14bd243787944a5fe5421a88b1e2de8403840))
7
+ ### Documentation
10
8
 
9
+ * **readme:** update ([153c368](https://github.com/synapseops/graphor-typescript-sdk/commit/153c368be44e84d4b245e9a2b036b18ffd5d7604))
11
10
 
12
- ### Chores
11
+ ## 0.4.2 (2026-02-10)
13
12
 
14
- * **client:** do not parse responses with empty content-length ([b91e45d](https://github.com/synapseops/graphor-typescript-sdk/commit/b91e45de2e60f565abd800aa72d77b1c86317590))
15
- * configure new SDK language ([da4ce18](https://github.com/synapseops/graphor-typescript-sdk/commit/da4ce1872ff957d203ed135c297d693a28a18309))
16
-
17
- ## 0.4.0 (2026-01-29)
18
-
19
- Full Changelog: [v0.3.0...v0.4.0](https://github.com/synapseops/graphor-typescript-sdk/compare/v0.3.0...v0.4.0)
13
+ Full Changelog: [v0.0.1...v0.4.2](https://github.com/synapseops/graphor-typescript-sdk/compare/v0.0.1...v0.4.2)
20
14
 
21
15
  ### Features
22
16
 
23
17
  * **api:** api update ([0f686b0](https://github.com/synapseops/graphor-typescript-sdk/commit/0f686b0bd56368415eb50b140a8c14bb337f0b38))
18
+ * **api:** api update ([f11be93](https://github.com/synapseops/graphor-typescript-sdk/commit/f11be9365691e89aad88d54c9fa5d4e11ed9f7cd))
19
+ * **api:** api update ([d32277d](https://github.com/synapseops/graphor-typescript-sdk/commit/d32277ddb7fdaf1eb85ed18780a5bafcc033fd1c))
20
+ * **api:** api update ([5ad42fd](https://github.com/synapseops/graphor-typescript-sdk/commit/5ad42fde9cb0162dd29758dfd820fcec62d192b8))
21
+ * **api:** manual updates ([25ea06d](https://github.com/synapseops/graphor-typescript-sdk/commit/25ea06d24da0bb21e0c78594fcd31bcd29cd98bf))
22
+ * **api:** manual updates ([a783c74](https://github.com/synapseops/graphor-typescript-sdk/commit/a783c74a9b59a8f35da65281129fa4df3dfcf2d1))
23
+ * **api:** manual updates ([1f997a8](https://github.com/synapseops/graphor-typescript-sdk/commit/1f997a8e571bd09556858368adfc5d0084712189))
24
+ * **api:** manual updates ([8e982cb](https://github.com/synapseops/graphor-typescript-sdk/commit/8e982cb5568ec0bac99339b768dc1fb4b50c5d64))
24
25
 
25
- ## 0.3.0 (2026-01-26)
26
-
27
- Full Changelog: [v0.2.0...v0.3.0](https://github.com/synapseops/graphor-typescript-sdk/compare/v0.2.0...v0.3.0)
28
26
 
29
- ### Features
27
+ ### Bug Fixes
30
28
 
31
- * **api:** api update ([f11be93](https://github.com/synapseops/graphor-typescript-sdk/commit/f11be9365691e89aad88d54c9fa5d4e11ed9f7cd))
32
- * **api:** api update ([d32277d](https://github.com/synapseops/graphor-typescript-sdk/commit/d32277ddb7fdaf1eb85ed18780a5bafcc033fd1c))
29
+ * **client:** avoid memory leak with abort signals ([15e14bd](https://github.com/synapseops/graphor-typescript-sdk/commit/15e14bd243787944a5fe5421a88b1e2de8403840))
33
30
 
34
31
 
35
32
  ### Chores
36
33
 
37
34
  * **ci:** upgrade `actions/github-script` ([b77f1ee](https://github.com/synapseops/graphor-typescript-sdk/commit/b77f1ee991cd4a12fc66783f92d80948389d265a))
35
+ * **client:** do not parse responses with empty content-length ([b91e45d](https://github.com/synapseops/graphor-typescript-sdk/commit/b91e45de2e60f565abd800aa72d77b1c86317590))
36
+ * configure new SDK language ([f078283](https://github.com/synapseops/graphor-typescript-sdk/commit/f07828334f19fdf42304cb3da859d4fc4bb48f01))
37
+ * configure new SDK language ([da4ce18](https://github.com/synapseops/graphor-typescript-sdk/commit/da4ce1872ff957d203ed135c297d693a28a18309))
38
38
  * **internal:** update `actions/checkout` version ([39004f9](https://github.com/synapseops/graphor-typescript-sdk/commit/39004f98547edfcba6aeee3f57a731ab4e9d7c19))
39
39
  * **internal:** update lock file ([fd16cec](https://github.com/synapseops/graphor-typescript-sdk/commit/fd16cece35d8b7d1acb4c383c4ce8f13deb358fa))
40
40
  * **internal:** upgrade babel, qs, js-yaml ([b79e597](https://github.com/synapseops/graphor-typescript-sdk/commit/b79e597c30e17c90b1825189d5d1ece9f924403b))
41
41
  * **internal:** upgrade brace-expansion and @babel/helpers ([647d7af](https://github.com/synapseops/graphor-typescript-sdk/commit/647d7af3bdfb9304a08025bf34f2639d38aece54))
42
-
43
- ## 0.2.0 (2026-01-09)
44
-
45
- Full Changelog: [v0.1.0...v0.2.0](https://github.com/synapseops/graphor-typescript-sdk/compare/v0.1.0...v0.2.0)
46
-
47
- ### Features
48
-
49
- * **api:** manual updates ([25ea06d](https://github.com/synapseops/graphor-typescript-sdk/commit/25ea06d24da0bb21e0c78594fcd31bcd29cd98bf))
50
-
51
- ## 0.1.0 (2026-01-09)
52
-
53
- Full Changelog: [v0.0.1...v0.1.0](https://github.com/synapseops/graphor-typescript-sdk/compare/v0.0.1...v0.1.0)
54
-
55
- ### Features
56
-
57
- * **api:** api update ([5ad42fd](https://github.com/synapseops/graphor-typescript-sdk/commit/5ad42fde9cb0162dd29758dfd820fcec62d192b8))
58
- * **api:** manual updates ([a783c74](https://github.com/synapseops/graphor-typescript-sdk/commit/a783c74a9b59a8f35da65281129fa4df3dfcf2d1))
59
- * **api:** manual updates ([1f997a8](https://github.com/synapseops/graphor-typescript-sdk/commit/1f997a8e571bd09556858368adfc5d0084712189))
60
- * **api:** manual updates ([8e982cb](https://github.com/synapseops/graphor-typescript-sdk/commit/8e982cb5568ec0bac99339b768dc1fb4b50c5d64))
42
+ * sync repo ([392f73f](https://github.com/synapseops/graphor-typescript-sdk/commit/392f73f00e137758492cbc146fb883ca9015eb70))
43
+ * sync repo ([9a78c9d](https://github.com/synapseops/graphor-typescript-sdk/commit/9a78c9d4fcd6c9e43e77e229162788adaa662fa0))
44
+ * update SDK settings ([2bdc306](https://github.com/synapseops/graphor-typescript-sdk/commit/2bdc3062b283ef55e183276074c386f60557e4d0))
45
+ * update SDK settings ([31015b6](https://github.com/synapseops/graphor-typescript-sdk/commit/31015b63cac9e20bccefe35ecbc30f13d181e565))
46
+ * update SDK settings ([970a15b](https://github.com/synapseops/graphor-typescript-sdk/commit/970a15b9c0e93eb9d1887c7f55e9219b46aa928d))
47
+ * update SDK settings ([22390b1](https://github.com/synapseops/graphor-typescript-sdk/commit/22390b100985f7ad43ab15d444ce6da5738f6958))
48
+ * update SDK settings ([4d361ac](https://github.com/synapseops/graphor-typescript-sdk/commit/4d361acab60cca536b3528cc696ebdf82c614437))
49
+ * update SDK settings ([73a01be](https://github.com/synapseops/graphor-typescript-sdk/commit/73a01be740cf289e84cb40b4451ae5f2fdd10d87))
61
50
 
62
51
 
63
- ### Chores
52
+ ### Documentation
64
53
 
65
- * update SDK settings ([4d361ac](https://github.com/synapseops/graphor-typescript-sdk/commit/4d361acab60cca536b3528cc696ebdf82c614437))
66
- * update SDK settings ([73a01be](https://github.com/synapseops/graphor-typescript-sdk/commit/73a01be740cf289e84cb40b4451ae5f2fdd10d87))
54
+ * **readme:** update ([dded427](https://github.com/synapseops/graphor-typescript-sdk/commit/dded42711e175b45ee3916ec13a8640d82aa93c7))
package/LICENSE CHANGED
@@ -186,7 +186,7 @@
186
186
  same "printed page" as the copyright notice for easier
187
187
  identification within third-party archives.
188
188
 
189
- Copyright 2026 Graphor
189
+ Copyright 2026 Graphor Prd
190
190
 
191
191
  Licensed under the Apache License, Version 2.0 (the "License");
192
192
  you may not use this file except in compliance with the License.