@taimos/radball-digital-api 0.0.4 → 0.0.6
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/docs/assets/search.js +1 -1
- package/docs/types/ModifySeasonInput.html +3 -2
- package/docs/types/Season.html +3 -2
- package/lib/generated/graphql.model.generated.d.ts +2 -0
- package/lib/generated/graphql.model.generated.js +1 -1
- package/lib/validation.js +16 -1
- package/llm.md +786 -0
- package/package.json +1 -1
- package/schema.graphql +4 -0
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -37,6 +37,7 @@ type Season @aws_cognito_user_pools {
|
|
|
37
37
|
registrationEnd: AWSDate!
|
|
38
38
|
association: Association!
|
|
39
39
|
leagues: [League]
|
|
40
|
+
leagueOrder: [ID!]
|
|
40
41
|
}
|
|
41
42
|
|
|
42
43
|
type League @aws_cognito_user_pools {
|
|
@@ -243,6 +244,7 @@ input ModifySeasonInput {
|
|
|
243
244
|
endDate: AWSDate!
|
|
244
245
|
registrationStart: AWSDate
|
|
245
246
|
registrationEnd: AWSDate!
|
|
247
|
+
leagueOrder: [ID!]
|
|
246
248
|
}
|
|
247
249
|
|
|
248
250
|
input SaveLeagueInput {
|
|
@@ -441,6 +443,8 @@ input RegisterTeamsForSeasonInput {
|
|
|
441
443
|
preferredDates: [SavePreferredMatchdayDateInput]
|
|
442
444
|
}
|
|
443
445
|
|
|
446
|
+
|
|
447
|
+
|
|
444
448
|
# Queries
|
|
445
449
|
type Query {
|
|
446
450
|
getAssociationById(id: ID!): Association @aws_cognito_user_pools
|