@promoboxx/graphql-gateway-types 1.409.0 → 1.411.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
|
@@ -6971,6 +6971,26 @@
|
|
|
6971
6971
|
"isDeprecated": false,
|
|
6972
6972
|
"deprecationReason": null
|
|
6973
6973
|
},
|
|
6974
|
+
{
|
|
6975
|
+
"name": "divisions",
|
|
6976
|
+
"description": null,
|
|
6977
|
+
"args": [],
|
|
6978
|
+
"type": {
|
|
6979
|
+
"kind": "LIST",
|
|
6980
|
+
"name": null,
|
|
6981
|
+
"ofType": {
|
|
6982
|
+
"kind": "NON_NULL",
|
|
6983
|
+
"name": null,
|
|
6984
|
+
"ofType": {
|
|
6985
|
+
"kind": "OBJECT",
|
|
6986
|
+
"name": "Division",
|
|
6987
|
+
"ofType": null
|
|
6988
|
+
}
|
|
6989
|
+
}
|
|
6990
|
+
},
|
|
6991
|
+
"isDeprecated": false,
|
|
6992
|
+
"deprecationReason": null
|
|
6993
|
+
},
|
|
6974
6994
|
{
|
|
6975
6995
|
"name": "email",
|
|
6976
6996
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -809,6 +809,7 @@ export type Brand = {
|
|
|
809
809
|
digital_asset_tags: Array<Scalars['String']['output']>;
|
|
810
810
|
division_alias?: Maybe<Scalars['String']['output']>;
|
|
811
811
|
division_report_summary_enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
812
|
+
divisions?: Maybe<Array<Division>>;
|
|
812
813
|
email?: Maybe<Scalars['String']['output']>;
|
|
813
814
|
engagement_flow_header_text?: Maybe<Scalars['String']['output']>;
|
|
814
815
|
external_auth_login_url?: Maybe<Scalars['String']['output']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED