@promoboxx/graphql-gateway-types 1.623.0 → 1.625.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.
- package/graphql.schema.json +20 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/schema.graphql +1 -0
package/graphql.schema.json
CHANGED
|
@@ -93454,6 +93454,26 @@
|
|
|
93454
93454
|
"isDeprecated": false,
|
|
93455
93455
|
"deprecationReason": null
|
|
93456
93456
|
},
|
|
93457
|
+
{
|
|
93458
|
+
"name": "enrollment_flow_sessions",
|
|
93459
|
+
"description": null,
|
|
93460
|
+
"args": [],
|
|
93461
|
+
"type": {
|
|
93462
|
+
"kind": "LIST",
|
|
93463
|
+
"name": null,
|
|
93464
|
+
"ofType": {
|
|
93465
|
+
"kind": "NON_NULL",
|
|
93466
|
+
"name": null,
|
|
93467
|
+
"ofType": {
|
|
93468
|
+
"kind": "OBJECT",
|
|
93469
|
+
"name": "EnrollmentSession",
|
|
93470
|
+
"ofType": null
|
|
93471
|
+
}
|
|
93472
|
+
}
|
|
93473
|
+
},
|
|
93474
|
+
"isDeprecated": false,
|
|
93475
|
+
"deprecationReason": null
|
|
93476
|
+
},
|
|
93457
93477
|
{
|
|
93458
93478
|
"name": "facebook_accounts",
|
|
93459
93479
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -11880,6 +11880,7 @@ export type User = {
|
|
|
11880
11880
|
deactivated_by?: Maybe<Scalars['String']['output']>;
|
|
11881
11881
|
divisions?: Maybe<Array<Division>>;
|
|
11882
11882
|
email?: Maybe<Scalars['String']['output']>;
|
|
11883
|
+
enrollment_flow_sessions?: Maybe<Array<EnrollmentSession>>;
|
|
11883
11884
|
facebook_accounts?: Maybe<Array<FacebookAccount>>;
|
|
11884
11885
|
first_name?: Maybe<Scalars['String']['output']>;
|
|
11885
11886
|
id?: Maybe<Scalars['ID']['output']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -10785,6 +10785,7 @@ type User {
|
|
|
10785
10785
|
deactivated_by: String
|
|
10786
10786
|
divisions: [Division!]
|
|
10787
10787
|
email: String
|
|
10788
|
+
enrollment_flow_sessions: [EnrollmentSession!]
|
|
10788
10789
|
facebook_accounts: [FacebookAccount!]
|
|
10789
10790
|
first_name: String
|
|
10790
10791
|
id: ID
|