@promoboxx/graphql-gateway-types 1.954.0 → 1.956.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 +12 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/schema.graphql +1 -0
package/graphql.schema.json
CHANGED
|
@@ -84524,6 +84524,18 @@
|
|
|
84524
84524
|
"isDeprecated": false,
|
|
84525
84525
|
"deprecationReason": null
|
|
84526
84526
|
},
|
|
84527
|
+
{
|
|
84528
|
+
"name": "facebook_api_error_user_msg",
|
|
84529
|
+
"description": null,
|
|
84530
|
+
"args": [],
|
|
84531
|
+
"type": {
|
|
84532
|
+
"kind": "SCALAR",
|
|
84533
|
+
"name": "String",
|
|
84534
|
+
"ofType": null
|
|
84535
|
+
},
|
|
84536
|
+
"isDeprecated": false,
|
|
84537
|
+
"deprecationReason": null
|
|
84538
|
+
},
|
|
84527
84539
|
{
|
|
84528
84540
|
"name": "facebook_page",
|
|
84529
84541
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -10845,6 +10845,7 @@ export type Share = {
|
|
|
10845
10845
|
facebook_api_error_message?: Maybe<Scalars['String']['output']>;
|
|
10846
10846
|
facebook_api_error_subcode?: Maybe<Scalars['String']['output']>;
|
|
10847
10847
|
facebook_api_error_type?: Maybe<Scalars['String']['output']>;
|
|
10848
|
+
facebook_api_error_user_msg?: Maybe<Scalars['String']['output']>;
|
|
10848
10849
|
facebook_page?: Maybe<FacebookPage>;
|
|
10849
10850
|
facebook_page_id?: Maybe<Scalars['ID']['output']>;
|
|
10850
10851
|
favorite_count?: Maybe<Scalars['Int']['output']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -8979,6 +8979,7 @@ type Share {
|
|
|
8979
8979
|
facebook_api_error_message: String
|
|
8980
8980
|
facebook_api_error_subcode: String
|
|
8981
8981
|
facebook_api_error_type: String
|
|
8982
|
+
facebook_api_error_user_msg: String
|
|
8982
8983
|
facebook_page: FacebookPage
|
|
8983
8984
|
facebook_page_id: ID
|
|
8984
8985
|
favorite_count: Int
|