Skip to content

Commit 611637e

Browse files
authored
Release v1.44.1 (#1052)
* Chore: Bump vulnerable versions * Chore: Sanitise null characters in FormSG submissions * Chore: Add dropdown to select different model type for AISAY's generalised model * Fix: Slack bot display name should be optional * Fix: Auto open side drawer when adding a new FormSG connection
2 parents 7d2dd8a + b439397 commit 611637e

File tree

21 files changed

+2094
-1824
lines changed

21 files changed

+2094
-1824
lines changed

gql-codegen.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -37,10 +37,10 @@ const config: CodegenConfig = {
3737
output: 'type-fest#JsonObject',
3838
},
3939
},
40-
JSON: {
40+
JSONPrimitive: {
4141
type: {
42-
input: 'type-fest#JsonValue',
43-
output: 'type-fest#JsonValue',
42+
input: 'type-fest#JsonPrimitive',
43+
output: 'type-fest#JsonPrimitive',
4444
},
4545
},
4646
Any: {
@@ -117,7 +117,7 @@ const config: CodegenConfig = {
117117
scalars: {
118118
// Use type-fest's JSON types in generated code, as they're nice.
119119
JSONObject: 'type-fest#JsonObject',
120-
JSON: 'type-fest#JsonValue',
120+
JSONPrimitive: 'type-fest#JsonPrimitive',
121121
Any: 'any',
122122
},
123123
},

0 commit comments

Comments
 (0)