@@ -1044,6 +1044,43 @@ type CopyAppearancePayload {
1044
1044
query : Query
1045
1045
}
1046
1046
1047
+ """All input for the `copyDataLibraryTemplateItem` mutation."""
1048
+ input CopyDataLibraryTemplateItemInput {
1049
+ """
1050
+ An arbitrary string value with no semantic meaning. Will be included in the
1051
+ payload verbatim. May be used to track mutations by the client.
1052
+ """
1053
+ clientMutationId : String
1054
+ projectSlug : String
1055
+ templateId : String
1056
+ }
1057
+
1058
+ """The output of our `copyDataLibraryTemplateItem` mutation."""
1059
+ type CopyDataLibraryTemplateItemPayload {
1060
+ """
1061
+ The exact same `clientMutationId` that was provided in the mutation input,
1062
+ unchanged and unused. May be used by a client to track mutations.
1063
+ """
1064
+ clientMutationId : String
1065
+
1066
+ """
1067
+ Reads a single `DataLayer` that is related to this `TableOfContentsItem`.
1068
+ """
1069
+ dataLayer : DataLayer
1070
+
1071
+ """
1072
+ Our root query field type. Allows us to run any query from our mutation payload.
1073
+ """
1074
+ query : Query
1075
+ tableOfContentsItem : TableOfContentsItem
1076
+
1077
+ """An edge for our `TableOfContentsItem`. May be used by Relay 1."""
1078
+ tableOfContentsItemEdge (
1079
+ """The method to use when ordering `TableOfContentsItem`."""
1080
+ orderBy : [TableOfContentsItemsOrderBy ! ] = [PRIMARY_KEY_ASC ]
1081
+ ): TableOfContentsItemsEdge
1082
+ }
1083
+
1047
1084
"""All input for the `copySketchFolder` mutation."""
1048
1085
input CopySketchFolderInput {
1049
1086
"""
@@ -5032,6 +5069,42 @@ type DownloadOption {
5032
5069
url : String
5033
5070
}
5034
5071
5072
+ """All input for the `duplicateTableOfContentsItem` mutation."""
5073
+ input DuplicateTableOfContentsItemInput {
5074
+ """
5075
+ An arbitrary string value with no semantic meaning. Will be included in the
5076
+ payload verbatim. May be used to track mutations by the client.
5077
+ """
5078
+ clientMutationId : String
5079
+ itemId : Int
5080
+ }
5081
+
5082
+ """The output of our `duplicateTableOfContentsItem` mutation."""
5083
+ type DuplicateTableOfContentsItemPayload {
5084
+ """
5085
+ The exact same `clientMutationId` that was provided in the mutation input,
5086
+ unchanged and unused. May be used by a client to track mutations.
5087
+ """
5088
+ clientMutationId : String
5089
+
5090
+ """
5091
+ Reads a single `DataLayer` that is related to this `TableOfContentsItem`.
5092
+ """
5093
+ dataLayer : DataLayer
5094
+
5095
+ """
5096
+ Our root query field type. Allows us to run any query from our mutation payload.
5097
+ """
5098
+ query : Query
5099
+ tableOfContentsItem : TableOfContentsItem
5100
+
5101
+ """An edge for our `TableOfContentsItem`. May be used by Relay 1."""
5102
+ tableOfContentsItemEdge (
5103
+ """The method to use when ordering `TableOfContentsItem`."""
5104
+ orderBy : [TableOfContentsItemsOrderBy ! ] = [PRIMARY_KEY_ASC ]
5105
+ ): TableOfContentsItemsEdge
5106
+ }
5107
+
5035
5108
scalar Email
5036
5109
5037
5110
"""
@@ -7752,6 +7825,12 @@ type Mutation {
7752
7825
"""
7753
7826
input : CopyAppearanceInput !
7754
7827
): CopyAppearancePayload
7828
+ copyDataLibraryTemplateItem (
7829
+ """
7830
+ The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
7831
+ """
7832
+ input : CopyDataLibraryTemplateItemInput !
7833
+ ): CopyDataLibraryTemplateItemPayload
7755
7834
copySketch (
7756
7835
"""
7757
7836
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
@@ -8539,6 +8618,12 @@ type Mutation {
8539
8618
"""
8540
8619
input : DismissFailedJobInput !
8541
8620
): DismissFailedJobPayload
8621
+ duplicateTableOfContentsItem (
8622
+ """
8623
+ The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
8624
+ """
8625
+ input : DuplicateTableOfContentsItemInput !
8626
+ ): DuplicateTableOfContentsItemPayload
8542
8627
enableDownloadForEligibleLayers (
8543
8628
"""
8544
8629
The exclusive input argument for this mutation. An object type, make sure to see documentation for this object’s fields.
@@ -14270,6 +14355,7 @@ type TableOfContentsItem implements Node {
14270
14355
"""
14271
14356
computedMetadata : JSON
14272
14357
containedBy : [TableOfContentsItem ]
14358
+ copiedFromDataLibraryTemplateId : String
14273
14359
14274
14360
"""
14275
14361
Reads a single `DataLayer` that is related to this `TableOfContentsItem`.
0 commit comments