@promoboxx/graphql-gateway-types 1.628.0 → 1.629.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 +16 -4
- package/index.d.ts +4 -0
- package/package.json +1 -1
- package/schema.graphql +4 -3
package/graphql.schema.json
CHANGED
|
@@ -36718,8 +36718,8 @@
|
|
|
36718
36718
|
"name": "Int",
|
|
36719
36719
|
"ofType": null
|
|
36720
36720
|
},
|
|
36721
|
-
"isDeprecated":
|
|
36722
|
-
"deprecationReason":
|
|
36721
|
+
"isDeprecated": true,
|
|
36722
|
+
"deprecationReason": "Use views instead"
|
|
36723
36723
|
},
|
|
36724
36724
|
{
|
|
36725
36725
|
"name": "likes",
|
|
@@ -36742,8 +36742,8 @@
|
|
|
36742
36742
|
"name": "Int",
|
|
36743
36743
|
"ofType": null
|
|
36744
36744
|
},
|
|
36745
|
-
"isDeprecated":
|
|
36746
|
-
"deprecationReason":
|
|
36745
|
+
"isDeprecated": true,
|
|
36746
|
+
"deprecationReason": "Use views instead"
|
|
36747
36747
|
},
|
|
36748
36748
|
{
|
|
36749
36749
|
"name": "reach",
|
|
@@ -36802,6 +36802,18 @@
|
|
|
36802
36802
|
"name": "Int",
|
|
36803
36803
|
"ofType": null
|
|
36804
36804
|
},
|
|
36805
|
+
"isDeprecated": true,
|
|
36806
|
+
"deprecationReason": "Use views instead"
|
|
36807
|
+
},
|
|
36808
|
+
{
|
|
36809
|
+
"name": "views",
|
|
36810
|
+
"description": null,
|
|
36811
|
+
"args": [],
|
|
36812
|
+
"type": {
|
|
36813
|
+
"kind": "SCALAR",
|
|
36814
|
+
"name": "Int",
|
|
36815
|
+
"ofType": null
|
|
36816
|
+
},
|
|
36805
36817
|
"isDeprecated": false,
|
|
36806
36818
|
"deprecationReason": null
|
|
36807
36819
|
}
|
package/index.d.ts
CHANGED
|
@@ -4009,14 +4009,18 @@ export type InstagramStat = {
|
|
|
4009
4009
|
__typename?: 'InstagramStat';
|
|
4010
4010
|
comments?: Maybe<Scalars['Int']['output']>;
|
|
4011
4011
|
engagements?: Maybe<Scalars['Int']['output']>;
|
|
4012
|
+
/** @deprecated Use views instead */
|
|
4012
4013
|
impressions?: Maybe<Scalars['Int']['output']>;
|
|
4013
4014
|
likes?: Maybe<Scalars['Int']['output']>;
|
|
4015
|
+
/** @deprecated Use views instead */
|
|
4014
4016
|
plays?: Maybe<Scalars['Int']['output']>;
|
|
4015
4017
|
reach?: Maybe<Scalars['Int']['output']>;
|
|
4016
4018
|
saved?: Maybe<Scalars['Int']['output']>;
|
|
4017
4019
|
shares?: Maybe<Scalars['Int']['output']>;
|
|
4018
4020
|
total_interactions?: Maybe<Scalars['Int']['output']>;
|
|
4021
|
+
/** @deprecated Use views instead */
|
|
4019
4022
|
video_views?: Maybe<Scalars['Int']['output']>;
|
|
4023
|
+
views?: Maybe<Scalars['Int']['output']>;
|
|
4020
4024
|
};
|
|
4021
4025
|
|
|
4022
4026
|
/** Boolean expression to compare columns of type "Int". All fields are combined with logical 'AND'. */
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -3863,14 +3863,15 @@ type InstagramShare {
|
|
|
3863
3863
|
type InstagramStat {
|
|
3864
3864
|
comments: Int
|
|
3865
3865
|
engagements: Int
|
|
3866
|
-
impressions: Int
|
|
3866
|
+
impressions: Int @deprecated(reason: "Use views instead")
|
|
3867
3867
|
likes: Int
|
|
3868
|
-
plays: Int
|
|
3868
|
+
plays: Int @deprecated(reason: "Use views instead")
|
|
3869
3869
|
reach: Int
|
|
3870
3870
|
saved: Int
|
|
3871
3871
|
shares: Int
|
|
3872
3872
|
total_interactions: Int
|
|
3873
|
-
video_views: Int
|
|
3873
|
+
video_views: Int @deprecated(reason: "Use views instead")
|
|
3874
|
+
views: Int
|
|
3874
3875
|
}
|
|
3875
3876
|
|
|
3876
3877
|
"""
|