@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,24 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Mutations/Collection/CollectionAddMutation.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
mutation CollectionAddMutation(
|
|
5
|
-
$name: String!
|
|
6
|
-
$namePlural: String!
|
|
7
|
-
$description: String
|
|
8
|
-
$privacy: String!
|
|
9
|
-
$fields: Json!
|
|
10
|
-
) {
|
|
11
|
-
CollectionAdd(name: $name, namePlural: $namePlural, description: $description, privacy: $privacy, fields: $fields) {
|
|
12
|
-
id
|
|
13
|
-
name
|
|
14
|
-
namePlural
|
|
15
|
-
description
|
|
16
|
-
privacy
|
|
17
|
-
fields
|
|
18
|
-
createdAt
|
|
19
|
-
updatedAt
|
|
20
|
-
}
|
|
21
|
-
}
|
|
22
|
-
`;
|
|
23
|
-
//#endregion
|
|
24
|
-
export { t as default };
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Mutations/Collection/CollectionAddRecordMutation.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
mutation CollectionAddRecordMutation($collectionId: String!, $status: String!, $values: Json!) {
|
|
5
|
-
CollectionAddRecord(collectionId: $collectionId, status: $status, values: $values) {
|
|
6
|
-
id
|
|
7
|
-
status
|
|
8
|
-
values
|
|
9
|
-
createdAt
|
|
10
|
-
updatedAt
|
|
11
|
-
publishedAt
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
`;
|
|
15
|
-
//#endregion
|
|
16
|
-
export { t as default };
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Mutations/Collection/CollectionRemoveMutation.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
mutation CollectionRemoveMutation($id: String!) {
|
|
5
|
-
CollectionRemove(id: $id) {
|
|
6
|
-
id
|
|
7
|
-
name
|
|
8
|
-
description
|
|
9
|
-
privacy
|
|
10
|
-
fields
|
|
11
|
-
createdAt
|
|
12
|
-
updatedAt
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
`;
|
|
16
|
-
//#endregion
|
|
17
|
-
export { t as default };
|
package/dist/network/graphql/builder/Mutations/Collection/CollectionRemoveRecordMutation.mjs
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Mutations/Collection/CollectionRemoveRecordMutation.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
mutation CollectionRemoveRecordMutation($id: String!) {
|
|
5
|
-
CollectionRemoveRecord(id: $id) {
|
|
6
|
-
id
|
|
7
|
-
values
|
|
8
|
-
createdAt
|
|
9
|
-
updatedAt
|
|
10
|
-
}
|
|
11
|
-
}
|
|
12
|
-
`;
|
|
13
|
-
//#endregion
|
|
14
|
-
export { t as default };
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Mutations/Collection/CollectionUpdateMutation.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
mutation CollectionUpdateMutation(
|
|
5
|
-
$id: String!
|
|
6
|
-
$name: String!
|
|
7
|
-
$namePlural: String!
|
|
8
|
-
$description: String
|
|
9
|
-
$privacy: String!
|
|
10
|
-
$fields: Json!
|
|
11
|
-
) {
|
|
12
|
-
CollectionUpdate(
|
|
13
|
-
id: $id
|
|
14
|
-
name: $name
|
|
15
|
-
namePlural: $namePlural
|
|
16
|
-
description: $description
|
|
17
|
-
privacy: $privacy
|
|
18
|
-
fields: $fields
|
|
19
|
-
) {
|
|
20
|
-
id
|
|
21
|
-
name
|
|
22
|
-
namePlural
|
|
23
|
-
description
|
|
24
|
-
privacy
|
|
25
|
-
fields
|
|
26
|
-
createdAt
|
|
27
|
-
updatedAt
|
|
28
|
-
}
|
|
29
|
-
}
|
|
30
|
-
`;
|
|
31
|
-
//#endregion
|
|
32
|
-
export { t as default };
|
package/dist/network/graphql/builder/Mutations/Collection/CollectionUpdateRecordMutation.mjs
DELETED
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Mutations/Collection/CollectionUpdateRecordMutation.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
mutation CollectionUpdateRecordMutation($id: String!, $status: String!, $values: Json!) {
|
|
5
|
-
CollectionUpdateRecord(id: $id, status: $status, values: $values) {
|
|
6
|
-
id
|
|
7
|
-
status
|
|
8
|
-
values
|
|
9
|
-
createdAt
|
|
10
|
-
updatedAt
|
|
11
|
-
publishedAt
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
`;
|
|
15
|
-
//#endregion
|
|
16
|
-
export { t as default };
|
|
@@ -1,35 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Queries/Collection/CollectionQuery.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
query CollectionQuery($id: String!, $recordsFilter: JsonObject) {
|
|
5
|
-
Collection(id: $id) {
|
|
6
|
-
id
|
|
7
|
-
name
|
|
8
|
-
namePlural
|
|
9
|
-
description
|
|
10
|
-
privacy
|
|
11
|
-
fields
|
|
12
|
-
records(filter: $recordsFilter, limit: 20) {
|
|
13
|
-
edges {
|
|
14
|
-
id
|
|
15
|
-
status
|
|
16
|
-
values
|
|
17
|
-
createdAt
|
|
18
|
-
updatedAt
|
|
19
|
-
publishedAt
|
|
20
|
-
}
|
|
21
|
-
pageInfo {
|
|
22
|
-
hasPrevPage
|
|
23
|
-
hasNextPage
|
|
24
|
-
prevCursor
|
|
25
|
-
nextCursor
|
|
26
|
-
from
|
|
27
|
-
to
|
|
28
|
-
total
|
|
29
|
-
}
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
`;
|
|
34
|
-
//#endregion
|
|
35
|
-
export { t as default };
|
|
@@ -1,16 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Queries/Collection/CollectionRecordQuery.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
query CollectionRecordQuery($id: String!, $collectionId: String!) {
|
|
5
|
-
CollectionRecord(id: $id, collectionId: $collectionId) {
|
|
6
|
-
id
|
|
7
|
-
values
|
|
8
|
-
status
|
|
9
|
-
createdAt
|
|
10
|
-
updatedAt
|
|
11
|
-
publishedAt
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
`;
|
|
15
|
-
//#endregion
|
|
16
|
-
export { t as default };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { CollectionRecord, PageInfo } from '../../../../../types';
|
|
2
|
-
export type TCollectionRecordsQuery = {
|
|
3
|
-
CollectionRecords: {
|
|
4
|
-
edges: CollectionRecord[];
|
|
5
|
-
pageInfo: PageInfo;
|
|
6
|
-
};
|
|
7
|
-
};
|
|
8
|
-
declare const CollectionRecordsQuery: import('graphql').DocumentNode;
|
|
9
|
-
export default CollectionRecordsQuery;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Queries/Collection/CollectionRecordsQuery.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
query CollectionRecordsQuery($collectionId: String!, $filter: JsonObject, $cursor: String, $limit: Int) {
|
|
5
|
-
CollectionRecords(collectionId: $collectionId, filter: $filter, cursor: $cursor, limit: $limit) {
|
|
6
|
-
edges {
|
|
7
|
-
id
|
|
8
|
-
status
|
|
9
|
-
values
|
|
10
|
-
createdAt
|
|
11
|
-
updatedAt
|
|
12
|
-
publishedAt
|
|
13
|
-
}
|
|
14
|
-
pageInfo {
|
|
15
|
-
hasPrevPage
|
|
16
|
-
hasNextPage
|
|
17
|
-
prevCursor
|
|
18
|
-
nextCursor
|
|
19
|
-
from
|
|
20
|
-
to
|
|
21
|
-
total
|
|
22
|
-
}
|
|
23
|
-
}
|
|
24
|
-
}
|
|
25
|
-
`;
|
|
26
|
-
//#endregion
|
|
27
|
-
export { t as default };
|
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
import { CollectionRaw, PageInfo } from '../../../../../types';
|
|
2
|
-
export type TCollectionsQuery = {
|
|
3
|
-
Collections: {
|
|
4
|
-
edges: CollectionRaw[];
|
|
5
|
-
pageInfo: PageInfo;
|
|
6
|
-
};
|
|
7
|
-
};
|
|
8
|
-
declare const CollectionsQuery: import('graphql').DocumentNode;
|
|
9
|
-
export default CollectionsQuery;
|
|
@@ -1,37 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Queries/Collection/CollectionsQuery.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
query CollectionsQuery($filter: JsonObject, $cursor: String, $limit: Int) {
|
|
5
|
-
Collections(filter: $filter, cursor: $cursor, limit: $limit) {
|
|
6
|
-
edges {
|
|
7
|
-
id
|
|
8
|
-
name
|
|
9
|
-
mamePlural
|
|
10
|
-
description
|
|
11
|
-
privacy
|
|
12
|
-
fields
|
|
13
|
-
records(limit: 20) {
|
|
14
|
-
edges {
|
|
15
|
-
id
|
|
16
|
-
status
|
|
17
|
-
values
|
|
18
|
-
createdAt
|
|
19
|
-
updatedAt
|
|
20
|
-
publishedAt
|
|
21
|
-
}
|
|
22
|
-
pageInfo {
|
|
23
|
-
hasPrevPage
|
|
24
|
-
hasNextPage
|
|
25
|
-
prevCursor
|
|
26
|
-
nextCursor
|
|
27
|
-
from
|
|
28
|
-
to
|
|
29
|
-
total
|
|
30
|
-
}
|
|
31
|
-
}
|
|
32
|
-
}
|
|
33
|
-
}
|
|
34
|
-
}
|
|
35
|
-
`;
|
|
36
|
-
//#endregion
|
|
37
|
-
export { t as default };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export type TCollaboratorConnectedSubscription = {
|
|
2
|
-
color: string;
|
|
3
|
-
instanceId: string;
|
|
4
|
-
user: {
|
|
5
|
-
id: string;
|
|
6
|
-
firstName: string;
|
|
7
|
-
surName: string;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
10
|
-
declare const CollaboratorConnectedSubscription: import('graphql').DocumentNode;
|
|
11
|
-
export default CollaboratorConnectedSubscription;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Collaborator/CollaboratorConnectedSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription {
|
|
5
|
-
CollaboratorConnected {
|
|
6
|
-
color
|
|
7
|
-
instanceId
|
|
8
|
-
user {
|
|
9
|
-
id
|
|
10
|
-
firstName
|
|
11
|
-
surName
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
`;
|
|
16
|
-
//#endregion
|
|
17
|
-
export { t as default };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
export type TCollaboratorDisconnectedSubscription = {
|
|
2
|
-
color: string;
|
|
3
|
-
instanceId: string;
|
|
4
|
-
user: {
|
|
5
|
-
id: string;
|
|
6
|
-
firstName: string;
|
|
7
|
-
surName: string;
|
|
8
|
-
};
|
|
9
|
-
};
|
|
10
|
-
declare const CollaboratorDisconnectedSubscription: import('graphql').DocumentNode;
|
|
11
|
-
export default CollaboratorDisconnectedSubscription;
|
|
@@ -1,17 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Collaborator/CollaboratorDisconnectedSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription {
|
|
5
|
-
CollaboratorDisconnected {
|
|
6
|
-
color
|
|
7
|
-
instanceId
|
|
8
|
-
user {
|
|
9
|
-
id
|
|
10
|
-
firstName
|
|
11
|
-
surName
|
|
12
|
-
}
|
|
13
|
-
}
|
|
14
|
-
}
|
|
15
|
-
`;
|
|
16
|
-
//#endregion
|
|
17
|
-
export { t as default };
|
package/dist/network/graphql/builder/Subscriptions/Segment/SegmentAddTemplateSubscription.mjs
DELETED
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Segment/SegmentAddTemplateSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SegmentAddTemplate(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
|
-
contextId
|
|
37
|
-
}
|
|
38
|
-
}
|
|
39
|
-
`;
|
|
40
|
-
//#endregion
|
|
41
|
-
export { t as default };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { DropPosition, Element, SchemaVariable } from '../../../../../../../types';
|
|
2
|
-
export type TSegmentAddElementSubscription = {
|
|
3
|
-
contextId: string;
|
|
4
|
-
element: Element;
|
|
5
|
-
dropPosition: DropPosition;
|
|
6
|
-
to: string;
|
|
7
|
-
initialItems: Record<string, Element>;
|
|
8
|
-
variables: SchemaVariable[];
|
|
9
|
-
};
|
|
10
|
-
declare const SegmentAddElementSubscription: import('graphql').DocumentNode;
|
|
11
|
-
export default SegmentAddElementSubscription;
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentAddElementSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SegmentAddElement(environment: $environment) {
|
|
6
|
-
contextId
|
|
7
|
-
element {
|
|
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
|
-
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,10 +0,0 @@
|
|
|
1
|
-
import { DropPosition, Element } from '../../../../../../../types';
|
|
2
|
-
export type TSegmentCloneElementSubscription = {
|
|
3
|
-
contextId: string;
|
|
4
|
-
element: Element;
|
|
5
|
-
dropPosition: DropPosition;
|
|
6
|
-
to: string;
|
|
7
|
-
initialItems: Record<string, Element>;
|
|
8
|
-
};
|
|
9
|
-
declare const SegmentCloneElementSubscription: import('graphql').DocumentNode;
|
|
10
|
-
export default SegmentCloneElementSubscription;
|
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentCloneElementSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SegmentCloneElement(environment: $environment) {
|
|
6
|
-
contextId
|
|
7
|
-
element {
|
|
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
|
-
dropPosition
|
|
24
|
-
to
|
|
25
|
-
initialItems
|
|
26
|
-
}
|
|
27
|
-
}
|
|
28
|
-
`;
|
|
29
|
-
//#endregion
|
|
30
|
-
export { t as default };
|
|
@@ -1,10 +0,0 @@
|
|
|
1
|
-
import { DropPosition } from '../../../../../../../types';
|
|
2
|
-
export type TSegmentMoveElementSubscription = {
|
|
3
|
-
contextId: string;
|
|
4
|
-
elementId: string;
|
|
5
|
-
from: string;
|
|
6
|
-
to: string;
|
|
7
|
-
dropPosition: DropPosition;
|
|
8
|
-
};
|
|
9
|
-
declare const SegmentMoveElementSubscription: import('graphql').DocumentNode;
|
|
10
|
-
export default SegmentMoveElementSubscription;
|
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentMoveElementSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SegmentMoveElement(environment: $environment) {
|
|
6
|
-
contextId
|
|
7
|
-
elementId
|
|
8
|
-
from
|
|
9
|
-
to
|
|
10
|
-
dropPosition
|
|
11
|
-
}
|
|
12
|
-
}
|
|
13
|
-
`;
|
|
14
|
-
//#endregion
|
|
15
|
-
export { t as default };
|
|
@@ -1,12 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentRemoveElementSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SegmentRemoveElement(environment: $environment) {
|
|
6
|
-
contextId
|
|
7
|
-
elementId
|
|
8
|
-
}
|
|
9
|
-
}
|
|
10
|
-
`;
|
|
11
|
-
//#endregion
|
|
12
|
-
export { t as default };
|
|
@@ -1,11 +0,0 @@
|
|
|
1
|
-
import { DropPosition, Element, SchemaVariable } from '../../../../../../../types';
|
|
2
|
-
export type TSegmentUpdateElementSubscription = {
|
|
3
|
-
contextId: string;
|
|
4
|
-
element: Element;
|
|
5
|
-
dropPosition: DropPosition;
|
|
6
|
-
to: string;
|
|
7
|
-
initialItems: string[];
|
|
8
|
-
variables: SchemaVariable[];
|
|
9
|
-
};
|
|
10
|
-
declare const SegmentUpdateElementSubscription: import('graphql').DocumentNode;
|
|
11
|
-
export default SegmentUpdateElementSubscription;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentUpdateElementSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SegmentUpdateElement(environment: $environment) {
|
|
6
|
-
contextId
|
|
7
|
-
element {
|
|
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
|
-
}
|
|
24
|
-
}
|
|
25
|
-
`;
|
|
26
|
-
//#endregion
|
|
27
|
-
export { t as default };
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { Element } from '../../../../../../../types';
|
|
2
|
-
export type TSegmentUpdateElementsSubscription = {
|
|
3
|
-
contextId: string;
|
|
4
|
-
elements: Element[];
|
|
5
|
-
};
|
|
6
|
-
declare const SegmentUpdateElementsSubscription: import('graphql').DocumentNode;
|
|
7
|
-
export default SegmentUpdateElementsSubscription;
|
|
@@ -1,27 +0,0 @@
|
|
|
1
|
-
import { gql as e } from "@apollo/client/core";
|
|
2
|
-
//#region src/network/graphql/builder/Subscriptions/Segment/space/elements/SegmentUpdateElementsSubscription.ts
|
|
3
|
-
var t = e`
|
|
4
|
-
subscription ($environment: String!) {
|
|
5
|
-
SegmentUpdateElements(environment: $environment) {
|
|
6
|
-
contextId
|
|
7
|
-
elements {
|
|
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
|
-
}
|
|
24
|
-
}
|
|
25
|
-
`;
|
|
26
|
-
//#endregion
|
|
27
|
-
export { t as default };
|
|
@@ -1,7 +0,0 @@
|
|
|
1
|
-
import { SchemaVariable } from '../../../../../../../types';
|
|
2
|
-
export type TSegmentSpaceAddVariableSubscription = {
|
|
3
|
-
contextId: string;
|
|
4
|
-
variable: SchemaVariable;
|
|
5
|
-
};
|
|
6
|
-
declare const SegmentSpaceAddVariableSubscription: import('graphql').DocumentNode;
|
|
7
|
-
export default SegmentSpaceAddVariableSubscription;
|