diff --git a/gradle.properties b/gradle.properties index f2a3061..c0d02c3 100644 --- a/gradle.properties +++ b/gradle.properties @@ -1,7 +1,7 @@ kotlin.code.style=official cliGroup=com.sourceplusplus -projectVersion=0.4.3 +projectVersion=0.4.4 vertxVersion=4.2.4 graalVersion = 21.3.0 diff --git a/src/main/graphql/schema.json b/src/main/graphql/schema.json index 9d673d3..ceff540 100644 --- a/src/main/graphql/schema.json +++ b/src/main/graphql/schema.json @@ -552,6 +552,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "applyImmediately", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "applied", "description": null, @@ -678,6 +690,16 @@ }, "defaultValue": null }, + { + "name": "applyImmediately", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, { "name": "throttle", "description": null, @@ -780,6 +802,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "applyImmediately", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "applied", "description": null, @@ -1019,6 +1053,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "applyImmediately", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "applied", "description": null, @@ -1177,6 +1223,16 @@ }, "defaultValue": null }, + { + "name": "applyImmediately", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, { "name": "throttle", "description": null, @@ -1327,6 +1383,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "applyImmediately", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "applied", "description": null, @@ -1495,6 +1563,16 @@ }, "defaultValue": null }, + { + "name": "applyImmediately", + "description": null, + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, { "name": "throttle", "description": null, @@ -1695,6 +1773,18 @@ "isDeprecated": false, "deprecationReason": null }, + { + "name": "applyImmediately", + "description": null, + "args": [], + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "isDeprecated": false, + "deprecationReason": null + }, { "name": "applied", "description": null, @@ -1805,9 +1895,19 @@ }, "defaultValue": null }, + { + "name": "applyImmediately", + "description": "condition: String #todo: impl\nexpiresAt: Long #todo: impl\nhitLimit: Int #todo: impl", + "type": { + "kind": "SCALAR", + "name": "Boolean", + "ofType": null + }, + "defaultValue": null + }, { "name": "meta", - "description": "condition: String #todo: impl\nexpiresAt: Long #todo: impl\nhitLimit: Int #todo: impl\nthrottle: InstrumentThrottleInput #todo: impl", + "description": "throttle: InstrumentThrottleInput #todo: impl", "type": { "kind": "LIST", "name": null, @@ -1905,22 +2005,6 @@ "isDeprecated": false, "deprecationReason": null }, - { - "name": "userDefined", - "description": null, - "args": [], - "type": { - "kind": "NON_NULL", - "name": null, - "ofType": { - "kind": "SCALAR", - "name": "Boolean", - "ofType": null - } - }, - "isDeprecated": false, - "deprecationReason": null - }, { "name": "viewMetrics", "description": null, @@ -4162,6 +4246,12 @@ "description": null, "isDeprecated": false, "deprecationReason": null + }, + { + "name": "SHOW_QUICK_STATS", + "description": null, + "isDeprecated": false, + "deprecationReason": null } ], "possibleTypes": null diff --git a/src/main/graphql/view/add-live-view-subscription.graphql b/src/main/graphql/view/add-live-view-subscription.graphql index 2705a4e..da54cbd 100644 --- a/src/main/graphql/view/add-live-view-subscription.graphql +++ b/src/main/graphql/view/add-live-view-subscription.graphql @@ -15,7 +15,6 @@ mutation addLiveViewSubscription($input: LiveViewSubscriptionInput!) { } liveViewConfig { viewName - userDefined viewMetrics refreshRateLimit } diff --git a/src/main/graphql/view/get-live-view-subscriptions.graphql b/src/main/graphql/view/get-live-view-subscriptions.graphql index 22a6408..326ba9b 100644 --- a/src/main/graphql/view/get-live-view-subscriptions.graphql +++ b/src/main/graphql/view/get-live-view-subscriptions.graphql @@ -15,7 +15,6 @@ query getLiveViewSubscriptions { } liveViewConfig { viewName - userDefined viewMetrics refreshRateLimit }