@promoboxx/graphql-gateway-types 1.52.0 → 1.54.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 +40 -0
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/schema.graphql +2 -0
package/graphql.schema.json
CHANGED
|
@@ -62473,6 +62473,26 @@
|
|
|
62473
62473
|
"isDeprecated": false,
|
|
62474
62474
|
"deprecationReason": null
|
|
62475
62475
|
},
|
|
62476
|
+
{
|
|
62477
|
+
"name": "brands",
|
|
62478
|
+
"description": null,
|
|
62479
|
+
"args": [],
|
|
62480
|
+
"type": {
|
|
62481
|
+
"kind": "LIST",
|
|
62482
|
+
"name": null,
|
|
62483
|
+
"ofType": {
|
|
62484
|
+
"kind": "NON_NULL",
|
|
62485
|
+
"name": null,
|
|
62486
|
+
"ofType": {
|
|
62487
|
+
"kind": "OBJECT",
|
|
62488
|
+
"name": "Brand",
|
|
62489
|
+
"ofType": null
|
|
62490
|
+
}
|
|
62491
|
+
}
|
|
62492
|
+
},
|
|
62493
|
+
"isDeprecated": false,
|
|
62494
|
+
"deprecationReason": null
|
|
62495
|
+
},
|
|
62476
62496
|
{
|
|
62477
62497
|
"name": "clickwrap_accepted_at",
|
|
62478
62498
|
"description": null,
|
|
@@ -62533,6 +62553,26 @@
|
|
|
62533
62553
|
"isDeprecated": false,
|
|
62534
62554
|
"deprecationReason": null
|
|
62535
62555
|
},
|
|
62556
|
+
{
|
|
62557
|
+
"name": "divisions",
|
|
62558
|
+
"description": null,
|
|
62559
|
+
"args": [],
|
|
62560
|
+
"type": {
|
|
62561
|
+
"kind": "LIST",
|
|
62562
|
+
"name": null,
|
|
62563
|
+
"ofType": {
|
|
62564
|
+
"kind": "NON_NULL",
|
|
62565
|
+
"name": null,
|
|
62566
|
+
"ofType": {
|
|
62567
|
+
"kind": "OBJECT",
|
|
62568
|
+
"name": "Division",
|
|
62569
|
+
"ofType": null
|
|
62570
|
+
}
|
|
62571
|
+
}
|
|
62572
|
+
},
|
|
62573
|
+
"isDeprecated": false,
|
|
62574
|
+
"deprecationReason": null
|
|
62575
|
+
},
|
|
62536
62576
|
{
|
|
62537
62577
|
"name": "email",
|
|
62538
62578
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -7456,11 +7456,13 @@ export type User = {
|
|
|
7456
7456
|
access_invitations?: Maybe<Array<AccessInvitation>>;
|
|
7457
7457
|
access_requests?: Maybe<Array<AccessRequest>>;
|
|
7458
7458
|
actionable_access_requests?: Maybe<Array<AccessRequest>>;
|
|
7459
|
+
brands?: Maybe<Array<Brand>>;
|
|
7459
7460
|
clickwrap_accepted_at?: Maybe<Scalars['String']['output']>;
|
|
7460
7461
|
company?: Maybe<Scalars['String']['output']>;
|
|
7461
7462
|
created_at?: Maybe<Scalars['String']['output']>;
|
|
7462
7463
|
created_by_id?: Maybe<Scalars['ID']['output']>;
|
|
7463
7464
|
deactivated_by?: Maybe<Scalars['String']['output']>;
|
|
7465
|
+
divisions?: Maybe<Array<Division>>;
|
|
7464
7466
|
email?: Maybe<Scalars['String']['output']>;
|
|
7465
7467
|
facebook_accounts?: Maybe<Array<FacebookAccount>>;
|
|
7466
7468
|
first_name?: Maybe<Scalars['String']['output']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -5850,11 +5850,13 @@ type User {
|
|
|
5850
5850
|
access_invitations: [AccessInvitation!]
|
|
5851
5851
|
access_requests: [AccessRequest!]
|
|
5852
5852
|
actionable_access_requests: [AccessRequest!]
|
|
5853
|
+
brands: [Brand!]
|
|
5853
5854
|
clickwrap_accepted_at: String
|
|
5854
5855
|
company: String
|
|
5855
5856
|
created_at: String
|
|
5856
5857
|
created_by_id: ID
|
|
5857
5858
|
deactivated_by: String
|
|
5859
|
+
divisions: [Division!]
|
|
5858
5860
|
email: String
|
|
5859
5861
|
facebook_accounts: [FacebookAccount!]
|
|
5860
5862
|
first_name: String
|