@plitzi/sdk-shared 0.30.19

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 (458) hide show
  1. package/CHANGELOG.md +1015 -0
  2. package/dist/_virtual/_rolldown/runtime.mjs +11 -0
  3. package/dist/builder/contexts/BuilderContext.d.ts +61 -0
  4. package/dist/builder/contexts/BuilderContext.mjs +5 -0
  5. package/dist/builder/contexts/index.d.ts +3 -0
  6. package/dist/builder/contexts/index.mjs +6 -0
  7. package/dist/builder/index.d.ts +3 -0
  8. package/dist/builder/index.mjs +3 -0
  9. package/dist/collections/CollectionContext.d.ts +2 -0
  10. package/dist/collections/CollectionContext.mjs +5 -0
  11. package/dist/collections/index.d.ts +3 -0
  12. package/dist/collections/index.mjs +2 -0
  13. package/dist/dataSource/DataSourceContext.d.ts +3 -0
  14. package/dist/dataSource/DataSourceContext.mjs +5 -0
  15. package/dist/dataSource/hooks/index.d.ts +3 -0
  16. package/dist/dataSource/hooks/index.mjs +2 -0
  17. package/dist/dataSource/hooks/useDataSource.d.ts +20 -0
  18. package/dist/dataSource/hooks/useDataSource.mjs +45 -0
  19. package/dist/dataSource/index.d.ts +2 -0
  20. package/dist/dataSource/index.mjs +2 -0
  21. package/dist/devTools/DevToolsContext.d.ts +11 -0
  22. package/dist/devTools/DevToolsContext.mjs +8 -0
  23. package/dist/devTools/index.d.ts +5 -0
  24. package/dist/devTools/index.mjs +3 -0
  25. package/dist/devTools/utils/PlitziConsole.d.ts +39 -0
  26. package/dist/devTools/utils/PlitziConsole.mjs +97 -0
  27. package/dist/elements/ComponentContext.d.ts +3 -0
  28. package/dist/elements/ComponentContext.mjs +5 -0
  29. package/dist/elements/ElementContext.d.ts +19 -0
  30. package/dist/elements/ElementContext.mjs +6 -0
  31. package/dist/elements/hooks/useElement.d.ts +3 -0
  32. package/dist/elements/hooks/useElement.mjs +10 -0
  33. package/dist/elements/index.d.ts +7 -0
  34. package/dist/elements/index.mjs +4 -0
  35. package/dist/helpers/fetchManifest.d.ts +2 -0
  36. package/dist/helpers/fetchManifest.mjs +14 -0
  37. package/dist/helpers/formatDate.d.ts +56 -0
  38. package/dist/helpers/formatDate.mjs +54 -0
  39. package/dist/helpers/generateFacade.d.ts +2 -0
  40. package/dist/helpers/generateFacade.mjs +35 -0
  41. package/dist/helpers/index.d.ts +12 -0
  42. package/dist/helpers/index.mjs +9 -0
  43. package/dist/helpers/security.d.ts +6 -0
  44. package/dist/helpers/security.mjs +10 -0
  45. package/dist/helpers/stripTypename.d.ts +15 -0
  46. package/dist/helpers/stripTypename.mjs +41 -0
  47. package/dist/helpers/syntaxHighlight.d.ts +2 -0
  48. package/dist/helpers/syntaxHighlight.mjs +7 -0
  49. package/dist/helpers/twigWrapper.d.ts +4 -0
  50. package/dist/helpers/twigWrapper.mjs +33 -0
  51. package/dist/helpers/utils.d.ts +18 -0
  52. package/dist/helpers/utils.mjs +62 -0
  53. package/dist/hooks/index.d.ts +5 -0
  54. package/dist/hooks/index.mjs +3 -0
  55. package/dist/hooks/useNetwork.d.ts +12 -0
  56. package/dist/hooks/useNetwork.mjs +45 -0
  57. package/dist/hooks/usePlitziServiceContext.d.ts +42 -0
  58. package/dist/hooks/usePlitziServiceContext.mjs +17 -0
  59. package/dist/index.d.ts +16 -0
  60. package/dist/index.mjs +37 -0
  61. package/dist/network/NetworkContext.d.ts +31 -0
  62. package/dist/network/NetworkContext.mjs +20 -0
  63. package/dist/network/NetworkInternalContext.d.ts +7 -0
  64. package/dist/network/NetworkInternalContext.mjs +6 -0
  65. package/dist/network/graphql/builder/Mutations/Collection/CollectionAddMutation.d.ts +4 -0
  66. package/dist/network/graphql/builder/Mutations/Collection/CollectionAddMutation.mjs +24 -0
  67. package/dist/network/graphql/builder/Mutations/Collection/CollectionAddRecordMutation.d.ts +4 -0
  68. package/dist/network/graphql/builder/Mutations/Collection/CollectionAddRecordMutation.mjs +16 -0
  69. package/dist/network/graphql/builder/Mutations/Collection/CollectionRemoveMutation.d.ts +4 -0
  70. package/dist/network/graphql/builder/Mutations/Collection/CollectionRemoveMutation.mjs +17 -0
  71. package/dist/network/graphql/builder/Mutations/Collection/CollectionRemoveRecordMutation.d.ts +4 -0
  72. package/dist/network/graphql/builder/Mutations/Collection/CollectionRemoveRecordMutation.mjs +14 -0
  73. package/dist/network/graphql/builder/Mutations/Collection/CollectionUpdateMutation.d.ts +4 -0
  74. package/dist/network/graphql/builder/Mutations/Collection/CollectionUpdateMutation.mjs +32 -0
  75. package/dist/network/graphql/builder/Mutations/Collection/CollectionUpdateRecordMutation.d.ts +4 -0
  76. package/dist/network/graphql/builder/Mutations/Collection/CollectionUpdateRecordMutation.mjs +16 -0
  77. package/dist/network/graphql/builder/Mutations/Segment/SegmentAddMutation.d.ts +4 -0
  78. package/dist/network/graphql/builder/Mutations/Segment/SegmentAddMutation.mjs +59 -0
  79. package/dist/network/graphql/builder/Mutations/Segment/SegmentAddTemplateMutation.d.ts +2 -0
  80. package/dist/network/graphql/builder/Mutations/Segment/SegmentAddTemplateMutation.mjs +53 -0
  81. package/dist/network/graphql/builder/Mutations/Segment/SegmentPublishMutation.d.ts +8 -0
  82. package/dist/network/graphql/builder/Mutations/Segment/SegmentPublishMutation.mjs +14 -0
  83. package/dist/network/graphql/builder/Mutations/Segment/SegmentRemoveMutation.d.ts +2 -0
  84. package/dist/network/graphql/builder/Mutations/Segment/SegmentRemoveMutation.mjs +12 -0
  85. package/dist/network/graphql/builder/Mutations/Segment/SegmentUpdateMutation.d.ts +4 -0
  86. package/dist/network/graphql/builder/Mutations/Segment/SegmentUpdateMutation.mjs +35 -0
  87. package/dist/network/graphql/builder/Mutations/Segment/space/elements/SegmentAddElementMutation.d.ts +2 -0
  88. package/dist/network/graphql/builder/Mutations/Segment/space/elements/SegmentAddElementMutation.mjs +39 -0
  89. package/dist/network/graphql/builder/Mutations/Segment/space/elements/SegmentCloneElementMutation.d.ts +2 -0
  90. package/dist/network/graphql/builder/Mutations/Segment/space/elements/SegmentCloneElementMutation.mjs +37 -0
  91. package/dist/network/graphql/builder/Mutations/Segment/space/elements/SegmentMoveElementMutation.d.ts +2 -0
  92. package/dist/network/graphql/builder/Mutations/Segment/space/elements/SegmentMoveElementMutation.mjs +37 -0
  93. package/dist/network/graphql/builder/Mutations/Segment/space/elements/SegmentRemoveElementMutation.d.ts +2 -0
  94. package/dist/network/graphql/builder/Mutations/Segment/space/elements/SegmentRemoveElementMutation.mjs +23 -0
  95. package/dist/network/graphql/builder/Mutations/Segment/space/elements/SegmentUpdateElementMutation.d.ts +2 -0
  96. package/dist/network/graphql/builder/Mutations/Segment/space/elements/SegmentUpdateElementMutation.mjs +23 -0
  97. package/dist/network/graphql/builder/Mutations/Segment/space/variables/SegmentSpaceAddVariableMutation.d.ts +2 -0
  98. package/dist/network/graphql/builder/Mutations/Segment/space/variables/SegmentSpaceAddVariableMutation.mjs +34 -0
  99. package/dist/network/graphql/builder/Mutations/Segment/space/variables/SegmentSpaceRemoveVariableMutation.d.ts +2 -0
  100. package/dist/network/graphql/builder/Mutations/Segment/space/variables/SegmentSpaceRemoveVariableMutation.mjs +18 -0
  101. package/dist/network/graphql/builder/Mutations/Segment/space/variables/SegmentSpaceUpdateVariableMutation.d.ts +2 -0
  102. package/dist/network/graphql/builder/Mutations/Segment/space/variables/SegmentSpaceUpdateVariableMutation.mjs +34 -0
  103. package/dist/network/graphql/builder/Mutations/Segment/style/selectorVariables/SegmentStyleAddSelectorVariableMutation.d.ts +2 -0
  104. package/dist/network/graphql/builder/Mutations/Segment/style/selectorVariables/SegmentStyleAddSelectorVariableMutation.mjs +32 -0
  105. package/dist/network/graphql/builder/Mutations/Segment/style/selectorVariables/SegmentStyleRemoveSelectorVariableMutation.d.ts +2 -0
  106. package/dist/network/graphql/builder/Mutations/Segment/style/selectorVariables/SegmentStyleRemoveSelectorVariableMutation.mjs +29 -0
  107. package/dist/network/graphql/builder/Mutations/Segment/style/selectorVariables/SegmentStyleUpdateSelectorVariableMutation.d.ts +2 -0
  108. package/dist/network/graphql/builder/Mutations/Segment/style/selectorVariables/SegmentStyleUpdateSelectorVariableMutation.mjs +32 -0
  109. package/dist/network/graphql/builder/Mutations/Segment/style/selectors/SegmentStyleAddSelectorMutation.d.ts +2 -0
  110. package/dist/network/graphql/builder/Mutations/Segment/style/selectors/SegmentStyleAddSelectorMutation.mjs +34 -0
  111. package/dist/network/graphql/builder/Mutations/Segment/style/selectors/SegmentStyleRemoveSelectorMutation.d.ts +2 -0
  112. package/dist/network/graphql/builder/Mutations/Segment/style/selectors/SegmentStyleRemoveSelectorMutation.mjs +12 -0
  113. package/dist/network/graphql/builder/Mutations/Segment/style/selectors/SegmentStyleUpdateSelectorMutation.d.ts +2 -0
  114. package/dist/network/graphql/builder/Mutations/Segment/style/selectors/SegmentStyleUpdateSelectorMutation.mjs +32 -0
  115. package/dist/network/graphql/builder/Mutations/Segment/style/variables/SegmentStyleAddVariableMutation.d.ts +2 -0
  116. package/dist/network/graphql/builder/Mutations/Segment/style/variables/SegmentStyleAddVariableMutation.mjs +26 -0
  117. package/dist/network/graphql/builder/Mutations/Segment/style/variables/SegmentStyleRemoveVariableMutation.d.ts +2 -0
  118. package/dist/network/graphql/builder/Mutations/Segment/style/variables/SegmentStyleRemoveVariableMutation.mjs +18 -0
  119. package/dist/network/graphql/builder/Mutations/Segment/style/variables/SegmentStyleUpdateVariableMutation.d.ts +2 -0
  120. package/dist/network/graphql/builder/Mutations/Segment/style/variables/SegmentStyleUpdateVariableMutation.mjs +26 -0
  121. package/dist/network/graphql/builder/Mutations/Space/SpaceAddElementMutation.d.ts +2 -0
  122. package/dist/network/graphql/builder/Mutations/Space/SpaceAddElementMutation.mjs +37 -0
  123. package/dist/network/graphql/builder/Mutations/Space/SpaceAddPluginMutation.d.ts +6 -0
  124. package/dist/network/graphql/builder/Mutations/Space/SpaceAddPluginMutation.mjs +15 -0
  125. package/dist/network/graphql/builder/Mutations/Space/SpaceAddTemplateMutation.d.ts +2 -0
  126. package/dist/network/graphql/builder/Mutations/Space/SpaceAddTemplateMutation.mjs +39 -0
  127. package/dist/network/graphql/builder/Mutations/Space/SpaceCloneElementMutation.d.ts +2 -0
  128. package/dist/network/graphql/builder/Mutations/Space/SpaceCloneElementMutation.mjs +35 -0
  129. package/dist/network/graphql/builder/Mutations/Space/SpaceDeployMutation.d.ts +4 -0
  130. package/dist/network/graphql/builder/Mutations/Space/SpaceDeployMutation.mjs +26 -0
  131. package/dist/network/graphql/builder/Mutations/Space/SpaceMoveElementMutation.d.ts +2 -0
  132. package/dist/network/graphql/builder/Mutations/Space/SpaceMoveElementMutation.mjs +35 -0
  133. package/dist/network/graphql/builder/Mutations/Space/SpacePublishMutation.d.ts +8 -0
  134. package/dist/network/graphql/builder/Mutations/Space/SpacePublishMutation.mjs +14 -0
  135. package/dist/network/graphql/builder/Mutations/Space/SpaceRemoveElementMutation.d.ts +2 -0
  136. package/dist/network/graphql/builder/Mutations/Space/SpaceRemoveElementMutation.mjs +23 -0
  137. package/dist/network/graphql/builder/Mutations/Space/SpaceRemovePluginMutation.d.ts +2 -0
  138. package/dist/network/graphql/builder/Mutations/Space/SpaceRemovePluginMutation.mjs +15 -0
  139. package/dist/network/graphql/builder/Mutations/Space/SpaceUpdateElementMutation.d.ts +2 -0
  140. package/dist/network/graphql/builder/Mutations/Space/SpaceUpdateElementMutation.mjs +23 -0
  141. package/dist/network/graphql/builder/Mutations/Space/SpaceUpdateMutation.d.ts +2 -0
  142. package/dist/network/graphql/builder/Mutations/Space/SpaceUpdateMutation.mjs +34 -0
  143. package/dist/network/graphql/builder/Mutations/Space/SpaceUpdatePluginMutation.d.ts +6 -0
  144. package/dist/network/graphql/builder/Mutations/Space/SpaceUpdatePluginMutation.mjs +15 -0
  145. package/dist/network/graphql/builder/Mutations/Space/SpaceUpdateSchemaMutation.d.ts +2 -0
  146. package/dist/network/graphql/builder/Mutations/Space/SpaceUpdateSchemaMutation.mjs +29 -0
  147. package/dist/network/graphql/builder/Mutations/Space/SpaceUpdateSettingsMutation.d.ts +2 -0
  148. package/dist/network/graphql/builder/Mutations/Space/SpaceUpdateSettingsMutation.mjs +11 -0
  149. package/dist/network/graphql/builder/Mutations/Space/cdns/SpaceAddCdnMutation.d.ts +4 -0
  150. package/dist/network/graphql/builder/Mutations/Space/cdns/SpaceAddCdnMutation.mjs +34 -0
  151. package/dist/network/graphql/builder/Mutations/Space/cdns/SpaceRemoveCdnMutation.d.ts +4 -0
  152. package/dist/network/graphql/builder/Mutations/Space/cdns/SpaceRemoveCdnMutation.mjs +11 -0
  153. package/dist/network/graphql/builder/Mutations/Space/cdns/SpaceSetCdnCredentialMutation.d.ts +4 -0
  154. package/dist/network/graphql/builder/Mutations/Space/cdns/SpaceSetCdnCredentialMutation.mjs +20 -0
  155. package/dist/network/graphql/builder/Mutations/Space/cdns/SpaceUpdateCdnMutation.d.ts +4 -0
  156. package/dist/network/graphql/builder/Mutations/Space/cdns/SpaceUpdateCdnMutation.mjs +36 -0
  157. package/dist/network/graphql/builder/Mutations/Space/credentials/SpaceAddCredentialMutation.d.ts +2 -0
  158. package/dist/network/graphql/builder/Mutations/Space/credentials/SpaceAddCredentialMutation.mjs +18 -0
  159. package/dist/network/graphql/builder/Mutations/Space/credentials/SpaceRemoveCredentialMutation.d.ts +2 -0
  160. package/dist/network/graphql/builder/Mutations/Space/credentials/SpaceRemoveCredentialMutation.mjs +11 -0
  161. package/dist/network/graphql/builder/Mutations/Space/credentials/SpaceUpdateCredentialMutation.d.ts +2 -0
  162. package/dist/network/graphql/builder/Mutations/Space/credentials/SpaceUpdateCredentialMutation.mjs +18 -0
  163. package/dist/network/graphql/builder/Mutations/Space/folders/SpaceAddPageFolderMutation.d.ts +4 -0
  164. package/dist/network/graphql/builder/Mutations/Space/folders/SpaceAddPageFolderMutation.mjs +14 -0
  165. package/dist/network/graphql/builder/Mutations/Space/folders/SpaceRemovePageFolderMutation.d.ts +4 -0
  166. package/dist/network/graphql/builder/Mutations/Space/folders/SpaceRemovePageFolderMutation.mjs +11 -0
  167. package/dist/network/graphql/builder/Mutations/Space/folders/SpaceUpdatePageFolderMutation.d.ts +4 -0
  168. package/dist/network/graphql/builder/Mutations/Space/folders/SpaceUpdatePageFolderMutation.mjs +14 -0
  169. package/dist/network/graphql/builder/Mutations/Space/pages/SpaceAddPageMutation.d.ts +4 -0
  170. package/dist/network/graphql/builder/Mutations/Space/pages/SpaceAddPageMutation.mjs +13 -0
  171. package/dist/network/graphql/builder/Mutations/Space/pages/SpaceHomePageMutation.d.ts +4 -0
  172. package/dist/network/graphql/builder/Mutations/Space/pages/SpaceHomePageMutation.mjs +11 -0
  173. package/dist/network/graphql/builder/Mutations/Space/pages/SpaceRemovePageMutation.d.ts +4 -0
  174. package/dist/network/graphql/builder/Mutations/Space/pages/SpaceRemovePageMutation.mjs +11 -0
  175. package/dist/network/graphql/builder/Mutations/Space/pages/SpaceUpdatePageMutation.d.ts +4 -0
  176. package/dist/network/graphql/builder/Mutations/Space/pages/SpaceUpdatePageMutation.mjs +13 -0
  177. package/dist/network/graphql/builder/Mutations/Space/resources/SpaceAddResourceMutation.d.ts +4 -0
  178. package/dist/network/graphql/builder/Mutations/Space/resources/SpaceAddResourceMutation.mjs +27 -0
  179. package/dist/network/graphql/builder/Mutations/Space/resources/SpaceMoveResourceMutation.d.ts +4 -0
  180. package/dist/network/graphql/builder/Mutations/Space/resources/SpaceMoveResourceMutation.mjs +15 -0
  181. package/dist/network/graphql/builder/Mutations/Space/resources/SpaceRemoveResourceMutation.d.ts +4 -0
  182. package/dist/network/graphql/builder/Mutations/Space/resources/SpaceRemoveResourceMutation.mjs +11 -0
  183. package/dist/network/graphql/builder/Mutations/Space/variables/SpaceAddVariableMutation.d.ts +2 -0
  184. package/dist/network/graphql/builder/Mutations/Space/variables/SpaceAddVariableMutation.mjs +32 -0
  185. package/dist/network/graphql/builder/Mutations/Space/variables/SpaceRemoveVariableMutation.d.ts +2 -0
  186. package/dist/network/graphql/builder/Mutations/Space/variables/SpaceRemoveVariableMutation.mjs +11 -0
  187. package/dist/network/graphql/builder/Mutations/Space/variables/SpaceUpdateVariableMutation.d.ts +2 -0
  188. package/dist/network/graphql/builder/Mutations/Space/variables/SpaceUpdateVariableMutation.mjs +18 -0
  189. package/dist/network/graphql/builder/Mutations/Style/StyleUpdateMutation.d.ts +2 -0
  190. package/dist/network/graphql/builder/Mutations/Style/StyleUpdateMutation.mjs +15 -0
  191. package/dist/network/graphql/builder/Mutations/Style/StyleUpdateSettingsMutation.d.ts +2 -0
  192. package/dist/network/graphql/builder/Mutations/Style/StyleUpdateSettingsMutation.mjs +15 -0
  193. package/dist/network/graphql/builder/Mutations/Style/selectorVariables/StyleAddSelectorVariableMutation.d.ts +2 -0
  194. package/dist/network/graphql/builder/Mutations/Style/selectorVariables/StyleAddSelectorVariableMutation.mjs +29 -0
  195. package/dist/network/graphql/builder/Mutations/Style/selectorVariables/StyleRemoveSelectorVariableMutation.d.ts +2 -0
  196. package/dist/network/graphql/builder/Mutations/Style/selectorVariables/StyleRemoveSelectorVariableMutation.mjs +26 -0
  197. package/dist/network/graphql/builder/Mutations/Style/selectorVariables/StyleUpdateSelectorVariableMutation.d.ts +2 -0
  198. package/dist/network/graphql/builder/Mutations/Style/selectorVariables/StyleUpdateSelectorVariableMutation.mjs +29 -0
  199. package/dist/network/graphql/builder/Mutations/Style/selectors/StyleAddSelectorMutation.d.ts +2 -0
  200. package/dist/network/graphql/builder/Mutations/Style/selectors/StyleAddSelectorMutation.mjs +32 -0
  201. package/dist/network/graphql/builder/Mutations/Style/selectors/StyleRemoveSelectorMutation.d.ts +2 -0
  202. package/dist/network/graphql/builder/Mutations/Style/selectors/StyleRemoveSelectorMutation.mjs +12 -0
  203. package/dist/network/graphql/builder/Mutations/Style/selectors/StyleUpdateSelectorMutation.d.ts +2 -0
  204. package/dist/network/graphql/builder/Mutations/Style/selectors/StyleUpdateSelectorMutation.mjs +30 -0
  205. package/dist/network/graphql/builder/Mutations/Style/variables/StyleAddVariableMutation.d.ts +2 -0
  206. package/dist/network/graphql/builder/Mutations/Style/variables/StyleAddVariableMutation.mjs +13 -0
  207. package/dist/network/graphql/builder/Mutations/Style/variables/StyleRemoveVariableMutation.d.ts +2 -0
  208. package/dist/network/graphql/builder/Mutations/Style/variables/StyleRemoveVariableMutation.mjs +12 -0
  209. package/dist/network/graphql/builder/Mutations/Style/variables/StyleUpdateVariableMutation.d.ts +2 -0
  210. package/dist/network/graphql/builder/Mutations/Style/variables/StyleUpdateVariableMutation.mjs +13 -0
  211. package/dist/network/graphql/builder/Mutations/index.d.ts +178 -0
  212. package/dist/network/graphql/builder/Mutations/index.mjs +151 -0
  213. package/dist/network/graphql/builder/Queries/Collection/CollectionQuery.d.ts +6 -0
  214. package/dist/network/graphql/builder/Queries/Collection/CollectionQuery.mjs +35 -0
  215. package/dist/network/graphql/builder/Queries/Collection/CollectionRecordQuery.d.ts +6 -0
  216. package/dist/network/graphql/builder/Queries/Collection/CollectionRecordQuery.mjs +16 -0
  217. package/dist/network/graphql/builder/Queries/Collection/CollectionRecordsQuery.d.ts +9 -0
  218. package/dist/network/graphql/builder/Queries/Collection/CollectionRecordsQuery.mjs +27 -0
  219. package/dist/network/graphql/builder/Queries/Collection/CollectionsQuery.d.ts +9 -0
  220. package/dist/network/graphql/builder/Queries/Collection/CollectionsQuery.mjs +37 -0
  221. package/dist/network/graphql/builder/Queries/InitQuery.d.ts +15 -0
  222. package/dist/network/graphql/builder/Queries/InitQuery.mjs +130 -0
  223. package/dist/network/graphql/builder/Queries/PluginsQuery.d.ts +9 -0
  224. package/dist/network/graphql/builder/Queries/PluginsQuery.mjs +54 -0
  225. package/dist/network/graphql/builder/Queries/Segment/SegmentQuery.d.ts +6 -0
  226. package/dist/network/graphql/builder/Queries/Segment/SegmentQuery.mjs +47 -0
  227. package/dist/network/graphql/builder/Queries/Segment/SegmentsQuery.d.ts +9 -0
  228. package/dist/network/graphql/builder/Queries/Segment/SegmentsQuery.mjs +58 -0
  229. package/dist/network/graphql/builder/Queries/Space/SpaceCdnsQuery.d.ts +9 -0
  230. package/dist/network/graphql/builder/Queries/Space/SpaceCdnsQuery.mjs +32 -0
  231. package/dist/network/graphql/builder/Queries/Space/SpaceCredentialsQuery.d.ts +9 -0
  232. package/dist/network/graphql/builder/Queries/Space/SpaceCredentialsQuery.mjs +29 -0
  233. package/dist/network/graphql/builder/Queries/Space/SpaceDeploymentsQuery.d.ts +9 -0
  234. package/dist/network/graphql/builder/Queries/Space/SpaceDeploymentsQuery.mjs +30 -0
  235. package/dist/network/graphql/builder/Queries/Space/SpaceLatestRevisionQuery.d.ts +11 -0
  236. package/dist/network/graphql/builder/Queries/Space/SpaceLatestRevisionQuery.mjs +15 -0
  237. package/dist/network/graphql/builder/Queries/Space/SpaceResourcesQuery.d.ts +8 -0
  238. package/dist/network/graphql/builder/Queries/Space/SpaceResourcesQuery.mjs +20 -0
  239. package/dist/network/graphql/builder/Queries/index.d.ts +44 -0
  240. package/dist/network/graphql/builder/Queries/index.mjs +31 -0
  241. package/dist/network/graphql/builder/Subscriptions/Collaborator/CollaboratorConnectedSubscription.d.ts +11 -0
  242. package/dist/network/graphql/builder/Subscriptions/Collaborator/CollaboratorConnectedSubscription.mjs +17 -0
  243. package/dist/network/graphql/builder/Subscriptions/Collaborator/CollaboratorDisconnectedSubscription.d.ts +11 -0
  244. package/dist/network/graphql/builder/Subscriptions/Collaborator/CollaboratorDisconnectedSubscription.mjs +17 -0
  245. package/dist/network/graphql/builder/Subscriptions/Segment/SegmentAddTemplateSubscription.d.ts +2 -0
  246. package/dist/network/graphql/builder/Subscriptions/Segment/SegmentAddTemplateSubscription.mjs +40 -0
  247. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentAddElementSubscription.d.ts +11 -0
  248. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentAddElementSubscription.mjs +39 -0
  249. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentCloneElementSubscription.d.ts +10 -0
  250. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentCloneElementSubscription.mjs +29 -0
  251. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentMoveElementSubscription.d.ts +10 -0
  252. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentMoveElementSubscription.mjs +15 -0
  253. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentRemoveElementSubscription.d.ts +6 -0
  254. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentRemoveElementSubscription.mjs +12 -0
  255. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentUpdateElementSubscription.d.ts +11 -0
  256. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentUpdateElementSubscription.mjs +26 -0
  257. package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceAddVariableSubscription.d.ts +7 -0
  258. package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceAddVariableSubscription.mjs +21 -0
  259. package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceRemoveVariableSubscription.d.ts +7 -0
  260. package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceRemoveVariableSubscription.mjs +14 -0
  261. package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceUpdateVariableSubscription.d.ts +7 -0
  262. package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceUpdateVariableSubscription.mjs +21 -0
  263. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleAddSelectorVariableSubscription.d.ts +11 -0
  264. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleAddSelectorVariableSubscription.mjs +16 -0
  265. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleRemoveSelectorVariableSubscription.d.ts +10 -0
  266. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleRemoveSelectorVariableSubscription.mjs +15 -0
  267. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleUpdateSelectorVariableSubscription.d.ts +11 -0
  268. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleUpdateSelectorVariableSubscription.mjs +16 -0
  269. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleAddSelectorSubscription.d.ts +17 -0
  270. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleAddSelectorSubscription.mjs +17 -0
  271. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleRemoveSelectorSubscription.d.ts +8 -0
  272. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleRemoveSelectorSubscription.mjs +13 -0
  273. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleUpdateSelectorSubscription.d.ts +16 -0
  274. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleUpdateSelectorSubscription.mjs +17 -0
  275. package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleAddVariableSubscription.d.ts +9 -0
  276. package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleAddVariableSubscription.mjs +14 -0
  277. package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleRemoveVariableSubscription.d.ts +8 -0
  278. package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleRemoveVariableSubscription.mjs +13 -0
  279. package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleUpdateVariableSubscription.d.ts +9 -0
  280. package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleUpdateVariableSubscription.mjs +14 -0
  281. package/dist/network/graphql/builder/Subscriptions/Space/SpaceAddTemplateSubscription.d.ts +11 -0
  282. package/dist/network/graphql/builder/Subscriptions/Space/SpaceAddTemplateSubscription.mjs +39 -0
  283. package/dist/network/graphql/builder/Subscriptions/Space/SpaceUpdateSettingsSubscription.d.ts +6 -0
  284. package/dist/network/graphql/builder/Subscriptions/Space/SpaceUpdateSettingsSubscription.mjs +12 -0
  285. package/dist/network/graphql/builder/Subscriptions/Space/SpaceUpdatedSubscription.d.ts +6 -0
  286. package/dist/network/graphql/builder/Subscriptions/Space/SpaceUpdatedSubscription.mjs +28 -0
  287. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceAddElementSubscription.d.ts +10 -0
  288. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceAddElementSubscription.mjs +38 -0
  289. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceCloneElementSubscription.d.ts +9 -0
  290. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceCloneElementSubscription.mjs +28 -0
  291. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceMoveElementSubscription.d.ts +9 -0
  292. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceMoveElementSubscription.mjs +14 -0
  293. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceRemoveElementSubscription.d.ts +5 -0
  294. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceRemoveElementSubscription.mjs +11 -0
  295. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceUpdateElementSubscription.d.ts +6 -0
  296. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceUpdateElementSubscription.mjs +25 -0
  297. package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceAddPageFolderSubscription.d.ts +6 -0
  298. package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceAddPageFolderSubscription.mjs +16 -0
  299. package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceRemovePageFolderSubscription.d.ts +5 -0
  300. package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceRemovePageFolderSubscription.mjs +11 -0
  301. package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceUpdatePageFolderSubscription.d.ts +6 -0
  302. package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceUpdatePageFolderSubscription.mjs +16 -0
  303. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceAddPageSubscription.d.ts +6 -0
  304. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceAddPageSubscription.mjs +25 -0
  305. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceHomePageSubscription.d.ts +6 -0
  306. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceHomePageSubscription.mjs +25 -0
  307. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceRemovePageSubscription.d.ts +5 -0
  308. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceRemovePageSubscription.mjs +11 -0
  309. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceUpdatePageSubscription.d.ts +6 -0
  310. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceUpdatePageSubscription.mjs +25 -0
  311. package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceAddVariableSubscription.d.ts +6 -0
  312. package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceAddVariableSubscription.mjs +20 -0
  313. package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceRemoveVariableSubscription.d.ts +5 -0
  314. package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceRemoveVariableSubscription.mjs +11 -0
  315. package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceUpdateVariableSubscription.d.ts +6 -0
  316. package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceUpdateVariableSubscription.mjs +20 -0
  317. package/dist/network/graphql/builder/Subscriptions/Style/StyleUpdateSettingsSubscription.d.ts +6 -0
  318. package/dist/network/graphql/builder/Subscriptions/Style/StyleUpdateSettingsSubscription.mjs +12 -0
  319. package/dist/network/graphql/builder/Subscriptions/Style/StyleUpdatedSubscription.d.ts +4 -0
  320. package/dist/network/graphql/builder/Subscriptions/Style/StyleUpdatedSubscription.mjs +13 -0
  321. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleAddSelectorSubscription.d.ts +16 -0
  322. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleAddSelectorSubscription.mjs +16 -0
  323. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleRemoveSelectorSubscription.d.ts +7 -0
  324. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleRemoveSelectorSubscription.mjs +12 -0
  325. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleUpdateSelectorSubscription.d.ts +15 -0
  326. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleUpdateSelectorSubscription.mjs +16 -0
  327. package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleAddSelectorVariableSubscription.d.ts +10 -0
  328. package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleAddSelectorVariableSubscription.mjs +15 -0
  329. package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleRemoveSelectorVariableSubscription.d.ts +9 -0
  330. package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleRemoveSelectorVariableSubscription.mjs +14 -0
  331. package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleUpdateSelectorVariableSubscription.d.ts +10 -0
  332. package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleUpdateSelectorVariableSubscription.mjs +15 -0
  333. package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleAddVariableSubscription.d.ts +8 -0
  334. package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleAddVariableSubscription.mjs +13 -0
  335. package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleRemoveVariableSubscription.d.ts +7 -0
  336. package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleRemoveVariableSubscription.mjs +12 -0
  337. package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleUpdateVariableSubscription.d.ts +8 -0
  338. package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleUpdateVariableSubscription.mjs +13 -0
  339. package/dist/network/graphql/builder/Subscriptions/index.d.ts +151 -0
  340. package/dist/network/graphql/builder/Subscriptions/index.mjs +103 -0
  341. package/dist/network/graphql/builder/index.d.ts +7 -0
  342. package/dist/network/graphql/builder/index.mjs +4 -0
  343. package/dist/network/graphql/index.d.ts +2 -0
  344. package/dist/network/graphql/index.mjs +6 -0
  345. package/dist/network/graphql/sdk/Mutations/Collection/CollectionAddMutation.d.ts +2 -0
  346. package/dist/network/graphql/sdk/Mutations/Collection/CollectionAddRecordMutation.d.ts +4 -0
  347. package/dist/network/graphql/sdk/Mutations/Collection/CollectionAddRecordMutation.mjs +16 -0
  348. package/dist/network/graphql/sdk/Mutations/Collection/CollectionRemoveMutation.d.ts +2 -0
  349. package/dist/network/graphql/sdk/Mutations/Collection/CollectionRemoveRecordMutation.d.ts +4 -0
  350. package/dist/network/graphql/sdk/Mutations/Collection/CollectionRemoveRecordMutation.mjs +14 -0
  351. package/dist/network/graphql/sdk/Mutations/Collection/CollectionUpdateMutation.d.ts +2 -0
  352. package/dist/network/graphql/sdk/Mutations/Collection/CollectionUpdateRecordMutation.d.ts +4 -0
  353. package/dist/network/graphql/sdk/Mutations/Collection/CollectionUpdateRecordMutation.mjs +16 -0
  354. package/dist/network/graphql/sdk/Mutations/index.d.ts +14 -0
  355. package/dist/network/graphql/sdk/Mutations/index.mjs +11 -0
  356. package/dist/network/graphql/sdk/Queries/Collection/CollectionQuery.d.ts +6 -0
  357. package/dist/network/graphql/sdk/Queries/Collection/CollectionQuery.mjs +32 -0
  358. package/dist/network/graphql/sdk/Queries/Collection/CollectionRecordQuery.d.ts +6 -0
  359. package/dist/network/graphql/sdk/Queries/Collection/CollectionRecordQuery.mjs +14 -0
  360. package/dist/network/graphql/sdk/Queries/Collection/CollectionRecordsQuery.d.ts +9 -0
  361. package/dist/network/graphql/sdk/Queries/Collection/CollectionRecordsQuery.mjs +25 -0
  362. package/dist/network/graphql/sdk/Queries/Collection/CollectionsQuery.d.ts +9 -0
  363. package/dist/network/graphql/sdk/Queries/Collection/CollectionsQuery.mjs +25 -0
  364. package/dist/network/graphql/sdk/Queries/InitQuery.d.ts +14 -0
  365. package/dist/network/graphql/sdk/Queries/InitQuery.mjs +100 -0
  366. package/dist/network/graphql/sdk/Queries/Segment/SegmentQuery.d.ts +6 -0
  367. package/dist/network/graphql/sdk/Queries/Segment/SegmentQuery.mjs +46 -0
  368. package/dist/network/graphql/sdk/Queries/Segment/SegmentsQuery.d.ts +9 -0
  369. package/dist/network/graphql/sdk/Queries/Segment/SegmentsQuery.mjs +57 -0
  370. package/dist/network/graphql/sdk/Queries/index.d.ts +26 -0
  371. package/dist/network/graphql/sdk/Queries/index.mjs +19 -0
  372. package/dist/network/graphql/sdk/index.d.ts +5 -0
  373. package/dist/network/graphql/sdk/index.mjs +3 -0
  374. package/dist/network/index.d.ts +6 -0
  375. package/dist/network/index.mjs +8 -0
  376. package/dist/schema/SchemaContext.d.ts +3 -0
  377. package/dist/schema/SchemaContext.mjs +5 -0
  378. package/dist/schema/index.d.ts +4 -0
  379. package/dist/schema/index.mjs +3 -0
  380. package/dist/schema/schemaConstants.d.ts +9 -0
  381. package/dist/schema/schemaConstants.mjs +19 -0
  382. package/dist/segments/SegmentsContext.d.ts +2 -0
  383. package/dist/segments/SegmentsContext.mjs +6 -0
  384. package/dist/segments/index.d.ts +3 -0
  385. package/dist/segments/index.mjs +2 -0
  386. package/dist/server/hooks/useRscData.d.ts +14 -0
  387. package/dist/server/hooks/useRscData.mjs +16 -0
  388. package/dist/server/index.d.ts +7 -0
  389. package/dist/server/index.mjs +4 -0
  390. package/dist/server/rsc/RscContext.d.ts +13 -0
  391. package/dist/server/rsc/RscContext.mjs +5 -0
  392. package/dist/server/rsc/RscProvider.d.ts +13 -0
  393. package/dist/server/rsc/RscProvider.mjs +42 -0
  394. package/dist/style/index.d.ts +3 -0
  395. package/dist/style/index.mjs +2 -0
  396. package/dist/style/styleConstants.d.ts +105 -0
  397. package/dist/style/styleConstants.mjs +226 -0
  398. package/dist/theme/ThemeProvider.d.ts +12 -0
  399. package/dist/theme/ThemeProvider.mjs +40 -0
  400. package/dist/theme/index.d.ts +3 -0
  401. package/dist/theme/index.mjs +2 -0
  402. package/dist/types/AuthTypes.d.ts +32 -0
  403. package/dist/types/AuthTypes.mjs +0 -0
  404. package/dist/types/BuilderTypes.d.ts +20 -0
  405. package/dist/types/BuilderTypes.mjs +0 -0
  406. package/dist/types/CollectionTypes.d.ts +84 -0
  407. package/dist/types/CollectionTypes.mjs +0 -0
  408. package/dist/types/CommonTypes.d.ts +24 -0
  409. package/dist/types/CommonTypes.mjs +0 -0
  410. package/dist/types/ComponentTypes.d.ts +45 -0
  411. package/dist/types/ComponentTypes.mjs +0 -0
  412. package/dist/types/DataSourceTypes.d.ts +56 -0
  413. package/dist/types/DataSourceTypes.mjs +0 -0
  414. package/dist/types/DevToolsTypes.d.ts +44 -0
  415. package/dist/types/DevToolsTypes.mjs +0 -0
  416. package/dist/types/ElementTypes.d.ts +35 -0
  417. package/dist/types/ElementTypes.mjs +0 -0
  418. package/dist/types/EventBridgeTypes.d.ts +5 -0
  419. package/dist/types/EventBridgeTypes.mjs +0 -0
  420. package/dist/types/InteractionTypes.d.ts +101 -0
  421. package/dist/types/InteractionTypes.mjs +0 -0
  422. package/dist/types/McpTypes.d.ts +164 -0
  423. package/dist/types/McpTypes.mjs +0 -0
  424. package/dist/types/NavigationTypes.d.ts +13 -0
  425. package/dist/types/NavigationTypes.mjs +0 -0
  426. package/dist/types/PluginTypes.d.ts +121 -0
  427. package/dist/types/PluginTypes.mjs +0 -0
  428. package/dist/types/ResourceTypes.d.ts +40 -0
  429. package/dist/types/ResourceTypes.mjs +0 -0
  430. package/dist/types/SchemaTypes.d.ts +152 -0
  431. package/dist/types/SchemaTypes.mjs +0 -0
  432. package/dist/types/SdkTypes.d.ts +16 -0
  433. package/dist/types/SdkTypes.mjs +0 -0
  434. package/dist/types/SegmentTypes.d.ts +41 -0
  435. package/dist/types/SegmentTypes.mjs +0 -0
  436. package/dist/types/ServerTypes.d.ts +200 -0
  437. package/dist/types/ServerTypes.mjs +0 -0
  438. package/dist/types/SpaceTypes.d.ts +25 -0
  439. package/dist/types/SpaceTypes.mjs +0 -0
  440. package/dist/types/StateTypes.d.ts +7 -0
  441. package/dist/types/StateTypes.mjs +0 -0
  442. package/dist/types/StoreTypes.d.ts +22 -0
  443. package/dist/types/StoreTypes.mjs +0 -0
  444. package/dist/types/StyleTypes.d.ts +59 -0
  445. package/dist/types/StyleTypes.mjs +6 -0
  446. package/dist/types/ThemeTypes.d.ts +5 -0
  447. package/dist/types/ThemeTypes.mjs +0 -0
  448. package/dist/types/index.d.ts +23 -0
  449. package/dist/types/index.mjs +2 -0
  450. package/dist/websockets/RTCodec.d.ts +134 -0
  451. package/dist/websockets/RTCodec.mjs +35 -0
  452. package/dist/websockets/index.d.ts +3 -0
  453. package/dist/websockets/index.mjs +2 -0
  454. package/eslint.config.mjs +85 -0
  455. package/package.json +1063 -0
  456. package/setupTests.ts +29 -0
  457. package/tailwind.config.js +29 -0
  458. package/vite.config.ts +163 -0
package/CHANGELOG.md ADDED
@@ -0,0 +1,1015 @@
1
+ # @plitzi/sdk-shared
2
+
3
+ ## 0.30.19
4
+
5
+ ### Patch Changes
6
+
7
+ - v0.30.19
8
+ - Updated dependencies
9
+ - @plitzi/sdk-store@0.30.19
10
+
11
+ ## 0.30.18
12
+
13
+ ### Patch Changes
14
+
15
+ - v0.30.18
16
+ - Updated dependencies
17
+ - @plitzi/sdk-store@0.30.18
18
+
19
+ ## 0.30.17
20
+
21
+ ### Patch Changes
22
+
23
+ - v0.31.0
24
+ - Updated dependencies
25
+ - @plitzi/sdk-store@0.30.17
26
+
27
+ ## 0.30.16
28
+
29
+ ### Patch Changes
30
+
31
+ - v0.30.16
32
+
33
+ ## 0.30.15
34
+
35
+ ### Patch Changes
36
+
37
+ - v0.30.15
38
+
39
+ ## 0.30.14
40
+
41
+ ### Patch Changes
42
+
43
+ - v0.30.14
44
+
45
+ ## 0.30.13
46
+
47
+ ### Patch Changes
48
+
49
+ - v0.30.13
50
+
51
+ ## 0.30.12
52
+
53
+ ### Patch Changes
54
+
55
+ - v0.30.12
56
+
57
+ ## 0.30.11
58
+
59
+ ### Patch Changes
60
+
61
+ - v0.30.11
62
+
63
+ ## 0.30.10
64
+
65
+ ### Patch Changes
66
+
67
+ - v0.30.10
68
+
69
+ ## 0.30.9
70
+
71
+ ### Patch Changes
72
+
73
+ - v0.30.9
74
+
75
+ ## 0.30.8
76
+
77
+ ### Patch Changes
78
+
79
+ - v0.30.8
80
+
81
+ ## 0.30.7
82
+
83
+ ### Patch Changes
84
+
85
+ - v0.30.7
86
+
87
+ ## 0.30.6
88
+
89
+ ### Patch Changes
90
+
91
+ - v0.30.6
92
+
93
+ ## 0.30.5
94
+
95
+ ### Patch Changes
96
+
97
+ - v0.30.5
98
+
99
+ ## 0.30.4
100
+
101
+ ### Patch Changes
102
+
103
+ - v0.30.4
104
+
105
+ ## 0.30.3
106
+
107
+ ### Patch Changes
108
+
109
+ - v0.30.3
110
+
111
+ ## 0.30.2
112
+
113
+ ### Patch Changes
114
+
115
+ - v0.30.2
116
+
117
+ ## 0.30.1
118
+
119
+ ### Patch Changes
120
+
121
+ - v0.30.1
122
+
123
+ ## 0.30.0
124
+
125
+ ### Minor Changes
126
+
127
+ - v0.30.0
128
+
129
+ ## 0.29.0
130
+
131
+ ### Minor Changes
132
+
133
+ - v0.29.0
134
+
135
+ ## 0.28.14
136
+
137
+ ### Patch Changes
138
+
139
+ - v0.28.14
140
+
141
+ ## 0.28.13
142
+
143
+ ### Patch Changes
144
+
145
+ - v0.28.13
146
+
147
+ ## 0.28.12
148
+
149
+ ### Patch Changes
150
+
151
+ - v0.28.12
152
+
153
+ ## 0.28.11
154
+
155
+ ### Patch Changes
156
+
157
+ - v0.28.11
158
+
159
+ ## 0.28.10
160
+
161
+ ### Patch Changes
162
+
163
+ - v0.28.10
164
+
165
+ ## 0.28.9
166
+
167
+ ### Patch Changes
168
+
169
+ - v0.28.9
170
+
171
+ ## 0.28.8
172
+
173
+ ### Patch Changes
174
+
175
+ - v0.28.8
176
+
177
+ ## 0.28.7
178
+
179
+ ### Patch Changes
180
+
181
+ - v0.28.7
182
+
183
+ ## 0.28.6
184
+
185
+ ### Patch Changes
186
+
187
+ - v0.28.6
188
+
189
+ ## 0.28.5
190
+
191
+ ### Patch Changes
192
+
193
+ - v0.28.5
194
+
195
+ ## 0.28.4
196
+
197
+ ### Patch Changes
198
+
199
+ - v0.28.4
200
+
201
+ ## 0.28.3
202
+
203
+ ### Patch Changes
204
+
205
+ - v0.28.3
206
+
207
+ ## 0.28.2
208
+
209
+ ### Patch Changes
210
+
211
+ - v0.28.2
212
+
213
+ ## 0.28.1
214
+
215
+ ### Patch Changes
216
+
217
+ - v0.28.1
218
+
219
+ ## 0.28.0
220
+
221
+ ### Minor Changes
222
+
223
+ - v0.28.0
224
+
225
+ ## 0.27.23
226
+
227
+ ### Patch Changes
228
+
229
+ - v0.27.23
230
+
231
+ ## 0.27.22
232
+
233
+ ### Patch Changes
234
+
235
+ - v0.27.22
236
+
237
+ ## 0.27.21
238
+
239
+ ### Patch Changes
240
+
241
+ - v0.27.21
242
+
243
+ ## 0.27.20
244
+
245
+ ### Patch Changes
246
+
247
+ - v0.27.20
248
+
249
+ ## 0.27.19
250
+
251
+ ### Patch Changes
252
+
253
+ - v0.27.19
254
+
255
+ ## 0.27.18
256
+
257
+ ### Patch Changes
258
+
259
+ - v0.27.18
260
+
261
+ ## 0.27.17
262
+
263
+ ### Patch Changes
264
+
265
+ - v0.27.17
266
+
267
+ ## 0.27.16
268
+
269
+ ### Patch Changes
270
+
271
+ - v0.27.16
272
+
273
+ ## 0.27.15
274
+
275
+ ### Patch Changes
276
+
277
+ - v0.27.15
278
+
279
+ ## 0.27.14
280
+
281
+ ### Patch Changes
282
+
283
+ - v0.27.14
284
+
285
+ ## 0.27.13
286
+
287
+ ### Patch Changes
288
+
289
+ - v0.27.13
290
+
291
+ ## 0.27.12
292
+
293
+ ### Patch Changes
294
+
295
+ - v0.27.12
296
+
297
+ ## 0.27.11
298
+
299
+ ### Patch Changes
300
+
301
+ - v0.27.11
302
+
303
+ ## 0.27.10
304
+
305
+ ### Patch Changes
306
+
307
+ - v0.27.10
308
+
309
+ ## 0.27.9
310
+
311
+ ### Patch Changes
312
+
313
+ - v0.27.9
314
+
315
+ ## 0.27.8
316
+
317
+ ### Patch Changes
318
+
319
+ - v0.27.8
320
+
321
+ ## 0.27.7
322
+
323
+ ### Patch Changes
324
+
325
+ - v0.27.7
326
+
327
+ ## 0.27.6
328
+
329
+ ### Patch Changes
330
+
331
+ - v0.27.6
332
+
333
+ ## 0.27.5
334
+
335
+ ### Patch Changes
336
+
337
+ - v0.27.5
338
+
339
+ ## 0.27.4
340
+
341
+ ### Patch Changes
342
+
343
+ - v0.27.4
344
+
345
+ ## 0.27.3
346
+
347
+ ### Patch Changes
348
+
349
+ - v0.27.3
350
+
351
+ ## 0.27.2
352
+
353
+ ### Patch Changes
354
+
355
+ - v0.27.2
356
+
357
+ ## 0.27.1
358
+
359
+ ### Patch Changes
360
+
361
+ - v0.27.1
362
+
363
+ ## 0.27.0
364
+
365
+ ### Minor Changes
366
+
367
+ - v0.27.0
368
+
369
+ ## 0.26.5
370
+
371
+ ### Patch Changes
372
+
373
+ - v0.26.5
374
+
375
+ ## 0.26.4
376
+
377
+ ### Patch Changes
378
+
379
+ - v0.26.4
380
+
381
+ ## 0.26.3
382
+
383
+ ### Patch Changes
384
+
385
+ - v0.26.3
386
+
387
+ ## 0.26.2
388
+
389
+ ### Patch Changes
390
+
391
+ - v0.26.2
392
+
393
+ ## 0.26.1
394
+
395
+ ### Patch Changes
396
+
397
+ - v0.26.1
398
+
399
+ ## 0.26.0
400
+
401
+ ### Minor Changes
402
+
403
+ - v0.26.0
404
+
405
+ ## 0.25.12
406
+
407
+ ### Patch Changes
408
+
409
+ - v0.25.12
410
+
411
+ ## 0.25.11
412
+
413
+ ### Patch Changes
414
+
415
+ - v0.25.11
416
+
417
+ ## 0.25.10
418
+
419
+ ### Patch Changes
420
+
421
+ - v0.25.10
422
+
423
+ ## 0.25.9
424
+
425
+ ### Patch Changes
426
+
427
+ - v0.25.9
428
+
429
+ ## 0.25.8
430
+
431
+ ### Patch Changes
432
+
433
+ - v0.25.8
434
+
435
+ ## 0.25.7
436
+
437
+ ### Patch Changes
438
+
439
+ - v0.25.7
440
+
441
+ ## 0.25.6
442
+
443
+ ### Patch Changes
444
+
445
+ - v0.25.6
446
+
447
+ ## 0.25.5
448
+
449
+ ### Patch Changes
450
+
451
+ - v0.25.5
452
+
453
+ ## 0.25.4
454
+
455
+ ### Patch Changes
456
+
457
+ - v0.25.4
458
+
459
+ ## 0.25.3
460
+
461
+ ### Patch Changes
462
+
463
+ - v0.25.3
464
+
465
+ ## 0.25.2
466
+
467
+ ### Patch Changes
468
+
469
+ - v0.25.2
470
+
471
+ ## 0.25.1
472
+
473
+ ### Patch Changes
474
+
475
+ - v0.25.1
476
+
477
+ ## 0.25.0
478
+
479
+ ### Minor Changes
480
+
481
+ - v0.25.0
482
+
483
+ ## 0.24.12
484
+
485
+ ### Patch Changes
486
+
487
+ - v0.24.12
488
+
489
+ ## 0.24.11
490
+
491
+ ### Patch Changes
492
+
493
+ - v0.24.11
494
+
495
+ ## 0.24.10
496
+
497
+ ### Patch Changes
498
+
499
+ - v0.24.10
500
+
501
+ ## 0.24.9
502
+
503
+ ### Patch Changes
504
+
505
+ - v0.24.9
506
+
507
+ ## 0.24.8
508
+
509
+ ### Patch Changes
510
+
511
+ - v0.24.8
512
+
513
+ ## 0.24.7
514
+
515
+ ### Patch Changes
516
+
517
+ - v0.24.7
518
+
519
+ ## 0.24.6
520
+
521
+ ### Patch Changes
522
+
523
+ - v0.24.6
524
+
525
+ ## 0.24.5
526
+
527
+ ### Patch Changes
528
+
529
+ - v0.24.5
530
+
531
+ ## 0.24.4
532
+
533
+ ### Patch Changes
534
+
535
+ - v0.24.4
536
+
537
+ ## 0.24.3
538
+
539
+ ### Patch Changes
540
+
541
+ - v0.24.3
542
+
543
+ ## 0.24.2
544
+
545
+ ### Patch Changes
546
+
547
+ - v0.24.2
548
+
549
+ ## 0.24.1
550
+
551
+ ### Patch Changes
552
+
553
+ - v0.24.1
554
+
555
+ ## 0.24.0
556
+
557
+ ### Minor Changes
558
+
559
+ - v0.24.0
560
+
561
+ ## 0.23.24
562
+
563
+ ### Patch Changes
564
+
565
+ - v0.23.24
566
+
567
+ ## 0.23.23
568
+
569
+ ### Patch Changes
570
+
571
+ - v0.23.23
572
+
573
+ ## 0.23.22
574
+
575
+ ### Patch Changes
576
+
577
+ - v0.23.22
578
+
579
+ ## 0.23.21
580
+
581
+ ### Patch Changes
582
+
583
+ - v0.23.21
584
+
585
+ ## 0.23.20
586
+
587
+ ### Patch Changes
588
+
589
+ - v0.23.20
590
+
591
+ ## 0.23.19
592
+
593
+ ### Patch Changes
594
+
595
+ - v0.23.19
596
+
597
+ ## 0.23.18
598
+
599
+ ### Patch Changes
600
+
601
+ - v0.23.18
602
+
603
+ ## 0.23.17
604
+
605
+ ### Patch Changes
606
+
607
+ - v0.23.17
608
+
609
+ ## 0.23.16
610
+
611
+ ### Patch Changes
612
+
613
+ - v0.23.16
614
+
615
+ ## 0.23.15
616
+
617
+ ### Patch Changes
618
+
619
+ - v0.23.15
620
+
621
+ ## 0.23.14
622
+
623
+ ### Patch Changes
624
+
625
+ - v0.23.14
626
+
627
+ ## 0.23.13
628
+
629
+ ### Patch Changes
630
+
631
+ - v0.23.13
632
+
633
+ ## 0.23.12
634
+
635
+ ### Patch Changes
636
+
637
+ - v0.23.12
638
+
639
+ ## 0.23.11
640
+
641
+ ### Patch Changes
642
+
643
+ - v0.23.11
644
+
645
+ ## 0.23.10
646
+
647
+ ### Patch Changes
648
+
649
+ - v0.23.10
650
+
651
+ ## 0.23.9
652
+
653
+ ### Patch Changes
654
+
655
+ - v0.23.9
656
+
657
+ ## 0.23.8
658
+
659
+ ### Patch Changes
660
+
661
+ - v0.23.8
662
+
663
+ ## 0.23.7
664
+
665
+ ### Patch Changes
666
+
667
+ - v0.23.7
668
+
669
+ ## 0.23.6
670
+
671
+ ### Patch Changes
672
+
673
+ - v0.23.6
674
+
675
+ ## 0.23.5
676
+
677
+ ### Patch Changes
678
+
679
+ - v0.23.5
680
+
681
+ ## 0.23.4
682
+
683
+ ### Patch Changes
684
+
685
+ - v0.23.4
686
+
687
+ ## 0.23.3
688
+
689
+ ### Patch Changes
690
+
691
+ - v0.23.3
692
+
693
+ ## 0.23.2
694
+
695
+ ### Patch Changes
696
+
697
+ - v0.23.2
698
+
699
+ ## 0.23.1
700
+
701
+ ### Patch Changes
702
+
703
+ - v0.23.1
704
+
705
+ ## 0.23.0
706
+
707
+ ### Minor Changes
708
+
709
+ - v0.23.0
710
+
711
+ ## 0.22.20
712
+
713
+ ### Patch Changes
714
+
715
+ - v0.22.20
716
+
717
+ ## 0.22.19
718
+
719
+ ### Patch Changes
720
+
721
+ - v0.22.19
722
+
723
+ ## 0.22.18
724
+
725
+ ### Patch Changes
726
+
727
+ - v0.22.18
728
+
729
+ ## 0.22.17
730
+
731
+ ### Patch Changes
732
+
733
+ - v0.22.17
734
+
735
+ ## 0.22.16
736
+
737
+ ### Patch Changes
738
+
739
+ - v0.22.16
740
+
741
+ ## 0.22.15
742
+
743
+ ### Patch Changes
744
+
745
+ - v0.22.15
746
+
747
+ ## 0.22.14
748
+
749
+ ### Patch Changes
750
+
751
+ - v0.22.14
752
+
753
+ ## 0.22.13
754
+
755
+ ### Patch Changes
756
+
757
+ - v0.22.13
758
+
759
+ ## 0.22.12
760
+
761
+ ### Patch Changes
762
+
763
+ - v0.22.12
764
+
765
+ ## 0.22.11
766
+
767
+ ### Patch Changes
768
+
769
+ - v0.22.11
770
+
771
+ ## 0.22.10
772
+
773
+ ### Patch Changes
774
+
775
+ - v0.22.10
776
+
777
+ ## 0.22.9
778
+
779
+ ### Patch Changes
780
+
781
+ - v0.22.9
782
+
783
+ ## 0.22.8
784
+
785
+ ### Patch Changes
786
+
787
+ - v0.22.8
788
+
789
+ ## 0.22.7
790
+
791
+ ### Patch Changes
792
+
793
+ - v0.22.7
794
+
795
+ ## 0.22.6
796
+
797
+ ### Patch Changes
798
+
799
+ - v0.22.6
800
+
801
+ ## 0.22.5
802
+
803
+ ### Patch Changes
804
+
805
+ - v0.22.5
806
+
807
+ ## 0.22.4
808
+
809
+ ### Patch Changes
810
+
811
+ - v0.22.4
812
+
813
+ ## 0.22.3
814
+
815
+ ### Patch Changes
816
+
817
+ - v0.22.3
818
+
819
+ ## 0.22.2
820
+
821
+ ### Patch Changes
822
+
823
+ - v0.22.2
824
+
825
+ ## 0.22.1
826
+
827
+ ### Patch Changes
828
+
829
+ - v0.22.1
830
+
831
+ ## 0.22.0
832
+
833
+ ### Patch Changes
834
+
835
+ - v0.22.0
836
+
837
+ ## 0.22.0
838
+
839
+ ### Minor Changes
840
+
841
+ - v0.22.0-rc1
842
+
843
+ ## 0.21.1
844
+
845
+ ### Patch Changes
846
+
847
+ - v0.21.1
848
+
849
+ ## 0.21.0
850
+
851
+ ### Minor Changes
852
+
853
+ - v0.21.0
854
+
855
+ ## 0.20.24
856
+
857
+ ### Patch Changes
858
+
859
+ - v0.20.24
860
+
861
+ ## 0.20.23
862
+
863
+ ### Patch Changes
864
+
865
+ - v0.20.23
866
+
867
+ ## 0.20.22
868
+
869
+ ### Patch Changes
870
+
871
+ - v0.20.22
872
+
873
+ ## 0.20.21
874
+
875
+ ### Patch Changes
876
+
877
+ - v0.20.21
878
+
879
+ ## 0.20.20
880
+
881
+ ### Patch Changes
882
+
883
+ - v0.20.20
884
+
885
+ ## 0.20.19
886
+
887
+ ### Patch Changes
888
+
889
+ - v0.20.19
890
+
891
+ ## 0.20.18
892
+
893
+ ### Patch Changes
894
+
895
+ - v0.20.18
896
+
897
+ ## 0.20.17
898
+
899
+ ### Patch Changes
900
+
901
+ - v0.20.17
902
+
903
+ ## 0.20.16
904
+
905
+ ### Patch Changes
906
+
907
+ - v0.20.16
908
+
909
+ ## 0.20.15
910
+
911
+ ### Patch Changes
912
+
913
+ - v0.20.15
914
+
915
+ ## 0.20.14
916
+
917
+ ### Patch Changes
918
+
919
+ - v0.20.14
920
+
921
+ ## 0.20.13
922
+
923
+ ### Patch Changes
924
+
925
+ - v0.20.13
926
+
927
+ ## 0.20.12
928
+
929
+ ### Patch Changes
930
+
931
+ - v0.20.12
932
+
933
+ ## 0.20.11
934
+
935
+ ### Patch Changes
936
+
937
+ - v0.20.11
938
+
939
+ ## 0.20.10
940
+
941
+ ### Patch Changes
942
+
943
+ - v0.20.10
944
+
945
+ ## 0.20.9
946
+
947
+ ### Patch Changes
948
+
949
+ - v0.20.9
950
+
951
+ ## 0.20.8
952
+
953
+ ### Patch Changes
954
+
955
+ - v0.20.8
956
+
957
+ ## 0.20.7
958
+
959
+ ### Patch Changes
960
+
961
+ - v0.20.7
962
+
963
+ ## 0.20.6
964
+
965
+ ### Patch Changes
966
+
967
+ - v0.20.6
968
+
969
+ ## 0.20.5
970
+
971
+ ### Patch Changes
972
+
973
+ - v0.20.5
974
+
975
+ ## 0.20.4
976
+
977
+ ### Patch Changes
978
+
979
+ - v0.20.4
980
+
981
+ ## 0.20.3
982
+
983
+ ### Patch Changes
984
+
985
+ - v0.20.3
986
+
987
+ ## 0.20.2
988
+
989
+ ### Patch Changes
990
+
991
+ - v0.20.2
992
+
993
+ ## 0.20.1
994
+
995
+ ### Patch Changes
996
+
997
+ - v0.20.1
998
+
999
+ ## 0.20.0
1000
+
1001
+ ### Minor Changes
1002
+
1003
+ - v0.20.0
1004
+
1005
+ ## 0.19.3
1006
+
1007
+ ### Patch Changes
1008
+
1009
+ - v0.19.3
1010
+
1011
+ ## 0.19.2
1012
+
1013
+ ### Patch Changes
1014
+
1015
+ - v0.19.2