@promoboxx/graphql-gateway-types 1.666.0 → 1.668.0

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.
@@ -36026,6 +36026,41 @@
36026
36026
  "defaultValue": null,
36027
36027
  "isDeprecated": false,
36028
36028
  "deprecationReason": null
36029
+ },
36030
+ {
36031
+ "name": "filters",
36032
+ "description": null,
36033
+ "type": {
36034
+ "kind": "INPUT_OBJECT",
36035
+ "name": "GetEnrollmentSessionsFilters",
36036
+ "ofType": null
36037
+ },
36038
+ "defaultValue": null,
36039
+ "isDeprecated": false,
36040
+ "deprecationReason": null
36041
+ }
36042
+ ],
36043
+ "interfaces": null,
36044
+ "enumValues": null,
36045
+ "possibleTypes": null
36046
+ },
36047
+ {
36048
+ "kind": "INPUT_OBJECT",
36049
+ "name": "GetEnrollmentSessionsFilters",
36050
+ "description": null,
36051
+ "fields": null,
36052
+ "inputFields": [
36053
+ {
36054
+ "name": "completed",
36055
+ "description": null,
36056
+ "type": {
36057
+ "kind": "SCALAR",
36058
+ "name": "Boolean",
36059
+ "ofType": null
36060
+ },
36061
+ "defaultValue": null,
36062
+ "isDeprecated": false,
36063
+ "deprecationReason": null
36029
36064
  }
36030
36065
  ],
36031
36066
  "interfaces": null,
@@ -96354,6 +96389,26 @@
96354
96389
  "isDeprecated": false,
96355
96390
  "deprecationReason": null
96356
96391
  },
96392
+ {
96393
+ "name": "open_enrollment_flow_sessions",
96394
+ "description": null,
96395
+ "args": [],
96396
+ "type": {
96397
+ "kind": "LIST",
96398
+ "name": null,
96399
+ "ofType": {
96400
+ "kind": "NON_NULL",
96401
+ "name": null,
96402
+ "ofType": {
96403
+ "kind": "OBJECT",
96404
+ "name": "EnrollmentSession",
96405
+ "ofType": null
96406
+ }
96407
+ }
96408
+ },
96409
+ "isDeprecated": false,
96410
+ "deprecationReason": null
96411
+ },
96357
96412
  {
96358
96413
  "name": "permissions",
96359
96414
  "description": null,
package/index.d.ts CHANGED
@@ -3899,6 +3899,11 @@ export type GetDivisionsResponse = {
3899
3899
 
3900
3900
  export type GetEnrollmentSessionParams = {
3901
3901
  fields?: InputMaybe<Array<Scalars['String']['input']>>;
3902
+ filters?: InputMaybe<GetEnrollmentSessionsFilters>;
3903
+ };
3904
+
3905
+ export type GetEnrollmentSessionsFilters = {
3906
+ completed?: InputMaybe<Scalars['Boolean']['input']>;
3902
3907
  };
3903
3908
 
3904
3909
  /** The results for an events query page. */
@@ -12215,6 +12220,7 @@ export type User = {
12215
12220
  language_preference?: Maybe<Scalars['String']['output']>;
12216
12221
  last_name?: Maybe<Scalars['String']['output']>;
12217
12222
  mobile_phone_number?: Maybe<Scalars['String']['output']>;
12223
+ open_enrollment_flow_sessions?: Maybe<Array<EnrollmentSession>>;
12218
12224
  permissions?: Maybe<Array<Permission>>;
12219
12225
  promoboxx_sales_team_member?: Maybe<Scalars['Boolean']['output']>;
12220
12226
  registration_keys?: Maybe<Array<RegistrationKey>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.666.0",
3
+ "version": "1.668.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -3738,6 +3738,11 @@ type GetDivisionsResponse {
3738
3738
 
3739
3739
  input GetEnrollmentSessionParams {
3740
3740
  fields: [String!]
3741
+ filters: GetEnrollmentSessionsFilters
3742
+ }
3743
+
3744
+ input GetEnrollmentSessionsFilters {
3745
+ completed: Boolean
3741
3746
  }
3742
3747
 
3743
3748
  """The results for an events query page."""
@@ -11053,6 +11058,7 @@ type User {
11053
11058
  language_preference: String
11054
11059
  last_name: String
11055
11060
  mobile_phone_number: String
11061
+ open_enrollment_flow_sessions: [EnrollmentSession!]
11056
11062
  permissions: [Permission!]
11057
11063
  promoboxx_sales_team_member: Boolean
11058
11064
  registration_keys: [RegistrationKey!]