Skip to content

Commit

Permalink
Merge pull request #1945 from bcgov/chore/release
Browse files Browse the repository at this point in the history
chore: release
  • Loading branch information
pbastia authored Dec 13, 2024
2 parents 9af9008 + b51c5a3 commit dce39ac
Show file tree
Hide file tree
Showing 9 changed files with 637 additions and 542 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## [1.17.3](https://github.com/bcgov/cas-cif/compare/1.17.1...1.17.3) (2024-12-13)

### Bug Fixes

- don't show archived attachments on the project attachment list ([5f14e11](https://github.com/bcgov/cas-cif/commit/5f14e112838d1d88127ba8dafa597cee37dd8c3d))

## [1.17.2](https://github.com/bcgov/cas-cif/compare/1.17.1...1.17.2) (2024-08-08)

### Bug Fixes
Expand Down
14 changes: 7 additions & 7 deletions app/schema/schema.graphql
Original file line number Diff line number Diff line change
Expand Up @@ -45423,7 +45423,7 @@ type Form implements Node {
"""
A function that can be used to dynamically alter the schema, such as altering constraints based on the contents of a table.
"""
jsonSchemaGenerator: RegProcedure
jsonSchemaGenerator: String

"""Reads and enables pagination through a set of `ProjectRevision`."""
projectRevisionsByFormChangeJsonSchemaNameAndProjectRevisionId(
Expand Down Expand Up @@ -46946,7 +46946,7 @@ input FormCondition {
jsonSchema: JSON

"""Checks for equality with the object’s `jsonSchemaGenerator` field."""
jsonSchemaGenerator: RegProcedure
jsonSchemaGenerator: String

"""Checks for equality with the object’s `rowId` field."""
rowId: Int
Expand Down Expand Up @@ -47013,6 +47013,9 @@ input FormFilter {
"""Filter by the object’s `jsonSchema` field."""
jsonSchema: JSONFilter

"""Filter by the object’s `jsonSchemaGenerator` field."""
jsonSchemaGenerator: StringFilter

"""Negates the expression."""
not: FormFilter

Expand Down Expand Up @@ -47124,7 +47127,7 @@ input FormInput {
"""
A function that can be used to dynamically alter the schema, such as altering constraints based on the contents of a table.
"""
jsonSchemaGenerator: RegProcedure
jsonSchemaGenerator: String

"""Unique short name identifier for the json_schema data."""
slug: String!
Expand Down Expand Up @@ -47166,7 +47169,7 @@ input FormPatch {
"""
A function that can be used to dynamically alter the schema, such as altering constraints based on the contents of a table.
"""
jsonSchemaGenerator: RegProcedure
jsonSchemaGenerator: String

"""Unique short name identifier for the json_schema data."""
slug: String
Expand Down Expand Up @@ -67104,9 +67107,6 @@ type Query implements Node {
session: KeycloakJwt
}

"""A builtin object identifier type for a function with argument types"""
scalar RegProcedure

"""Table containing information about report types"""
type ReportType implements Node {
"""archived at timestamp"""
Expand Down
28 changes: 14 additions & 14 deletions app/schema/schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -150710,7 +150710,7 @@
"args": [],
"type": {
"kind": "SCALAR",
"name": "RegProcedure",
"name": "String",
"ofType": null
},
"isDeprecated": false,
Expand Down Expand Up @@ -156385,7 +156385,7 @@
"description": "Checks for equality with the object’s `jsonSchemaGenerator` field.",
"type": {
"kind": "SCALAR",
"name": "RegProcedure",
"name": "String",
"ofType": null
},
"defaultValue": null
Expand Down Expand Up @@ -156609,6 +156609,16 @@
},
"defaultValue": null
},
{
"name": "jsonSchemaGenerator",
"description": "Filter by the object’s `jsonSchemaGenerator` field.",
"type": {
"kind": "INPUT_OBJECT",
"name": "StringFilter",
"ofType": null
},
"defaultValue": null
},
{
"name": "not",
"description": "Negates the expression.",
Expand Down Expand Up @@ -156998,7 +157008,7 @@
"description": "A function that can be used to dynamically alter the schema, such as altering constraints based on the contents of a table.",
"type": {
"kind": "SCALAR",
"name": "RegProcedure",
"name": "String",
"ofType": null
},
"defaultValue": null
Expand Down Expand Up @@ -157123,7 +157133,7 @@
"description": "A function that can be used to dynamically alter the schema, such as altering constraints based on the contents of a table.",
"type": {
"kind": "SCALAR",
"name": "RegProcedure",
"name": "String",
"ofType": null
},
"defaultValue": null
Expand Down Expand Up @@ -230628,16 +230638,6 @@
"enumValues": null,
"possibleTypes": null
},
{
"kind": "SCALAR",
"name": "RegProcedure",
"description": "A builtin object identifier type for a function with argument types",
"fields": null,
"inputFields": null,
"interfaces": null,
"enumValues": null,
"possibleTypes": null
},
{
"kind": "OBJECT",
"name": "ReportType",
Expand Down
Loading

0 comments on commit dce39ac

Please sign in to comment.