@taimos/radball-digital-api 0.0.5 → 0.0.7
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/League.html +2 -3
- package/docs/types/ModifyLeagueInput.html +2 -3
- package/docs/types/ModifySeasonInput.html +3 -2
- package/docs/types/SaveLeagueInput.html +2 -3
- package/docs/types/SaveSeasonInput.html +3 -2
- package/docs/types/Season.html +3 -2
- package/lib/generated/graphql.model.generated.d.ts +3 -3
- package/lib/generated/graphql.model.generated.js +1 -1
- package/llm.md +786 -0
- package/package.json +1 -1
- package/schema.graphql +3 -3
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -38,6 +38,7 @@ type Season @aws_cognito_user_pools {
|
|
|
38
38
|
association: Association!
|
|
39
39
|
leagues: [League]
|
|
40
40
|
leagueOrder: [ID!]
|
|
41
|
+
additionalEligibleAssociations: [Association]
|
|
41
42
|
}
|
|
42
43
|
|
|
43
44
|
type League @aws_cognito_user_pools {
|
|
@@ -45,7 +46,6 @@ type League @aws_cognito_user_pools {
|
|
|
45
46
|
name: String!
|
|
46
47
|
association: Association!
|
|
47
48
|
season: Season!
|
|
48
|
-
additionalEligibleAssociations: [Association]
|
|
49
49
|
shortName: String
|
|
50
50
|
description: String!
|
|
51
51
|
minAge: Int
|
|
@@ -235,6 +235,7 @@ input SaveSeasonInput {
|
|
|
235
235
|
associationId: ID!
|
|
236
236
|
registrationStart: AWSDate
|
|
237
237
|
registrationEnd: AWSDate!
|
|
238
|
+
additionalEligibleAssociations: [ID]!
|
|
238
239
|
}
|
|
239
240
|
|
|
240
241
|
input ModifySeasonInput {
|
|
@@ -245,6 +246,7 @@ input ModifySeasonInput {
|
|
|
245
246
|
registrationStart: AWSDate
|
|
246
247
|
registrationEnd: AWSDate!
|
|
247
248
|
leagueOrder: [ID!]
|
|
249
|
+
additionalEligibleAssociations: [ID]!
|
|
248
250
|
}
|
|
249
251
|
|
|
250
252
|
input SaveLeagueInput {
|
|
@@ -252,7 +254,6 @@ input SaveLeagueInput {
|
|
|
252
254
|
name: String!
|
|
253
255
|
shortName: String
|
|
254
256
|
description: String!
|
|
255
|
-
additionalEligibleAssociations: [ID]!
|
|
256
257
|
minAge: Int
|
|
257
258
|
maxAge: Int
|
|
258
259
|
matchdayDates: [AWSDate!]
|
|
@@ -262,7 +263,6 @@ input ModifyLeagueInput {
|
|
|
262
263
|
name: String!
|
|
263
264
|
shortName: String
|
|
264
265
|
description: String!
|
|
265
|
-
additionalEligibleAssociations: [ID]!
|
|
266
266
|
minAge: Int
|
|
267
267
|
maxAge: Int
|
|
268
268
|
matchdayDates: [AWSDate!]
|