@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.
- package/CHANGELOG.md +6 -0
- package/dist/auth/authFailureLink.d.ts +9 -0
- package/dist/auth/authFailureLink.mjs +20 -0
- package/dist/auth/failureChannel.d.ts +31 -0
- package/dist/auth/failureChannel.mjs +26 -0
- package/dist/auth/index.d.ts +3 -0
- package/dist/auth/index.mjs +3 -0
- package/dist/connectors/constants.d.ts +28 -0
- package/dist/connectors/constants.mjs +29 -0
- package/dist/connectors/index.d.ts +7 -0
- package/dist/connectors/index.mjs +5 -0
- package/dist/connectors/manifestTokens.d.ts +17 -0
- package/dist/connectors/manifestTokens.mjs +70 -0
- package/dist/connectors/presets.d.ts +22 -0
- package/dist/connectors/presets.mjs +220 -0
- package/dist/connectors/validateManifest.d.ts +28 -0
- package/dist/connectors/validateManifest.mjs +183 -0
- package/dist/dataSource/getBindingsDetails.mjs +1 -1
- package/dist/hooks/useNetwork.mjs +32 -26
- package/dist/hooks/usePlitziServiceContext.d.ts +1 -3
- package/dist/index.d.ts +2 -1
- package/dist/index.mjs +47 -40
- package/dist/navigation/index.d.ts +4 -0
- package/dist/navigation/index.mjs +3 -0
- package/dist/navigation/matchPath.d.ts +12 -0
- package/dist/navigation/matchPath.mjs +42 -0
- package/dist/navigation/routes.d.ts +28 -0
- package/dist/navigation/routes.mjs +124 -0
- package/dist/network/NetworkContext.d.ts +5 -3
- package/dist/network/NetworkInternalContext.d.ts +1 -2
- package/dist/network/graphql/builder/Mutations/Space/connectors/SpaceAddConnectorMutation.d.ts +8 -0
- package/dist/network/graphql/builder/Mutations/Space/connectors/SpaceAddConnectorMutation.mjs +16 -0
- package/dist/network/graphql/builder/Mutations/Space/connectors/SpaceRemoveConnectorMutation.d.ts +8 -0
- package/dist/network/graphql/builder/Mutations/Space/connectors/SpaceRemoveConnectorMutation.mjs +12 -0
- package/dist/network/graphql/builder/Mutations/Space/connectors/SpaceUpdateConnectorMutation.d.ts +8 -0
- package/dist/network/graphql/builder/Mutations/Space/connectors/SpaceUpdateConnectorMutation.mjs +16 -0
- package/dist/network/graphql/builder/Mutations/index.d.ts +9 -18
- package/dist/network/graphql/builder/Mutations/index.mjs +150 -156
- package/dist/network/graphql/builder/Queries/InitQuery.d.ts +1 -4
- package/dist/network/graphql/builder/Queries/InitQuery.mjs +2 -33
- package/dist/network/graphql/builder/Queries/Space/SpaceConnectorsQuery.d.ts +9 -0
- package/dist/network/graphql/builder/Queries/Space/SpaceConnectorsQuery.mjs +25 -0
- package/dist/network/graphql/builder/Queries/Space/SpaceDeploymentsQuery.mjs +1 -0
- package/dist/network/graphql/builder/Queries/index.d.ts +3 -12
- package/dist/network/graphql/builder/Queries/index.mjs +22 -28
- package/dist/network/graphql/builder/Subscriptions/SpaceEventSubscription.d.ts +19 -0
- package/dist/network/graphql/builder/Subscriptions/SpaceEventSubscription.mjs +12 -0
- package/dist/network/graphql/builder/Subscriptions/index.d.ts +4 -163
- package/dist/network/graphql/builder/Subscriptions/index.mjs +3 -109
- package/dist/network/graphql/builder/index.d.ts +2 -2
- package/dist/network/graphql/builder/index.mjs +1 -1
- package/dist/network/graphql/index.mjs +1 -1
- package/dist/network/graphql/sdk/Mutations/index.d.ts +2 -13
- package/dist/network/graphql/sdk/Mutations/index.mjs +2 -9
- package/dist/network/graphql/sdk/Queries/InitQuery.d.ts +1 -4
- package/dist/network/graphql/sdk/Queries/InitQuery.mjs +1 -13
- package/dist/network/graphql/sdk/Queries/index.d.ts +0 -12
- package/dist/network/graphql/sdk/Queries/index.mjs +8 -16
- package/dist/network/index.d.ts +3 -1
- package/dist/network/index.mjs +7 -6
- package/dist/network/spaceEvents.d.ts +405 -0
- package/dist/network/spaceEvents.mjs +244 -0
- package/dist/server/index.d.ts +5 -5
- package/dist/server/index.mjs +4 -3
- package/dist/server/rsc/refreshRsc.d.ts +16 -0
- package/dist/server/rsc/refreshRsc.mjs +16 -0
- package/dist/server/rsc/useRscRefresh.d.ts +2 -0
- package/dist/server/rsc/useRscRefresh.mjs +10 -0
- package/dist/server/rsc/useRscSync.d.ts +11 -0
- package/dist/server/rsc/useRscSync.mjs +20 -0
- package/dist/store/index.d.ts +54 -53
- package/dist/store/index.mjs +4 -3
- package/dist/store/renderSettings.d.ts +26 -0
- package/dist/store/renderSettings.mjs +39 -0
- package/dist/types/AuthTypes.d.ts +33 -3
- package/dist/types/BuilderTypes.d.ts +15 -0
- package/dist/types/CollectionTypes.d.ts +3 -49
- package/dist/types/CommonTypes.d.ts +17 -2
- package/dist/types/ConnectorTypes.d.ts +147 -0
- package/dist/types/ConnectorTypes.mjs +0 -0
- package/dist/types/DevToolsTypes.d.ts +18 -3
- package/dist/types/InteractionTypes.d.ts +1 -1
- package/dist/types/McpTypes/index.d.ts +0 -4
- package/dist/types/NavigationTypes.d.ts +0 -10
- package/dist/types/SchemaTypes.d.ts +27 -5
- package/dist/types/SdkTypes.d.ts +19 -2
- package/dist/types/ServerTypes.d.ts +296 -103
- package/dist/types/SpaceTypes.d.ts +17 -1
- package/dist/types/StoreTypes.d.ts +36 -0
- package/dist/types/index.d.ts +1 -0
- package/dist/websockets/RTCodec.d.ts +6 -0
- package/package.json +108 -309
- package/vite.config.ts +21 -1
- package/dist/collections/CollectionContext.d.ts +0 -2
- package/dist/collections/CollectionContext.mjs +0 -5
- package/dist/collections/index.d.ts +0 -3
- package/dist/collections/index.mjs +0 -2
- package/dist/network/graphql/builder/Mutations/Collection/CollectionAddMutation.d.ts +0 -4
- package/dist/network/graphql/builder/Mutations/Collection/CollectionAddMutation.mjs +0 -24
- package/dist/network/graphql/builder/Mutations/Collection/CollectionAddRecordMutation.d.ts +0 -4
- package/dist/network/graphql/builder/Mutations/Collection/CollectionAddRecordMutation.mjs +0 -16
- package/dist/network/graphql/builder/Mutations/Collection/CollectionRemoveMutation.d.ts +0 -4
- package/dist/network/graphql/builder/Mutations/Collection/CollectionRemoveMutation.mjs +0 -17
- package/dist/network/graphql/builder/Mutations/Collection/CollectionRemoveRecordMutation.d.ts +0 -4
- package/dist/network/graphql/builder/Mutations/Collection/CollectionRemoveRecordMutation.mjs +0 -14
- package/dist/network/graphql/builder/Mutations/Collection/CollectionUpdateMutation.d.ts +0 -4
- package/dist/network/graphql/builder/Mutations/Collection/CollectionUpdateMutation.mjs +0 -32
- package/dist/network/graphql/builder/Mutations/Collection/CollectionUpdateRecordMutation.d.ts +0 -4
- package/dist/network/graphql/builder/Mutations/Collection/CollectionUpdateRecordMutation.mjs +0 -16
- package/dist/network/graphql/builder/Queries/Collection/CollectionQuery.d.ts +0 -6
- package/dist/network/graphql/builder/Queries/Collection/CollectionQuery.mjs +0 -35
- package/dist/network/graphql/builder/Queries/Collection/CollectionRecordQuery.d.ts +0 -6
- package/dist/network/graphql/builder/Queries/Collection/CollectionRecordQuery.mjs +0 -16
- package/dist/network/graphql/builder/Queries/Collection/CollectionRecordsQuery.d.ts +0 -9
- package/dist/network/graphql/builder/Queries/Collection/CollectionRecordsQuery.mjs +0 -27
- package/dist/network/graphql/builder/Queries/Collection/CollectionsQuery.d.ts +0 -9
- package/dist/network/graphql/builder/Queries/Collection/CollectionsQuery.mjs +0 -37
- package/dist/network/graphql/builder/Subscriptions/Collaborator/CollaboratorConnectedSubscription.d.ts +0 -11
- package/dist/network/graphql/builder/Subscriptions/Collaborator/CollaboratorConnectedSubscription.mjs +0 -17
- package/dist/network/graphql/builder/Subscriptions/Collaborator/CollaboratorDisconnectedSubscription.d.ts +0 -11
- package/dist/network/graphql/builder/Subscriptions/Collaborator/CollaboratorDisconnectedSubscription.mjs +0 -17
- package/dist/network/graphql/builder/Subscriptions/Segment/SegmentAddTemplateSubscription.d.ts +0 -2
- package/dist/network/graphql/builder/Subscriptions/Segment/SegmentAddTemplateSubscription.mjs +0 -41
- package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentAddElementSubscription.d.ts +0 -11
- package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentAddElementSubscription.mjs +0 -40
- package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentCloneElementSubscription.d.ts +0 -10
- package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentCloneElementSubscription.mjs +0 -30
- package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentMoveElementSubscription.d.ts +0 -10
- package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentMoveElementSubscription.mjs +0 -15
- package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentRemoveElementSubscription.d.ts +0 -6
- package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentRemoveElementSubscription.mjs +0 -12
- package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentUpdateElementSubscription.d.ts +0 -11
- package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentUpdateElementSubscription.mjs +0 -27
- package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentUpdateElementsSubscription.d.ts +0 -7
- package/dist/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentUpdateElementsSubscription.mjs +0 -27
- package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceAddVariableSubscription.d.ts +0 -7
- package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceAddVariableSubscription.mjs +0 -21
- package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceRemoveVariableSubscription.d.ts +0 -7
- package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceRemoveVariableSubscription.mjs +0 -14
- package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceUpdateVariableSubscription.d.ts +0 -7
- package/dist/network/graphql/builder/Subscriptions/Segment/space/variables/SegmentSpaceUpdateVariableSubscription.mjs +0 -21
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleAddSelectorVariableSubscription.d.ts +0 -11
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleAddSelectorVariableSubscription.mjs +0 -16
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleRemoveSelectorVariableSubscription.d.ts +0 -10
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleRemoveSelectorVariableSubscription.mjs +0 -15
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleUpdateSelectorVariableSubscription.d.ts +0 -11
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectorVariables/SegmentStyleUpdateSelectorVariableSubscription.mjs +0 -16
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleAddSelectorSubscription.d.ts +0 -17
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleAddSelectorSubscription.mjs +0 -17
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleRemoveSelectorSubscription.d.ts +0 -8
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleRemoveSelectorSubscription.mjs +0 -13
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleRemoveSelectorsSubscription.d.ts +0 -8
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleRemoveSelectorsSubscription.mjs +0 -13
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleUpdateSelectorSubscription.d.ts +0 -16
- package/dist/network/graphql/builder/Subscriptions/Segment/style/selectors/SegmentStyleUpdateSelectorSubscription.mjs +0 -17
- package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleAddVariableSubscription.d.ts +0 -9
- package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleAddVariableSubscription.mjs +0 -14
- package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleRemoveVariableSubscription.d.ts +0 -8
- package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleRemoveVariableSubscription.mjs +0 -13
- package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleUpdateVariableSubscription.d.ts +0 -9
- package/dist/network/graphql/builder/Subscriptions/Segment/style/variables/SegmentStyleUpdateVariableSubscription.mjs +0 -14
- package/dist/network/graphql/builder/Subscriptions/Space/SpaceAddTemplateSubscription.d.ts +0 -11
- package/dist/network/graphql/builder/Subscriptions/Space/SpaceAddTemplateSubscription.mjs +0 -40
- package/dist/network/graphql/builder/Subscriptions/Space/SpaceUpdateSettingsSubscription.d.ts +0 -6
- package/dist/network/graphql/builder/Subscriptions/Space/SpaceUpdateSettingsSubscription.mjs +0 -12
- package/dist/network/graphql/builder/Subscriptions/Space/SpaceUpdatedSubscription.d.ts +0 -6
- package/dist/network/graphql/builder/Subscriptions/Space/SpaceUpdatedSubscription.mjs +0 -29
- package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceAddElementSubscription.d.ts +0 -10
- package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceAddElementSubscription.mjs +0 -39
- package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceCloneElementSubscription.d.ts +0 -9
- package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceCloneElementSubscription.mjs +0 -29
- package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceMoveElementSubscription.d.ts +0 -9
- package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceMoveElementSubscription.mjs +0 -14
- package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceRemoveElementSubscription.d.ts +0 -5
- package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceRemoveElementSubscription.mjs +0 -11
- package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceUpdateElementSubscription.d.ts +0 -6
- package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceUpdateElementSubscription.mjs +0 -26
- package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceUpdateElementsSubscription.d.ts +0 -6
- package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceUpdateElementsSubscription.mjs +0 -26
- package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceAddPageFolderSubscription.d.ts +0 -6
- package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceAddPageFolderSubscription.mjs +0 -16
- package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceRemovePageFolderSubscription.d.ts +0 -5
- package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceRemovePageFolderSubscription.mjs +0 -11
- package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceUpdatePageFolderSubscription.d.ts +0 -6
- package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceUpdatePageFolderSubscription.mjs +0 -16
- package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceAddPageSubscription.d.ts +0 -6
- package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceAddPageSubscription.mjs +0 -26
- package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceHomePageSubscription.d.ts +0 -6
- package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceHomePageSubscription.mjs +0 -26
- package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceRemovePageSubscription.d.ts +0 -5
- package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceRemovePageSubscription.mjs +0 -11
- package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceUpdatePageSubscription.d.ts +0 -6
- package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceUpdatePageSubscription.mjs +0 -26
- package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceAddVariableSubscription.d.ts +0 -6
- package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceAddVariableSubscription.mjs +0 -20
- package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceRemoveVariableSubscription.d.ts +0 -5
- package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceRemoveVariableSubscription.mjs +0 -11
- package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceUpdateVariableSubscription.d.ts +0 -6
- package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceUpdateVariableSubscription.mjs +0 -20
- package/dist/network/graphql/builder/Subscriptions/Style/StyleUpdateSettingsSubscription.d.ts +0 -6
- package/dist/network/graphql/builder/Subscriptions/Style/StyleUpdateSettingsSubscription.mjs +0 -12
- package/dist/network/graphql/builder/Subscriptions/Style/StyleUpdatedSubscription.d.ts +0 -4
- package/dist/network/graphql/builder/Subscriptions/Style/StyleUpdatedSubscription.mjs +0 -13
- package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleAddSelectorSubscription.d.ts +0 -16
- package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleAddSelectorSubscription.mjs +0 -16
- package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleRemoveSelectorSubscription.d.ts +0 -7
- package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleRemoveSelectorSubscription.mjs +0 -12
- package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleRemoveSelectorsSubscription.d.ts +0 -7
- package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleRemoveSelectorsSubscription.mjs +0 -12
- package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleUpdateSelectorSubscription.d.ts +0 -15
- package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleUpdateSelectorSubscription.mjs +0 -16
- package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleAddSelectorVariableSubscription.d.ts +0 -10
- package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleAddSelectorVariableSubscription.mjs +0 -15
- package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleRemoveSelectorVariableSubscription.d.ts +0 -9
- package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleRemoveSelectorVariableSubscription.mjs +0 -14
- package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleUpdateSelectorVariableSubscription.d.ts +0 -10
- package/dist/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleUpdateSelectorVariableSubscription.mjs +0 -15
- package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleAddVariableSubscription.d.ts +0 -8
- package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleAddVariableSubscription.mjs +0 -13
- package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleRemoveVariableSubscription.d.ts +0 -7
- package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleRemoveVariableSubscription.mjs +0 -12
- package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleUpdateVariableSubscription.d.ts +0 -8
- package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleUpdateVariableSubscription.mjs +0 -13
- package/dist/network/graphql/sdk/Mutations/Collection/CollectionAddMutation.d.ts +0 -2
- package/dist/network/graphql/sdk/Mutations/Collection/CollectionAddRecordMutation.d.ts +0 -4
- package/dist/network/graphql/sdk/Mutations/Collection/CollectionAddRecordMutation.mjs +0 -16
- package/dist/network/graphql/sdk/Mutations/Collection/CollectionRemoveMutation.d.ts +0 -2
- package/dist/network/graphql/sdk/Mutations/Collection/CollectionRemoveRecordMutation.d.ts +0 -4
- package/dist/network/graphql/sdk/Mutations/Collection/CollectionRemoveRecordMutation.mjs +0 -14
- package/dist/network/graphql/sdk/Mutations/Collection/CollectionUpdateMutation.d.ts +0 -2
- package/dist/network/graphql/sdk/Mutations/Collection/CollectionUpdateRecordMutation.d.ts +0 -4
- package/dist/network/graphql/sdk/Mutations/Collection/CollectionUpdateRecordMutation.mjs +0 -16
- package/dist/network/graphql/sdk/Queries/Collection/CollectionQuery.d.ts +0 -6
- package/dist/network/graphql/sdk/Queries/Collection/CollectionQuery.mjs +0 -32
- package/dist/network/graphql/sdk/Queries/Collection/CollectionRecordQuery.d.ts +0 -6
- package/dist/network/graphql/sdk/Queries/Collection/CollectionRecordQuery.mjs +0 -14
- package/dist/network/graphql/sdk/Queries/Collection/CollectionRecordsQuery.d.ts +0 -9
- package/dist/network/graphql/sdk/Queries/Collection/CollectionRecordsQuery.mjs +0 -25
- package/dist/network/graphql/sdk/Queries/Collection/CollectionsQuery.d.ts +0 -9
- package/dist/network/graphql/sdk/Queries/Collection/CollectionsQuery.mjs +0 -25
- package/dist/server/rsc/RscContext.d.ts +0 -13
- package/dist/server/rsc/RscContext.mjs +0 -5
- package/dist/server/rsc/RscProvider.d.ts +0 -13
- package/dist/server/rsc/RscProvider.mjs +0 -42
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Space/elements/SpaceUpdateElementsSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SpaceUpdateElements(environment: $environment) {
|
|
6
|
-
elements {
|
|
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 };
|
package/dist/network/graphql/builder/Subscriptions/Space/folders/SpaceAddPageFolderSubscription.mjs
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Space/folders/SpaceAddPageFolderSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SpaceAddPageFolder(environment: $environment) {
|
|
6
|
-
pageFolder {
|
|
7
|
-
id
|
|
8
|
-
name
|
|
9
|
-
slug
|
|
10
|
-
parentId
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
`;
|
|
15
|
-
//#endregion
|
|
16
|
-
export { t as default };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Space/folders/SpaceRemovePageFolderSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SpaceRemovePageFolder(environment: $environment) {
|
|
6
|
-
pageFolderId
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
`;
|
|
10
|
-
//#endregion
|
|
11
|
-
export { t as default };
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { PageFolder } from '../../../../../../types';
|
|
2
|
-
export type TSpaceUpdatePageFolderSubscription = {
|
|
3
|
-
pageFolder: PageFolder;
|
|
4
|
-
};
|
|
5
|
-
declare const SpaceUpdatePageFolderSubscription: import('graphql').DocumentNode;
|
|
6
|
-
export default SpaceUpdatePageFolderSubscription;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Space/folders/SpaceUpdatePageFolderSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SpaceUpdatePageFolder(environment: $environment) {
|
|
6
|
-
pageFolder {
|
|
7
|
-
id
|
|
8
|
-
name
|
|
9
|
-
slug
|
|
10
|
-
parentId
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
`;
|
|
15
|
-
//#endregion
|
|
16
|
-
export { t as default };
|
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Space/pages/SpaceAddPageSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SpaceAddPage(environment: $environment) {
|
|
6
|
-
page {
|
|
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 };
|
package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceHomePageSubscription.mjs
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Space/pages/SpaceHomePageSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SpaceHomePage(environment: $environment) {
|
|
6
|
-
page {
|
|
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 };
|
package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceRemovePageSubscription.mjs
DELETED
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Space/pages/SpaceRemovePageSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SpaceRemovePage(environment: $environment) {
|
|
6
|
-
pageId
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
`;
|
|
10
|
-
//#endregion
|
|
11
|
-
export { t as default };
|
package/dist/network/graphql/builder/Subscriptions/Space/pages/SpaceUpdatePageSubscription.mjs
DELETED
|
@@ -1,26 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Space/pages/SpaceUpdatePageSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SpaceUpdatePage(environment: $environment) {
|
|
6
|
-
page {
|
|
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 };
|
package/dist/network/graphql/builder/Subscriptions/Space/variables/SpaceAddVariableSubscription.mjs
DELETED
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Space/variables/SpaceAddVariableSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SpaceAddVariable(environment: $environment) {
|
|
6
|
-
variable {
|
|
7
|
-
name
|
|
8
|
-
category
|
|
9
|
-
type
|
|
10
|
-
value
|
|
11
|
-
subValues {
|
|
12
|
-
when
|
|
13
|
-
value
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
`;
|
|
19
|
-
//#endregion
|
|
20
|
-
export { t as default };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Space/variables/SpaceRemoveVariableSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SpaceRemoveVariable(environment: $environment) {
|
|
6
|
-
name
|
|
7
|
-
}
|
|
8
|
-
}
|
|
9
|
-
`;
|
|
10
|
-
//#endregion
|
|
11
|
-
export { t as default };
|
|
@@ -1,6 +0,0 @@
|
|
|
1
|
-
import { SchemaVariable } from '../../../../../../types';
|
|
2
|
-
export type TSpaceUpdateVariableSubscription = {
|
|
3
|
-
variable: SchemaVariable;
|
|
4
|
-
};
|
|
5
|
-
declare const SpaceUpdateVariableSubscription: import('graphql').DocumentNode;
|
|
6
|
-
export default SpaceUpdateVariableSubscription;
|
|
@@ -1,20 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Space/variables/SpaceUpdateVariableSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SpaceUpdateVariable(environment: $environment) {
|
|
6
|
-
variable {
|
|
7
|
-
name
|
|
8
|
-
category
|
|
9
|
-
type
|
|
10
|
-
value
|
|
11
|
-
subValues {
|
|
12
|
-
when
|
|
13
|
-
value
|
|
14
|
-
}
|
|
15
|
-
}
|
|
16
|
-
}
|
|
17
|
-
}
|
|
18
|
-
`;
|
|
19
|
-
//#endregion
|
|
20
|
-
export { t as default };
|
package/dist/network/graphql/builder/Subscriptions/Style/StyleUpdateSettingsSubscription.mjs
DELETED
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Style/StyleUpdateSettingsSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
StyleUpdateSettings(environment: $environment) {
|
|
6
|
-
path
|
|
7
|
-
value
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
`;
|
|
11
|
-
//#endregion
|
|
12
|
-
export { t as default };
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Style/StyleUpdatedSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
StyleUpdated(environment: $environment) {
|
|
6
|
-
platform
|
|
7
|
-
variables
|
|
8
|
-
cache
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
`;
|
|
12
|
-
//#endregion
|
|
13
|
-
export { t as default };
|
package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleAddSelectorSubscription.d.ts
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { DisplayMode, StyleCategory, StyleItem, StyleState, TagType } from '../../../../../../types';
|
|
2
|
-
export type TStyleAddSelectorSubscription = {
|
|
3
|
-
displayMode: DisplayMode;
|
|
4
|
-
selector: string;
|
|
5
|
-
path?: StyleCategory;
|
|
6
|
-
type: TagType;
|
|
7
|
-
style?: StyleItem['attributes'];
|
|
8
|
-
params: {
|
|
9
|
-
componentType?: string;
|
|
10
|
-
styleSelector?: string;
|
|
11
|
-
styleState?: StyleState;
|
|
12
|
-
styleVariant?: string;
|
|
13
|
-
};
|
|
14
|
-
};
|
|
15
|
-
declare const StyleAddSelectorSubscription: import('graphql').DocumentNode;
|
|
16
|
-
export default StyleAddSelectorSubscription;
|
package/dist/network/graphql/builder/Subscriptions/Style/selector/StyleAddSelectorSubscription.mjs
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Style/selector/StyleAddSelectorSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
StyleAddSelector(environment: $environment) {
|
|
6
|
-
displayMode
|
|
7
|
-
selector
|
|
8
|
-
path
|
|
9
|
-
type
|
|
10
|
-
style
|
|
11
|
-
params
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
`;
|
|
15
|
-
//#endregion
|
|
16
|
-
export { t as default };
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { DisplayMode } from '../../../../../../types';
|
|
2
|
-
export type TStyleRemoveSelectorSubscription = {
|
|
3
|
-
displayMode: DisplayMode;
|
|
4
|
-
selector: string;
|
|
5
|
-
};
|
|
6
|
-
declare const StyleRemoveSelectorSubscription: import('graphql').DocumentNode;
|
|
7
|
-
export default StyleRemoveSelectorSubscription;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Style/selector/StyleRemoveSelectorSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
StyleRemoveSelector(environment: $environment) {
|
|
6
|
-
displayMode
|
|
7
|
-
selector
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
`;
|
|
11
|
-
//#endregion
|
|
12
|
-
export { t as default };
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { DisplayMode } from '../../../../../../types';
|
|
2
|
-
export type TStyleRemoveSelectorsSubscription = {
|
|
3
|
-
displayMode: DisplayMode;
|
|
4
|
-
selectors: string[];
|
|
5
|
-
};
|
|
6
|
-
declare const StyleRemoveSelectorsSubscription: import('graphql').DocumentNode;
|
|
7
|
-
export default StyleRemoveSelectorsSubscription;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Style/selector/StyleRemoveSelectorsSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
StyleRemoveSelectors(environment: $environment) {
|
|
6
|
-
displayMode
|
|
7
|
-
selectors
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
`;
|
|
11
|
-
//#endregion
|
|
12
|
-
export { t as default };
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { DisplayMode, StyleCategory, StyleItem, StyleState } from '../../../../../../types';
|
|
2
|
-
export type TStyleUpdateSelectorSubscription = {
|
|
3
|
-
displayMode: DisplayMode;
|
|
4
|
-
selector: string;
|
|
5
|
-
path?: StyleCategory;
|
|
6
|
-
style?: StyleItem['attributes'];
|
|
7
|
-
params: {
|
|
8
|
-
componentType?: string;
|
|
9
|
-
styleSelector: string;
|
|
10
|
-
styleState?: StyleState;
|
|
11
|
-
styleVariant?: string;
|
|
12
|
-
};
|
|
13
|
-
};
|
|
14
|
-
declare const StyleUpdateSelectorSubscription: import('graphql').DocumentNode;
|
|
15
|
-
export default StyleUpdateSelectorSubscription;
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Style/selector/StyleUpdateSelectorSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
StyleUpdateSelector(environment: $environment) {
|
|
6
|
-
displayMode
|
|
7
|
-
selector
|
|
8
|
-
path
|
|
9
|
-
type
|
|
10
|
-
style
|
|
11
|
-
params
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
`;
|
|
15
|
-
//#endregion
|
|
16
|
-
export { t as default };
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { DisplayMode, StyleVariableCategory, StyleVariableValue } from '../../../../../../types';
|
|
2
|
-
export type TStyleAddSelectorVariableSubscription = {
|
|
3
|
-
displayMode: DisplayMode;
|
|
4
|
-
selector: string;
|
|
5
|
-
category: StyleVariableCategory;
|
|
6
|
-
name: string;
|
|
7
|
-
value: StyleVariableValue;
|
|
8
|
-
};
|
|
9
|
-
declare const StyleAddSelectorVariableSubscription: import('graphql').DocumentNode;
|
|
10
|
-
export default StyleAddSelectorVariableSubscription;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleAddSelectorVariableSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
StyleAddSelectorVariable(environment: $environment) {
|
|
6
|
-
displayMode
|
|
7
|
-
selector
|
|
8
|
-
category
|
|
9
|
-
name
|
|
10
|
-
value
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
`;
|
|
14
|
-
//#endregion
|
|
15
|
-
export { t as default };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { DisplayMode, StyleVariableCategory } from '../../../../../../types';
|
|
2
|
-
export type TStyleRemoveSelectorVariableSubscription = {
|
|
3
|
-
displayMode: DisplayMode;
|
|
4
|
-
selector: string;
|
|
5
|
-
category: StyleVariableCategory;
|
|
6
|
-
name: string;
|
|
7
|
-
};
|
|
8
|
-
declare const StyleRemoveSelectorVariableSubscription: import('graphql').DocumentNode;
|
|
9
|
-
export default StyleRemoveSelectorVariableSubscription;
|
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleRemoveSelectorVariableSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
StyleRemoveSelectorVariable(environment: $environment) {
|
|
6
|
-
displayMode
|
|
7
|
-
selector
|
|
8
|
-
category
|
|
9
|
-
name
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
`;
|
|
13
|
-
//#endregion
|
|
14
|
-
export { t as default };
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { DisplayMode, StyleVariableCategory, StyleVariableValue } from '../../../../../../types';
|
|
2
|
-
export type TStyleUpdateSelectorVariableSubscription = {
|
|
3
|
-
displayMode: DisplayMode;
|
|
4
|
-
selector: string;
|
|
5
|
-
category: StyleVariableCategory;
|
|
6
|
-
name: string;
|
|
7
|
-
value: StyleVariableValue;
|
|
8
|
-
};
|
|
9
|
-
declare const StyleUpdateSelectorVariableSubscription: import('graphql').DocumentNode;
|
|
10
|
-
export default StyleUpdateSelectorVariableSubscription;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Style/selectorVariables/StyleUpdateSelectorVariableSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
StyleUpdateSelectorVariable(environment: $environment) {
|
|
6
|
-
displayMode
|
|
7
|
-
selector
|
|
8
|
-
category
|
|
9
|
-
name
|
|
10
|
-
value
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
`;
|
|
14
|
-
//#endregion
|
|
15
|
-
export { t as default };
|
package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleAddVariableSubscription.d.ts
DELETED
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { StyleVariableCategory, StyleVariableValue } from '../../../../../../types';
|
|
2
|
-
export type TStyleAddVariableSubscription = {
|
|
3
|
-
category: StyleVariableCategory;
|
|
4
|
-
name: string;
|
|
5
|
-
value: StyleVariableValue;
|
|
6
|
-
};
|
|
7
|
-
declare const StyleAddVariableSubscription: import('graphql').DocumentNode;
|
|
8
|
-
export default StyleAddVariableSubscription;
|
package/dist/network/graphql/builder/Subscriptions/Style/variables/StyleAddVariableSubscription.mjs
DELETED
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Style/variables/StyleAddVariableSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
StyleAddVariable(environment: $environment) {
|
|
6
|
-
category
|
|
7
|
-
name
|
|
8
|
-
value
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
`;
|
|
12
|
-
//#endregion
|
|
13
|
-
export { t as default };
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { StyleVariableCategory } from '../../../../../../types';
|
|
2
|
-
export type TStyleRemoveVariableSubscription = {
|
|
3
|
-
category: StyleVariableCategory;
|
|
4
|
-
name: string;
|
|
5
|
-
};
|
|
6
|
-
declare const StyleRemoveVariableSubscription: import('graphql').DocumentNode;
|
|
7
|
-
export default StyleRemoveVariableSubscription;
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Style/variables/StyleRemoveVariableSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
StyleRemoveVariable(environment: $environment) {
|
|
6
|
-
category
|
|
7
|
-
name
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
`;
|
|
11
|
-
//#endregion
|
|
12
|
-
export { t as default };
|
|
@@ -1,8 +0,0 @@
|
|
|
1
|
-
import { StyleVariableCategory, StyleVariableValue } from '../../../../../../types';
|
|
2
|
-
export type TStyleUpdateVariableSubscription = {
|
|
3
|
-
category: StyleVariableCategory;
|
|
4
|
-
name: string;
|
|
5
|
-
value: StyleVariableValue;
|
|
6
|
-
};
|
|
7
|
-
declare const StyleUpdateVariableSubscription: import('graphql').DocumentNode;
|
|
8
|
-
export default StyleUpdateVariableSubscription;
|
|
@@ -1,13 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Style/variables/StyleUpdateVariableSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
StyleUpdateVariable(environment: $environment) {
|
|
6
|
-
category
|
|
7
|
-
name
|
|
8
|
-
value
|
|
9
|
-
}
|
|
10
|
-
}
|
|
11
|
-
`;
|
|
12
|
-
//#endregion
|
|
13
|
-
export { t as default };
|