@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/package.json CHANGED
@@ -73,7 +73,7 @@
73
73
  "publishConfig": {
74
74
  "access": "public"
75
75
  },
76
- "version": "0.0.5",
76
+ "version": "0.0.7",
77
77
  "jest": {
78
78
  "coverageProvider": "v8",
79
79
  "moduleNameMapper": {
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!]