@plitzi/sdk-shared 0.32.25 → 0.33.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +12 -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/dataSource/utility/styleVariant.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,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 };
|
package/dist/network/graphql/builder/Subscriptions/Space/SpaceUpdateSettingsSubscription.mjs
DELETED
|
@@ -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,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 };
|
package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceAddElementSubscription.d.ts
DELETED
|
@@ -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;
|
package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceAddElementSubscription.mjs
DELETED
|
@@ -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 };
|
package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceCloneElementSubscription.d.ts
DELETED
|
@@ -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;
|
package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceCloneElementSubscription.mjs
DELETED
|
@@ -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 };
|
package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceMoveElementSubscription.d.ts
DELETED
|
@@ -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;
|
package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceMoveElementSubscription.mjs
DELETED
|
@@ -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 };
|
package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceRemoveElementSubscription.mjs
DELETED
|
@@ -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 };
|
package/dist/network/graphql/builder/Subscriptions/Space/elements/SpaceUpdateElementSubscription.mjs
DELETED
|
@@ -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 };
|