@promoboxx/graphql-gateway-types 1.1065.0 → 1.1067.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.
@@ -88815,6 +88815,30 @@
88815
88815
  "isDeprecated": false,
88816
88816
  "deprecationReason": null
88817
88817
  },
88818
+ {
88819
+ "name": "body",
88820
+ "description": null,
88821
+ "type": {
88822
+ "kind": "SCALAR",
88823
+ "name": "String",
88824
+ "ofType": null
88825
+ },
88826
+ "defaultValue": null,
88827
+ "isDeprecated": false,
88828
+ "deprecationReason": null
88829
+ },
88830
+ {
88831
+ "name": "button_text",
88832
+ "description": null,
88833
+ "type": {
88834
+ "kind": "SCALAR",
88835
+ "name": "String",
88836
+ "ofType": null
88837
+ },
88838
+ "defaultValue": null,
88839
+ "isDeprecated": false,
88840
+ "deprecationReason": null
88841
+ },
88818
88842
  {
88819
88843
  "name": "campaign_id",
88820
88844
  "description": null,
@@ -89251,6 +89275,18 @@
89251
89275
  "isDeprecated": false,
89252
89276
  "deprecationReason": null
89253
89277
  },
89278
+ {
89279
+ "name": "subject",
89280
+ "description": null,
89281
+ "type": {
89282
+ "kind": "SCALAR",
89283
+ "name": "String",
89284
+ "ofType": null
89285
+ },
89286
+ "defaultValue": null,
89287
+ "isDeprecated": false,
89288
+ "deprecationReason": null
89289
+ },
89254
89290
  {
89255
89291
  "name": "title",
89256
89292
  "description": null,
package/index.d.ts CHANGED
@@ -11316,6 +11316,8 @@ export type ShareSettingBrandCropInput = {
11316
11316
  export type ShareSettingBrandInput = {
11317
11317
  allow_retailer_url_override?: InputMaybe<Scalars['Boolean']['input']>;
11318
11318
  append_link_to_message?: InputMaybe<Scalars['String']['input']>;
11319
+ body?: InputMaybe<Scalars['String']['input']>;
11320
+ button_text?: InputMaybe<Scalars['String']['input']>;
11319
11321
  campaign_id: Scalars['ID']['input'];
11320
11322
  child_attachments?: InputMaybe<Array<ChildAttachmentParams>>;
11321
11323
  content_discovery_item_id?: InputMaybe<Scalars['ID']['input']>;
@@ -11349,6 +11351,7 @@ export type ShareSettingBrandInput = {
11349
11351
  share_type?: InputMaybe<Scalars['String']['input']>;
11350
11352
  share_url_type?: InputMaybe<Scalars['String']['input']>;
11351
11353
  smart_group_id?: InputMaybe<Scalars['ID']['input']>;
11354
+ subject?: InputMaybe<Scalars['String']['input']>;
11352
11355
  title?: InputMaybe<Scalars['String']['input']>;
11353
11356
  };
11354
11357
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.1065.0",
3
+ "version": "1.1067.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -9324,6 +9324,8 @@ input ShareSettingBrandCropInput {
9324
9324
  input ShareSettingBrandInput {
9325
9325
  allow_retailer_url_override: Boolean
9326
9326
  append_link_to_message: String
9327
+ body: String
9328
+ button_text: String
9327
9329
  campaign_id: ID!
9328
9330
  child_attachments: [ChildAttachmentParams!]
9329
9331
  content_discovery_item_id: ID
@@ -9357,6 +9359,7 @@ input ShareSettingBrandInput {
9357
9359
  share_type: String
9358
9360
  share_url_type: String
9359
9361
  smart_group_id: ID
9362
+ subject: String
9360
9363
  title: String
9361
9364
  }
9362
9365