@promoboxx/graphql-gateway-types 1.1022.0 → 1.1024.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
|
@@ -8009,6 +8009,26 @@
|
|
|
8009
8009
|
"isDeprecated": false,
|
|
8010
8010
|
"deprecationReason": null
|
|
8011
8011
|
},
|
|
8012
|
+
{
|
|
8013
|
+
"name": "smart_groups",
|
|
8014
|
+
"description": null,
|
|
8015
|
+
"args": [],
|
|
8016
|
+
"type": {
|
|
8017
|
+
"kind": "LIST",
|
|
8018
|
+
"name": null,
|
|
8019
|
+
"ofType": {
|
|
8020
|
+
"kind": "NON_NULL",
|
|
8021
|
+
"name": null,
|
|
8022
|
+
"ofType": {
|
|
8023
|
+
"kind": "OBJECT",
|
|
8024
|
+
"name": "Filter",
|
|
8025
|
+
"ofType": null
|
|
8026
|
+
}
|
|
8027
|
+
}
|
|
8028
|
+
},
|
|
8029
|
+
"isDeprecated": false,
|
|
8030
|
+
"deprecationReason": null
|
|
8031
|
+
},
|
|
8012
8032
|
{
|
|
8013
8033
|
"name": "sso_connections",
|
|
8014
8034
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -890,6 +890,7 @@ export type Brand = {
|
|
|
890
890
|
show_manage_brands_link?: Maybe<Scalars['Boolean']['output']>;
|
|
891
891
|
show_message_campaigns?: Maybe<Scalars['Boolean']['output']>;
|
|
892
892
|
slug?: Maybe<Scalars['String']['output']>;
|
|
893
|
+
smart_groups?: Maybe<Array<Filter>>;
|
|
893
894
|
sso_connections?: Maybe<Array<Scalars['String']['output']>>;
|
|
894
895
|
sso_name?: Maybe<Scalars['String']['output']>;
|
|
895
896
|
sso_url?: Maybe<Scalars['String']['output']>;
|
package/package.json
CHANGED