@plitzi/sdk-shared 0.32.25 → 0.33.0

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 (244) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/dist/auth/authFailureLink.d.ts +9 -0
  3. package/dist/auth/authFailureLink.mjs +20 -0
  4. package/dist/auth/failureChannel.d.ts +31 -0
  5. package/dist/auth/failureChannel.mjs +26 -0
  6. package/dist/auth/index.d.ts +3 -0
  7. package/dist/auth/index.mjs +3 -0
  8. package/dist/connectors/constants.d.ts +28 -0
  9. package/dist/connectors/constants.mjs +29 -0
  10. package/dist/connectors/index.d.ts +7 -0
  11. package/dist/connectors/index.mjs +5 -0
  12. package/dist/connectors/manifestTokens.d.ts +17 -0
  13. package/dist/connectors/manifestTokens.mjs +70 -0
  14. package/dist/connectors/presets.d.ts +22 -0
  15. package/dist/connectors/presets.mjs +220 -0
  16. package/dist/connectors/validateManifest.d.ts +28 -0
  17. package/dist/connectors/validateManifest.mjs +183 -0
  18. package/dist/dataSource/getBindingsDetails.mjs +1 -1
  19. package/dist/hooks/useNetwork.mjs +32 -26
  20. package/dist/hooks/usePlitziServiceContext.d.ts +1 -3
  21. package/dist/index.d.ts +2 -1
  22. package/dist/index.mjs +47 -40
  23. package/dist/navigation/index.d.ts +4 -0
  24. package/dist/navigation/index.mjs +3 -0
  25. package/dist/navigation/matchPath.d.ts +12 -0
  26. package/dist/navigation/matchPath.mjs +42 -0
  27. package/dist/navigation/routes.d.ts +28 -0
  28. package/dist/navigation/routes.mjs +124 -0
  29. package/dist/network/NetworkContext.d.ts +5 -3
  30. package/dist/network/NetworkInternalContext.d.ts +1 -2
  31. package/dist/network/graphql/builder/Mutations/Space/connectors/SpaceAddConnectorMutation.d.ts +8 -0
  32. package/dist/network/graphql/builder/Mutations/Space/connectors/SpaceAddConnectorMutation.mjs +16 -0
  33. package/dist/network/graphql/builder/Mutations/Space/connectors/SpaceRemoveConnectorMutation.d.ts +8 -0
  34. package/dist/network/graphql/builder/Mutations/Space/connectors/SpaceRemoveConnectorMutation.mjs +12 -0
  35. package/dist/network/graphql/builder/Mutations/Space/connectors/SpaceUpdateConnectorMutation.d.ts +8 -0
  36. package/dist/network/graphql/builder/Mutations/Space/connectors/SpaceUpdateConnectorMutation.mjs +16 -0
  37. package/dist/network/graphql/builder/Mutations/index.d.ts +9 -18
  38. package/dist/network/graphql/builder/Mutations/index.mjs +150 -156
  39. package/dist/network/graphql/builder/Queries/InitQuery.d.ts +1 -4
  40. package/dist/network/graphql/builder/Queries/InitQuery.mjs +2 -33
  41. package/dist/network/graphql/builder/Queries/Space/SpaceConnectorsQuery.d.ts +9 -0
  42. package/dist/network/graphql/builder/Queries/Space/SpaceConnectorsQuery.mjs +25 -0
  43. package/dist/network/graphql/builder/Queries/Space/SpaceDeploymentsQuery.mjs +1 -0
  44. package/dist/network/graphql/builder/Queries/index.d.ts +3 -12
  45. package/dist/network/graphql/builder/Queries/index.mjs +22 -28
  46. package/dist/network/graphql/builder/Subscriptions/SpaceEventSubscription.d.ts +19 -0
  47. package/dist/network/graphql/builder/Subscriptions/SpaceEventSubscription.mjs +12 -0
  48. package/dist/network/graphql/builder/Subscriptions/index.d.ts +4 -163
  49. package/dist/network/graphql/builder/Subscriptions/index.mjs +3 -109
  50. package/dist/network/graphql/builder/index.d.ts +2 -2
  51. package/dist/network/graphql/builder/index.mjs +1 -1
  52. package/dist/network/graphql/index.mjs +1 -1
  53. package/dist/network/graphql/sdk/Mutations/index.d.ts +2 -13
  54. package/dist/network/graphql/sdk/Mutations/index.mjs +2 -9
  55. package/dist/network/graphql/sdk/Queries/InitQuery.d.ts +1 -4
  56. package/dist/network/graphql/sdk/Queries/InitQuery.mjs +1 -13
  57. package/dist/network/graphql/sdk/Queries/index.d.ts +0 -12
  58. package/dist/network/graphql/sdk/Queries/index.mjs +8 -16
  59. package/dist/network/index.d.ts +3 -1
  60. package/dist/network/index.mjs +7 -6
  61. package/dist/network/spaceEvents.d.ts +405 -0
  62. package/dist/network/spaceEvents.mjs +244 -0
  63. package/dist/server/index.d.ts +5 -5
  64. package/dist/server/index.mjs +4 -3
  65. package/dist/server/rsc/refreshRsc.d.ts +16 -0
  66. package/dist/server/rsc/refreshRsc.mjs +16 -0
  67. package/dist/server/rsc/useRscRefresh.d.ts +2 -0
  68. package/dist/server/rsc/useRscRefresh.mjs +10 -0
  69. package/dist/server/rsc/useRscSync.d.ts +11 -0
  70. package/dist/server/rsc/useRscSync.mjs +20 -0
  71. package/dist/store/index.d.ts +54 -53
  72. package/dist/store/index.mjs +4 -3
  73. package/dist/store/renderSettings.d.ts +26 -0
  74. package/dist/store/renderSettings.mjs +39 -0
  75. package/dist/types/AuthTypes.d.ts +33 -3
  76. package/dist/types/BuilderTypes.d.ts +15 -0
  77. package/dist/types/CollectionTypes.d.ts +3 -49
  78. package/dist/types/CommonTypes.d.ts +17 -2
  79. package/dist/types/ConnectorTypes.d.ts +147 -0
  80. package/dist/types/ConnectorTypes.mjs +0 -0
  81. package/dist/types/DevToolsTypes.d.ts +18 -3
  82. package/dist/types/InteractionTypes.d.ts +1 -1
  83. package/dist/types/McpTypes/index.d.ts +0 -4
  84. package/dist/types/NavigationTypes.d.ts +0 -10
  85. package/dist/types/SchemaTypes.d.ts +27 -5
  86. package/dist/types/SdkTypes.d.ts +19 -2
  87. package/dist/types/ServerTypes.d.ts +296 -103
  88. package/dist/types/SpaceTypes.d.ts +17 -1
  89. package/dist/types/StoreTypes.d.ts +36 -0
  90. package/dist/types/index.d.ts +1 -0
  91. package/dist/websockets/RTCodec.d.ts +6 -0
  92. package/package.json +108 -309
  93. package/vite.config.ts +21 -1
  94. package/dist/collections/CollectionContext.d.ts +0 -2
  95. package/dist/collections/CollectionContext.mjs +0 -5
  96. package/dist/collections/index.d.ts +0 -3
  97. package/dist/collections/index.mjs +0 -2
  98. package/dist/network/graphql/builder/Mutations/Collection/CollectionAddMutation.d.ts +0 -4
  99. package/dist/network/graphql/builder/Mutations/Collection/CollectionAddMutation.mjs +0 -24
  100. package/dist/network/graphql/builder/Mutations/Collection/CollectionAddRecordMutation.d.ts +0 -4
  101. package/dist/network/graphql/builder/Mutations/Collection/CollectionAddRecordMutation.mjs +0 -16
  102. package/dist/network/graphql/builder/Mutations/Collection/CollectionRemoveMutation.d.ts +0 -4
  103. package/dist/network/graphql/builder/Mutations/Collection/CollectionRemoveMutation.mjs +0 -17
  104. package/dist/network/graphql/builder/Mutations/Collection/CollectionRemoveRecordMutation.d.ts +0 -4
  105. package/dist/network/graphql/builder/Mutations/Collection/CollectionRemoveRecordMutation.mjs +0 -14
  106. package/dist/network/graphql/builder/Mutations/Collection/CollectionUpdateMutation.d.ts +0 -4
  107. package/dist/network/graphql/builder/Mutations/Collection/CollectionUpdateMutation.mjs +0 -32
  108. package/dist/network/graphql/builder/Mutations/Collection/CollectionUpdateRecordMutation.d.ts +0 -4
  109. package/dist/network/graphql/builder/Mutations/Collection/CollectionUpdateRecordMutation.mjs +0 -16
  110. package/dist/network/graphql/builder/Queries/Collection/CollectionQuery.d.ts +0 -6
  111. package/dist/network/graphql/builder/Queries/Collection/CollectionQuery.mjs +0 -35
  112. package/dist/network/graphql/builder/Queries/Collection/CollectionRecordQuery.d.ts +0 -6
  113. package/dist/network/graphql/builder/Queries/Collection/CollectionRecordQuery.mjs +0 -16
  114. package/dist/network/graphql/builder/Queries/Collection/CollectionRecordsQuery.d.ts +0 -9
  115. package/dist/network/graphql/builder/Queries/Collection/CollectionRecordsQuery.mjs +0 -27
  116. package/dist/network/graphql/builder/Queries/Collection/CollectionsQuery.d.ts +0 -9
  117. package/dist/network/graphql/builder/Queries/Collection/CollectionsQuery.mjs +0 -37
  118. package/dist/network/graphql/builder/Subscriptions/Collaborator/CollaboratorConnectedSubscription.d.ts +0 -11
  119. package/dist/network/graphql/builder/Subscriptions/Collaborator/CollaboratorConnectedSubscription.mjs +0 -17
  120. package/dist/network/graphql/builder/Subscriptions/Collaborator/CollaboratorDisconnectedSubscription.d.ts +0 -11
  121. package/dist/network/graphql/builder/Subscriptions/Collaborator/CollaboratorDisconnectedSubscription.mjs +0 -17
  122. package/dist/network/graphql/builder/Subscriptions/Segment/SegmentAddTemplateSubscription.d.ts +0 -2
  123. package/dist/network/graphql/builder/Subscriptions/Segment/SegmentAddTemplateSubscription.mjs +0 -41
  124. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentAddElementSubscription.d.ts +0 -11
  125. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentAddElementSubscription.mjs +0 -40
  126. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentCloneElementSubscription.d.ts +0 -10
  127. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentCloneElementSubscription.mjs +0 -30
  128. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentMoveElementSubscription.d.ts +0 -10
  129. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentMoveElementSubscription.mjs +0 -15
  130. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentRemoveElementSubscription.d.ts +0 -6
  131. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentRemoveElementSubscription.mjs +0 -12
  132. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentUpdateElementSubscription.d.ts +0 -11
  133. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentUpdateElementSubscription.mjs +0 -27
  134. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentUpdateElementsSubscription.d.ts +0 -7
  135. package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentUpdateElementsSubscription.mjs +0 -27
  136. package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceAddVariableSubscription.d.ts +0 -7
  137. package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceAddVariableSubscription.mjs +0 -21
  138. package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceRemoveVariableSubscription.d.ts +0 -7
  139. package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceRemoveVariableSubscription.mjs +0 -14
  140. package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceUpdateVariableSubscription.d.ts +0 -7
  141. package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceUpdateVariableSubscription.mjs +0 -21
  142. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleAddSelectorVariableSubscription.d.ts +0 -11
  143. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleAddSelectorVariableSubscription.mjs +0 -16
  144. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleRemoveSelectorVariableSubscription.d.ts +0 -10
  145. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleRemoveSelectorVariableSubscription.mjs +0 -15
  146. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleUpdateSelectorVariableSubscription.d.ts +0 -11
  147. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleUpdateSelectorVariableSubscription.mjs +0 -16
  148. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleAddSelectorSubscription.d.ts +0 -17
  149. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleAddSelectorSubscription.mjs +0 -17
  150. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleRemoveSelectorSubscription.d.ts +0 -8
  151. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleRemoveSelectorSubscription.mjs +0 -13
  152. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleRemoveSelectorsSubscription.d.ts +0 -8
  153. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleRemoveSelectorsSubscription.mjs +0 -13
  154. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleUpdateSelectorSubscription.d.ts +0 -16
  155. package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleUpdateSelectorSubscription.mjs +0 -17
  156. package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleAddVariableSubscription.d.ts +0 -9
  157. package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleAddVariableSubscription.mjs +0 -14
  158. package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleRemoveVariableSubscription.d.ts +0 -8
  159. package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleRemoveVariableSubscription.mjs +0 -13
  160. package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleUpdateVariableSubscription.d.ts +0 -9
  161. package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleUpdateVariableSubscription.mjs +0 -14
  162. package/dist/network/graphql/builder/Subscriptions/Space/SpaceAddTemplateSubscription.d.ts +0 -11
  163. package/dist/network/graphql/builder/Subscriptions/Space/SpaceAddTemplateSubscription.mjs +0 -40
  164. package/dist/network/graphql/builder/Subscriptions/Space/SpaceUpdateSettingsSubscription.d.ts +0 -6
  165. package/dist/network/graphql/builder/Subscriptions/Space/SpaceUpdateSettingsSubscription.mjs +0 -12
  166. package/dist/network/graphql/builder/Subscriptions/Space/SpaceUpdatedSubscription.d.ts +0 -6
  167. package/dist/network/graphql/builder/Subscriptions/Space/SpaceUpdatedSubscription.mjs +0 -29
  168. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceAddElementSubscription.d.ts +0 -10
  169. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceAddElementSubscription.mjs +0 -39
  170. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceCloneElementSubscription.d.ts +0 -9
  171. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceCloneElementSubscription.mjs +0 -29
  172. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceMoveElementSubscription.d.ts +0 -9
  173. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceMoveElementSubscription.mjs +0 -14
  174. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceRemoveElementSubscription.d.ts +0 -5
  175. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceRemoveElementSubscription.mjs +0 -11
  176. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceUpdateElementSubscription.d.ts +0 -6
  177. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceUpdateElementSubscription.mjs +0 -26
  178. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceUpdateElementsSubscription.d.ts +0 -6
  179. package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceUpdateElementsSubscription.mjs +0 -26
  180. package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceAddPageFolderSubscription.d.ts +0 -6
  181. package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceAddPageFolderSubscription.mjs +0 -16
  182. package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceRemovePageFolderSubscription.d.ts +0 -5
  183. package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceRemovePageFolderSubscription.mjs +0 -11
  184. package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceUpdatePageFolderSubscription.d.ts +0 -6
  185. package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceUpdatePageFolderSubscription.mjs +0 -16
  186. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceAddPageSubscription.d.ts +0 -6
  187. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceAddPageSubscription.mjs +0 -26
  188. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceHomePageSubscription.d.ts +0 -6
  189. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceHomePageSubscription.mjs +0 -26
  190. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceRemovePageSubscription.d.ts +0 -5
  191. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceRemovePageSubscription.mjs +0 -11
  192. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceUpdatePageSubscription.d.ts +0 -6
  193. package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceUpdatePageSubscription.mjs +0 -26
  194. package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceAddVariableSubscription.d.ts +0 -6
  195. package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceAddVariableSubscription.mjs +0 -20
  196. package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceRemoveVariableSubscription.d.ts +0 -5
  197. package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceRemoveVariableSubscription.mjs +0 -11
  198. package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceUpdateVariableSubscription.d.ts +0 -6
  199. package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceUpdateVariableSubscription.mjs +0 -20
  200. package/dist/network/graphql/builder/Subscriptions/Style/StyleUpdateSettingsSubscription.d.ts +0 -6
  201. package/dist/network/graphql/builder/Subscriptions/Style/StyleUpdateSettingsSubscription.mjs +0 -12
  202. package/dist/network/graphql/builder/Subscriptions/Style/StyleUpdatedSubscription.d.ts +0 -4
  203. package/dist/network/graphql/builder/Subscriptions/Style/StyleUpdatedSubscription.mjs +0 -13
  204. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleAddSelectorSubscription.d.ts +0 -16
  205. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleAddSelectorSubscription.mjs +0 -16
  206. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleRemoveSelectorSubscription.d.ts +0 -7
  207. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleRemoveSelectorSubscription.mjs +0 -12
  208. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleRemoveSelectorsSubscription.d.ts +0 -7
  209. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleRemoveSelectorsSubscription.mjs +0 -12
  210. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleUpdateSelectorSubscription.d.ts +0 -15
  211. package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleUpdateSelectorSubscription.mjs +0 -16
  212. package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleAddSelectorVariableSubscription.d.ts +0 -10
  213. package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleAddSelectorVariableSubscription.mjs +0 -15
  214. package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleRemoveSelectorVariableSubscription.d.ts +0 -9
  215. package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleRemoveSelectorVariableSubscription.mjs +0 -14
  216. package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleUpdateSelectorVariableSubscription.d.ts +0 -10
  217. package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleUpdateSelectorVariableSubscription.mjs +0 -15
  218. package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleAddVariableSubscription.d.ts +0 -8
  219. package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleAddVariableSubscription.mjs +0 -13
  220. package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleRemoveVariableSubscription.d.ts +0 -7
  221. package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleRemoveVariableSubscription.mjs +0 -12
  222. package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleUpdateVariableSubscription.d.ts +0 -8
  223. package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleUpdateVariableSubscription.mjs +0 -13
  224. package/dist/network/graphql/sdk/Mutations/Collection/CollectionAddMutation.d.ts +0 -2
  225. package/dist/network/graphql/sdk/Mutations/Collection/CollectionAddRecordMutation.d.ts +0 -4
  226. package/dist/network/graphql/sdk/Mutations/Collection/CollectionAddRecordMutation.mjs +0 -16
  227. package/dist/network/graphql/sdk/Mutations/Collection/CollectionRemoveMutation.d.ts +0 -2
  228. package/dist/network/graphql/sdk/Mutations/Collection/CollectionRemoveRecordMutation.d.ts +0 -4
  229. package/dist/network/graphql/sdk/Mutations/Collection/CollectionRemoveRecordMutation.mjs +0 -14
  230. package/dist/network/graphql/sdk/Mutations/Collection/CollectionUpdateMutation.d.ts +0 -2
  231. package/dist/network/graphql/sdk/Mutations/Collection/CollectionUpdateRecordMutation.d.ts +0 -4
  232. package/dist/network/graphql/sdk/Mutations/Collection/CollectionUpdateRecordMutation.mjs +0 -16
  233. package/dist/network/graphql/sdk/Queries/Collection/CollectionQuery.d.ts +0 -6
  234. package/dist/network/graphql/sdk/Queries/Collection/CollectionQuery.mjs +0 -32
  235. package/dist/network/graphql/sdk/Queries/Collection/CollectionRecordQuery.d.ts +0 -6
  236. package/dist/network/graphql/sdk/Queries/Collection/CollectionRecordQuery.mjs +0 -14
  237. package/dist/network/graphql/sdk/Queries/Collection/CollectionRecordsQuery.d.ts +0 -9
  238. package/dist/network/graphql/sdk/Queries/Collection/CollectionRecordsQuery.mjs +0 -25
  239. package/dist/network/graphql/sdk/Queries/Collection/CollectionsQuery.d.ts +0 -9
  240. package/dist/network/graphql/sdk/Queries/Collection/CollectionsQuery.mjs +0 -25
  241. package/dist/server/rsc/RscContext.d.ts +0 -13
  242. package/dist/server/rsc/RscContext.mjs +0 -5
  243. package/dist/server/rsc/RscProvider.d.ts +0 -13
  244. package/dist/server/rsc/RscProvider.mjs +0 -42
@@ -1,21 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceAddVariableSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SegmentSpaceAddVariable(environment: $environment) {
6
- contextId
7
- variable {
8
- name
9
- category
10
- type
11
- value
12
- subValues {
13
- when
14
- value
15
- }
16
- }
17
- }
18
- }
19
- `;
20
- //#endregion
21
- export { t as default };
@@ -1,7 +0,0 @@
1
- import { SchemaVariable } from '../../../../../../../types';
2
- export type TSegmentSpaceRemoveVariableSubscription = {
3
- contextId: string;
4
- variable: SchemaVariable;
5
- };
6
- declare const SegmentSpaceRemoveVariableSubscription: import('graphql').DocumentNode;
7
- export default SegmentSpaceRemoveVariableSubscription;
@@ -1,14 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceRemoveVariableSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SegmentSpaceRemoveVariable(environment: $environment) {
6
- contextId
7
- variable {
8
- name
9
- }
10
- }
11
- }
12
- `;
13
- //#endregion
14
- export { t as default };
@@ -1,7 +0,0 @@
1
- import { SchemaVariable } from '../../../../../../../types';
2
- export type TSegmentSpaceUpdateVariableSubscription = {
3
- contextId: string;
4
- variable: SchemaVariable;
5
- };
6
- declare const SegmentSpaceUpdateVariableSubscription: import('graphql').DocumentNode;
7
- export default SegmentSpaceUpdateVariableSubscription;
@@ -1,21 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceUpdateVariableSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SegmentSpaceUpdateVariable(environment: $environment) {
6
- contextId
7
- variable {
8
- name
9
- category
10
- type
11
- value
12
- subValues {
13
- when
14
- value
15
- }
16
- }
17
- }
18
- }
19
- `;
20
- //#endregion
21
- export { t as default };
@@ -1,11 +0,0 @@
1
- import { DisplayMode, StyleVariableCategory, StyleVariableValue } from '../../../../../../../types';
2
- export type TSegmentStyleAddSelectorVariableSubscription = {
3
- contextId: string;
4
- displayMode: DisplayMode;
5
- selector: string;
6
- category: StyleVariableCategory;
7
- name: string;
8
- value: StyleVariableValue;
9
- };
10
- declare const SegmentStyleAddSelectorVariableSubscription: import('graphql').DocumentNode;
11
- export default SegmentStyleAddSelectorVariableSubscription;
@@ -1,16 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleAddSelectorVariableSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SegmentStyleAddSelectorVariable(environment: $environment) {
6
- contextId
7
- displayMode
8
- selector
9
- category
10
- name
11
- value
12
- }
13
- }
14
- `;
15
- //#endregion
16
- export { t as default };
@@ -1,10 +0,0 @@
1
- import { DisplayMode, StyleVariableCategory } from '../../../../../../../types';
2
- export type TSegmentStyleRemoveSelectorVariableSubscription = {
3
- contextId: string;
4
- displayMode: DisplayMode;
5
- selector: string;
6
- category: StyleVariableCategory;
7
- name: string;
8
- };
9
- declare const SegmentStyleRemoveSelectorVariableSubscription: import('graphql').DocumentNode;
10
- export default SegmentStyleRemoveSelectorVariableSubscription;
@@ -1,15 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleRemoveSelectorVariableSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SegmentStyleRemoveSelectorVariable(environment: $environment) {
6
- contextId
7
- displayMode
8
- selector
9
- category
10
- name
11
- }
12
- }
13
- `;
14
- //#endregion
15
- export { t as default };
@@ -1,11 +0,0 @@
1
- import { DisplayMode, StyleVariableCategory, StyleVariableValue } from '../../../../../../../types';
2
- export type TSegmentStyleUpdateSelectorVariableSubscription = {
3
- contextId: string;
4
- displayMode: DisplayMode;
5
- selector: string;
6
- category: StyleVariableCategory;
7
- name: string;
8
- value: StyleVariableValue;
9
- };
10
- declare const SegmentStyleUpdateSelectorVariableSubscription: import('graphql').DocumentNode;
11
- export default SegmentStyleUpdateSelectorVariableSubscription;
@@ -1,16 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleUpdateSelectorVariableSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SegmentStyleUpdateSelectorVariable(environment: $environment) {
6
- contextId
7
- displayMode
8
- selector
9
- category
10
- name
11
- value
12
- }
13
- }
14
- `;
15
- //#endregion
16
- export { t as default };
@@ -1,17 +0,0 @@
1
- import { DisplayMode, StyleCategory, StyleItem, StyleState, TagType } from '../../../../../../../types';
2
- export type TSegmentStyleAddSelectorSubscription = {
3
- contextId: string;
4
- displayMode: DisplayMode;
5
- selector: string;
6
- type: TagType;
7
- path?: StyleCategory;
8
- style?: StyleItem['attributes'];
9
- params: {
10
- componentType?: string;
11
- styleSelector?: string;
12
- styleState?: StyleState;
13
- styleVariant?: string;
14
- };
15
- };
16
- declare const SegmentStyleAddSelectorSubscription: import('graphql').DocumentNode;
17
- export default SegmentStyleAddSelectorSubscription;
@@ -1,17 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleAddSelectorSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SegmentStyleAddSelector(environment: $environment) {
6
- contextId
7
- displayMode
8
- selector
9
- type
10
- path
11
- style
12
- params
13
- }
14
- }
15
- `;
16
- //#endregion
17
- export { t as default };
@@ -1,8 +0,0 @@
1
- import { DisplayMode } from '../../../../../../../types';
2
- export type TSegmentStyleRemoveSelectorSubscription = {
3
- contextId: string;
4
- displayMode: DisplayMode;
5
- selector: string;
6
- };
7
- declare const SegmentStyleRemoveSelectorSubscription: import('graphql').DocumentNode;
8
- export default SegmentStyleRemoveSelectorSubscription;
@@ -1,13 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleRemoveSelectorSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SegmentStyleRemoveSelector(environment: $environment) {
6
- selector
7
- displayMode
8
- contextId
9
- }
10
- }
11
- `;
12
- //#endregion
13
- export { t as default };
@@ -1,8 +0,0 @@
1
- import { DisplayMode } from '../../../../../../../types';
2
- export type TSegmentStyleRemoveSelectorsSubscription = {
3
- contextId: string;
4
- displayMode: DisplayMode;
5
- selectors: string[];
6
- };
7
- declare const SegmentStyleRemoveSelectorsSubscription: import('graphql').DocumentNode;
8
- export default SegmentStyleRemoveSelectorsSubscription;
@@ -1,13 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleRemoveSelectorsSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SegmentStyleRemoveSelectors(environment: $environment) {
6
- selectors
7
- displayMode
8
- contextId
9
- }
10
- }
11
- `;
12
- //#endregion
13
- export { t as default };
@@ -1,16 +0,0 @@
1
- import { DisplayMode, StyleCategory, StyleItem, StyleState } from '../../../../../../../types';
2
- export type TSegmentStyleUpdateSelectorSubscription = {
3
- contextId: string;
4
- displayMode: DisplayMode;
5
- selector: string;
6
- path?: StyleCategory;
7
- style?: StyleItem['attributes'];
8
- params: {
9
- componentType?: string;
10
- styleSelector: string;
11
- styleState?: StyleState;
12
- styleVariant?: string;
13
- };
14
- };
15
- declare const SegmentStyleUpdateSelectorSubscription: import('graphql').DocumentNode;
16
- export default SegmentStyleUpdateSelectorSubscription;
@@ -1,17 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleUpdateSelectorSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SegmentStyleUpdateSelector(environment: $environment) {
6
- contextId
7
- displayMode
8
- selector
9
- type
10
- path
11
- style
12
- params
13
- }
14
- }
15
- `;
16
- //#endregion
17
- export { t as default };
@@ -1,9 +0,0 @@
1
- import { StyleVariableCategory, StyleVariableValue } from '../../../../../../../types';
2
- export type TSegmentStyleAddVariableSubscription = {
3
- contextId: string;
4
- category: StyleVariableCategory;
5
- name: string;
6
- value: StyleVariableValue;
7
- };
8
- declare const SegmentStyleAddVariableSubscription: import('graphql').DocumentNode;
9
- export default SegmentStyleAddVariableSubscription;
@@ -1,14 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleAddVariableSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SegmentStyleAddVariable(environment: $environment) {
6
- contextId
7
- category
8
- name
9
- value
10
- }
11
- }
12
- `;
13
- //#endregion
14
- export { t as default };
@@ -1,8 +0,0 @@
1
- import { StyleVariableCategory } from '../../../../../../../types';
2
- export type TSegmentStyleRemoveVariableSubscription = {
3
- contextId: string;
4
- category: StyleVariableCategory;
5
- name: string;
6
- };
7
- declare const SegmentStyleRemoveVariableSubscription: import('graphql').DocumentNode;
8
- export default SegmentStyleRemoveVariableSubscription;
@@ -1,13 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleRemoveVariableSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SegmentStyleRemoveVariable(environment: $environment) {
6
- contextId
7
- category
8
- name
9
- }
10
- }
11
- `;
12
- //#endregion
13
- export { t as default };
@@ -1,9 +0,0 @@
1
- import { StyleVariableCategory, StyleVariableValue } from '../../../../../../../types';
2
- export type TSegmentStyleUpdateVariableSubscription = {
3
- contextId: string;
4
- category: StyleVariableCategory;
5
- name: string;
6
- value: StyleVariableValue;
7
- };
8
- declare const SegmentStyleUpdateVariableSubscription: import('graphql').DocumentNode;
9
- export default SegmentStyleUpdateVariableSubscription;
@@ -1,14 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleUpdateVariableSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SegmentStyleUpdateVariable(environment: $environment) {
6
- contextId
7
- category
8
- name
9
- value
10
- }
11
- }
12
- `;
13
- //#endregion
14
- export { t as default };
@@ -1,11 +0,0 @@
1
- import { DropPosition, Element, SchemaVariable, Style } from '../../../../../types';
2
- export type TSpaceAddTemplateSubscription = {
3
- element: Element;
4
- style: Style;
5
- to: string;
6
- dropPosition: DropPosition;
7
- initialItems?: Element[];
8
- variables?: SchemaVariable[];
9
- };
10
- declare const SpaceAddTemplateSubscription: import('graphql').DocumentNode;
11
- export default SpaceAddTemplateSubscription;
@@ -1,40 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Space/SpaceAddTemplateSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SpaceAddTemplate(environment: $environment) {
6
- element {
7
- id
8
- idRef
9
- definition {
10
- label
11
- type
12
- initialState
13
- styleSelectors
14
- bindings
15
- interactions
16
- parentId
17
- rootId
18
- items
19
- }
20
- attributes
21
- }
22
- styles
23
- dropPosition
24
- to
25
- initialItems
26
- variables {
27
- name
28
- category
29
- type
30
- value
31
- subValues {
32
- value
33
- when
34
- }
35
- }
36
- }
37
- }
38
- `;
39
- //#endregion
40
- export { t as default };
@@ -1,6 +0,0 @@
1
- export type TSpaceUpdateSettingsSubscription = {
2
- path: string;
3
- value: number | string | boolean;
4
- };
5
- declare const SpaceUpdateSettingsSubscription: import('graphql').DocumentNode;
6
- export default SpaceUpdateSettingsSubscription;
@@ -1,12 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Space/SpaceUpdateSettingsSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SpaceUpdateSettings(environment: $environment) {
6
- value
7
- path
8
- }
9
- }
10
- `;
11
- //#endregion
12
- export { t as default };
@@ -1,6 +0,0 @@
1
- import { SchemaRaw } from '../../../../../types';
2
- export type TSpaceUpdatedSubscription = {
3
- schema: SchemaRaw;
4
- };
5
- declare const SpaceUpdatedSubscription: import('graphql').DocumentNode;
6
- export default SpaceUpdatedSubscription;
@@ -1,29 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Space/SpaceUpdatedSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SpaceUpdated(environment: $environment) {
6
- schema {
7
- flat {
8
- id
9
- idRef
10
- definition {
11
- label
12
- type
13
- initialState
14
- styleSelectors
15
- bindings
16
- interactions
17
- parentId
18
- rootId
19
- items
20
- }
21
- attributes
22
- }
23
- pages
24
- }
25
- }
26
- }
27
- `;
28
- //#endregion
29
- export { t as default };
@@ -1,10 +0,0 @@
1
- import { SchemaVariable, DropPosition, Element } from '../../../../../../types';
2
- export type TSpaceAddElementSubscription = {
3
- element: Element;
4
- dropPosition: DropPosition;
5
- to: string;
6
- initialItems?: Element[];
7
- variables?: SchemaVariable[];
8
- };
9
- declare const SpaceAddElementSubscription: import('graphql').DocumentNode;
10
- export default SpaceAddElementSubscription;
@@ -1,39 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Space/elements/SpaceAddElementSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SpaceAddElement(environment: $environment) {
6
- element {
7
- id
8
- idRef
9
- definition {
10
- label
11
- type
12
- initialState
13
- styleSelectors
14
- bindings
15
- interactions
16
- parentId
17
- rootId
18
- items
19
- }
20
- attributes
21
- }
22
- dropPosition
23
- to
24
- initialItems
25
- variables {
26
- name
27
- category
28
- type
29
- value
30
- subValues {
31
- value
32
- when
33
- }
34
- }
35
- }
36
- }
37
- `;
38
- //#endregion
39
- export { t as default };
@@ -1,9 +0,0 @@
1
- import { DropPosition, Element } from '../../../../../../types';
2
- export type TSpaceCloneElementSubscription = {
3
- to: string;
4
- element: Element;
5
- dropPosition: DropPosition;
6
- initialItems: Element[];
7
- };
8
- declare const SpaceCloneElementSubscription: import('graphql').DocumentNode;
9
- export default SpaceCloneElementSubscription;
@@ -1,29 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Space/elements/SpaceCloneElementSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SpaceCloneElement(environment: $environment) {
6
- element {
7
- id
8
- idRef
9
- definition {
10
- label
11
- type
12
- initialState
13
- styleSelectors
14
- bindings
15
- interactions
16
- parentId
17
- rootId
18
- items
19
- }
20
- attributes
21
- }
22
- dropPosition
23
- to
24
- initialItems
25
- }
26
- }
27
- `;
28
- //#endregion
29
- export { t as default };
@@ -1,9 +0,0 @@
1
- import { DropPosition } from '../../../../../../types';
2
- export type TSpaceMoveElementSubscription = {
3
- from: string;
4
- to: string;
5
- elementId: string;
6
- dropPosition: DropPosition;
7
- };
8
- declare const SpaceMoveElementSubscription: import('graphql').DocumentNode;
9
- export default SpaceMoveElementSubscription;
@@ -1,14 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Space/elements/SpaceMoveElementSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SpaceMoveElement(environment: $environment) {
6
- elementId
7
- from
8
- to
9
- dropPosition
10
- }
11
- }
12
- `;
13
- //#endregion
14
- export { t as default };
@@ -1,5 +0,0 @@
1
- export type TSpaceRemoveElementSubscription = {
2
- elementId: string;
3
- };
4
- declare const SpaceRemoveElementSubscription: import('graphql').DocumentNode;
5
- export default SpaceRemoveElementSubscription;
@@ -1,11 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Space/elements/SpaceRemoveElementSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SpaceRemoveElement(environment: $environment) {
6
- elementId
7
- }
8
- }
9
- `;
10
- //#endregion
11
- export { t as default };
@@ -1,6 +0,0 @@
1
- import { Element } from '../../../../../../types';
2
- export type TSpaceUpdateElementSubscription = {
3
- element: Element;
4
- };
5
- declare const SpaceUpdateElementSubscription: import('graphql').DocumentNode;
6
- export default SpaceUpdateElementSubscription;
@@ -1,26 +0,0 @@
1
- import { gql as e } from "@apollo/client/core";
2
- //#region src/network/graphql/builder/Subscriptions/Space/elements/SpaceUpdateElementSubscription.ts
3
- var t = e`
4
- subscription ($environment: String!) {
5
- SpaceUpdateElement(environment: $environment) {
6
- element {
7
- id
8
- idRef
9
- definition {
10
- label
11
- type
12
- initialState
13
- styleSelectors
14
- bindings
15
- interactions
16
- parentId
17
- rootId
18
- items
19
- }
20
- attributes
21
- }
22
- }
23
- }
24
- `;
25
- //#endregion
26
- export { t as default };