@promoboxx/graphql-gateway-types 1.980.0 → 1.981.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.
@@ -30943,6 +30943,66 @@
30943
30943
  "enumValues": null,
30944
30944
  "possibleTypes": null
30945
30945
  },
30946
+ {
30947
+ "kind": "OBJECT",
30948
+ "name": "EngagementBySettingItem",
30949
+ "description": null,
30950
+ "isOneOf": null,
30951
+ "fields": [
30952
+ {
30953
+ "name": "share_count",
30954
+ "description": null,
30955
+ "args": [],
30956
+ "type": {
30957
+ "kind": "NON_NULL",
30958
+ "name": null,
30959
+ "ofType": {
30960
+ "kind": "SCALAR",
30961
+ "name": "Int",
30962
+ "ofType": null
30963
+ }
30964
+ },
30965
+ "isDeprecated": false,
30966
+ "deprecationReason": null
30967
+ },
30968
+ {
30969
+ "name": "share_setting_id",
30970
+ "description": null,
30971
+ "args": [],
30972
+ "type": {
30973
+ "kind": "NON_NULL",
30974
+ "name": null,
30975
+ "ofType": {
30976
+ "kind": "SCALAR",
30977
+ "name": "ID",
30978
+ "ofType": null
30979
+ }
30980
+ },
30981
+ "isDeprecated": false,
30982
+ "deprecationReason": null
30983
+ },
30984
+ {
30985
+ "name": "share_setting_type",
30986
+ "description": null,
30987
+ "args": [],
30988
+ "type": {
30989
+ "kind": "NON_NULL",
30990
+ "name": null,
30991
+ "ofType": {
30992
+ "kind": "SCALAR",
30993
+ "name": "String",
30994
+ "ofType": null
30995
+ }
30996
+ },
30997
+ "isDeprecated": false,
30998
+ "deprecationReason": null
30999
+ }
31000
+ ],
31001
+ "inputFields": null,
31002
+ "interfaces": [],
31003
+ "enumValues": null,
31004
+ "possibleTypes": null
31005
+ },
30946
31006
  {
30947
31007
  "kind": "OBJECT",
30948
31008
  "name": "EngagementStats",
@@ -44280,6 +44340,26 @@
44280
44340
  "isDeprecated": false,
44281
44341
  "deprecationReason": null
44282
44342
  },
44343
+ {
44344
+ "name": "engagement_by_setting",
44345
+ "description": null,
44346
+ "args": [],
44347
+ "type": {
44348
+ "kind": "LIST",
44349
+ "name": null,
44350
+ "ofType": {
44351
+ "kind": "NON_NULL",
44352
+ "name": null,
44353
+ "ofType": {
44354
+ "kind": "OBJECT",
44355
+ "name": "EngagementBySettingItem",
44356
+ "ofType": null
44357
+ }
44358
+ }
44359
+ },
44360
+ "isDeprecated": false,
44361
+ "deprecationReason": null
44362
+ },
44283
44363
  {
44284
44364
  "name": "id",
44285
44365
  "description": null,
@@ -44404,9 +44484,13 @@
44404
44484
  "kind": "LIST",
44405
44485
  "name": null,
44406
44486
  "ofType": {
44407
- "kind": "OBJECT",
44408
- "name": "ShareSetting",
44409
- "ofType": null
44487
+ "kind": "NON_NULL",
44488
+ "name": null,
44489
+ "ofType": {
44490
+ "kind": "OBJECT",
44491
+ "name": "ShareSetting",
44492
+ "ofType": null
44493
+ }
44410
44494
  }
44411
44495
  },
44412
44496
  "isDeprecated": false,
package/index.d.ts CHANGED
@@ -3236,6 +3236,13 @@ export type EmailTypes = {
3236
3236
  email_types: Array<Scalars['String']['output']>;
3237
3237
  };
3238
3238
 
3239
+ export type EngagementBySettingItem = {
3240
+ __typename?: 'EngagementBySettingItem';
3241
+ share_count: Scalars['Int']['output'];
3242
+ share_setting_id: Scalars['ID']['output'];
3243
+ share_setting_type: Scalars['String']['output'];
3244
+ };
3245
+
3239
3246
  export type EngagementStats = {
3240
3247
  __typename?: 'EngagementStats';
3241
3248
  campaign_id?: Maybe<Scalars['ID']['output']>;
@@ -4748,6 +4755,7 @@ export type Invitation = {
4748
4755
  created_by_id?: Maybe<Scalars['ID']['output']>;
4749
4756
  deleted_at?: Maybe<Scalars['String']['output']>;
4750
4757
  engaged_channels?: Maybe<ShareSummary>;
4758
+ engagement_by_setting?: Maybe<Array<EngagementBySettingItem>>;
4751
4759
  id: Scalars['ID']['output'];
4752
4760
  import_key?: Maybe<Scalars['String']['output']>;
4753
4761
  link?: Maybe<Scalars['String']['output']>;
@@ -4757,7 +4765,7 @@ export type Invitation = {
4757
4765
  retailer?: Maybe<Retailer>;
4758
4766
  retailer_id: Scalars['ID']['output'];
4759
4767
  retailer_slug?: Maybe<Scalars['String']['output']>;
4760
- share_settings?: Maybe<Array<Maybe<ShareSetting>>>;
4768
+ share_settings?: Maybe<Array<ShareSetting>>;
4761
4769
  state?: Maybe<InvitationState>;
4762
4770
  status?: Maybe<InvitationStatus>;
4763
4771
  updated_at?: Maybe<Scalars['String']['output']>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.980.0",
3
+ "version": "1.981.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -3088,6 +3088,12 @@ type EmailTypes {
3088
3088
  email_types: [String!]!
3089
3089
  }
3090
3090
 
3091
+ type EngagementBySettingItem {
3092
+ share_count: Int!
3093
+ share_setting_id: ID!
3094
+ share_setting_type: String!
3095
+ }
3096
+
3091
3097
  type EngagementStats {
3092
3098
  campaign_id: ID
3093
3099
  consumer_lead_count: Int
@@ -4540,6 +4546,7 @@ type Invitation {
4540
4546
  created_by_id: ID
4541
4547
  deleted_at: String
4542
4548
  engaged_channels: ShareSummary
4549
+ engagement_by_setting: [EngagementBySettingItem!]
4543
4550
  id: ID!
4544
4551
  import_key: String
4545
4552
  link: String
@@ -4549,7 +4556,7 @@ type Invitation {
4549
4556
  retailer: Retailer
4550
4557
  retailer_id: ID!
4551
4558
  retailer_slug: String
4552
- share_settings: [ShareSetting]
4559
+ share_settings: [ShareSetting!]
4553
4560
  state: InvitationState
4554
4561
  status: InvitationStatus
4555
4562
  updated_at: String