@promoboxx/graphql-gateway-types 1.452.0 → 1.455.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.
@@ -6887,6 +6887,18 @@
6887
6887
  "isDeprecated": false,
6888
6888
  "deprecationReason": null
6889
6889
  },
6890
+ {
6891
+ "name": "default_registration_key",
6892
+ "description": null,
6893
+ "args": [],
6894
+ "type": {
6895
+ "kind": "OBJECT",
6896
+ "name": "RegistrationKey",
6897
+ "ofType": null
6898
+ },
6899
+ "isDeprecated": false,
6900
+ "deprecationReason": null
6901
+ },
6890
6902
  {
6891
6903
  "name": "default_registration_key_id",
6892
6904
  "description": null,
@@ -35936,6 +35948,18 @@
35936
35948
  "name": "InstagramStat",
35937
35949
  "description": null,
35938
35950
  "fields": [
35951
+ {
35952
+ "name": "comments",
35953
+ "description": null,
35954
+ "args": [],
35955
+ "type": {
35956
+ "kind": "SCALAR",
35957
+ "name": "Int",
35958
+ "ofType": null
35959
+ },
35960
+ "isDeprecated": false,
35961
+ "deprecationReason": null
35962
+ },
35939
35963
  {
35940
35964
  "name": "engagements",
35941
35965
  "description": null,
@@ -35960,6 +35984,30 @@
35960
35984
  "isDeprecated": false,
35961
35985
  "deprecationReason": null
35962
35986
  },
35987
+ {
35988
+ "name": "likes",
35989
+ "description": null,
35990
+ "args": [],
35991
+ "type": {
35992
+ "kind": "SCALAR",
35993
+ "name": "Int",
35994
+ "ofType": null
35995
+ },
35996
+ "isDeprecated": false,
35997
+ "deprecationReason": null
35998
+ },
35999
+ {
36000
+ "name": "plays",
36001
+ "description": null,
36002
+ "args": [],
36003
+ "type": {
36004
+ "kind": "SCALAR",
36005
+ "name": "Int",
36006
+ "ofType": null
36007
+ },
36008
+ "isDeprecated": false,
36009
+ "deprecationReason": null
36010
+ },
35963
36011
  {
35964
36012
  "name": "reach",
35965
36013
  "description": null,
@@ -35984,6 +36032,30 @@
35984
36032
  "isDeprecated": false,
35985
36033
  "deprecationReason": null
35986
36034
  },
36035
+ {
36036
+ "name": "shares",
36037
+ "description": null,
36038
+ "args": [],
36039
+ "type": {
36040
+ "kind": "SCALAR",
36041
+ "name": "Int",
36042
+ "ofType": null
36043
+ },
36044
+ "isDeprecated": false,
36045
+ "deprecationReason": null
36046
+ },
36047
+ {
36048
+ "name": "total_interactions",
36049
+ "description": null,
36050
+ "args": [],
36051
+ "type": {
36052
+ "kind": "SCALAR",
36053
+ "name": "Int",
36054
+ "ofType": null
36055
+ },
36056
+ "isDeprecated": false,
36057
+ "deprecationReason": null
36058
+ },
35987
36059
  {
35988
36060
  "name": "video_views",
35989
36061
  "description": null,
package/index.d.ts CHANGED
@@ -803,6 +803,7 @@ export type Brand = {
803
803
  dealer_funded_management_fee_percentage?: Maybe<Scalars['Int']['output']>;
804
804
  default_enrollment_campaign?: Maybe<Campaign>;
805
805
  default_enrollment_campaign_id?: Maybe<Scalars['Int']['output']>;
806
+ default_registration_key?: Maybe<RegistrationKey>;
806
807
  default_registration_key_id?: Maybe<Scalars['Int']['output']>;
807
808
  default_timeout_in_minutes?: Maybe<Scalars['Int']['output']>;
808
809
  demo?: Maybe<Scalars['Boolean']['output']>;
@@ -3929,10 +3930,15 @@ export type InstagramShare = {
3929
3930
 
3930
3931
  export type InstagramStat = {
3931
3932
  __typename?: 'InstagramStat';
3933
+ comments?: Maybe<Scalars['Int']['output']>;
3932
3934
  engagements?: Maybe<Scalars['Int']['output']>;
3933
3935
  impressions?: Maybe<Scalars['Int']['output']>;
3936
+ likes?: Maybe<Scalars['Int']['output']>;
3937
+ plays?: Maybe<Scalars['Int']['output']>;
3934
3938
  reach?: Maybe<Scalars['Int']['output']>;
3935
3939
  saved?: Maybe<Scalars['Int']['output']>;
3940
+ shares?: Maybe<Scalars['Int']['output']>;
3941
+ total_interactions?: Maybe<Scalars['Int']['output']>;
3936
3942
  video_views?: Maybe<Scalars['Int']['output']>;
3937
3943
  };
3938
3944
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.452.0",
3
+ "version": "1.455.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -781,6 +781,7 @@ type Brand {
781
781
  dealer_funded_management_fee_percentage: Int
782
782
  default_enrollment_campaign: Campaign
783
783
  default_enrollment_campaign_id: Int
784
+ default_registration_key: RegistrationKey
784
785
  default_registration_key_id: Int
785
786
  default_timeout_in_minutes: Int
786
787
  demo: Boolean
@@ -3784,10 +3785,15 @@ type InstagramShare {
3784
3785
  }
3785
3786
 
3786
3787
  type InstagramStat {
3788
+ comments: Int
3787
3789
  engagements: Int
3788
3790
  impressions: Int
3791
+ likes: Int
3792
+ plays: Int
3789
3793
  reach: Int
3790
3794
  saved: Int
3795
+ shares: Int
3796
+ total_interactions: Int
3791
3797
  video_views: Int
3792
3798
  }
3793
3799