@promoboxx/graphql-gateway-types 1.95.0 → 1.97.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 +18 -0
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/schema.graphql +2 -0
package/graphql.schema.json
CHANGED
|
@@ -6357,6 +6357,18 @@
|
|
|
6357
6357
|
"isDeprecated": false,
|
|
6358
6358
|
"deprecationReason": null
|
|
6359
6359
|
},
|
|
6360
|
+
{
|
|
6361
|
+
"name": "on_embeddings",
|
|
6362
|
+
"description": null,
|
|
6363
|
+
"args": [],
|
|
6364
|
+
"type": {
|
|
6365
|
+
"kind": "SCALAR",
|
|
6366
|
+
"name": "Boolean",
|
|
6367
|
+
"ofType": null
|
|
6368
|
+
},
|
|
6369
|
+
"isDeprecated": false,
|
|
6370
|
+
"deprecationReason": null
|
|
6371
|
+
},
|
|
6360
6372
|
{
|
|
6361
6373
|
"name": "phone",
|
|
6362
6374
|
"description": null,
|
|
@@ -7199,6 +7211,12 @@
|
|
|
7199
7211
|
"isDeprecated": false,
|
|
7200
7212
|
"deprecationReason": null
|
|
7201
7213
|
},
|
|
7214
|
+
{
|
|
7215
|
+
"name": "on_embeddings",
|
|
7216
|
+
"description": null,
|
|
7217
|
+
"isDeprecated": false,
|
|
7218
|
+
"deprecationReason": null
|
|
7219
|
+
},
|
|
7202
7220
|
{
|
|
7203
7221
|
"name": "settings",
|
|
7204
7222
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -733,6 +733,7 @@ export type Brand = {
|
|
|
733
733
|
name?: Maybe<Scalars['String']['output']>;
|
|
734
734
|
new_designer_enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
735
735
|
offboard_redirect?: Maybe<Scalars['String']['output']>;
|
|
736
|
+
on_embeddings?: Maybe<Scalars['Boolean']['output']>;
|
|
736
737
|
phone?: Maybe<Scalars['String']['output']>;
|
|
737
738
|
prospected_by_id?: Maybe<Scalars['ID']['output']>;
|
|
738
739
|
region_data_stored_in_custom_fields?: Maybe<Scalars['Boolean']['output']>;
|
|
@@ -825,6 +826,7 @@ export type BrandFields =
|
|
|
825
826
|
| 'industry_list'
|
|
826
827
|
| 'instagram_accounts'
|
|
827
828
|
| 'locales'
|
|
829
|
+
| 'on_embeddings'
|
|
828
830
|
| 'settings'
|
|
829
831
|
| 'smart_groups'
|
|
830
832
|
| 'sso_connections'
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -716,6 +716,7 @@ type Brand {
|
|
|
716
716
|
name: String
|
|
717
717
|
new_designer_enabled: Boolean
|
|
718
718
|
offboard_redirect: String
|
|
719
|
+
on_embeddings: Boolean
|
|
719
720
|
phone: String
|
|
720
721
|
prospected_by_id: ID
|
|
721
722
|
region_data_stored_in_custom_fields: Boolean
|
|
@@ -806,6 +807,7 @@ enum BrandFields {
|
|
|
806
807
|
industry_list
|
|
807
808
|
instagram_accounts
|
|
808
809
|
locales
|
|
810
|
+
on_embeddings
|
|
809
811
|
settings
|
|
810
812
|
smart_groups
|
|
811
813
|
sso_connections
|