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