@promoboxx/graphql-gateway-types 1.723.0 → 1.724.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.
@@ -21426,6 +21426,18 @@
21426
21426
  "isDeprecated": false,
21427
21427
  "deprecationReason": null
21428
21428
  },
21429
+ {
21430
+ "name": "append_link_to_message",
21431
+ "description": null,
21432
+ "type": {
21433
+ "kind": "SCALAR",
21434
+ "name": "String",
21435
+ "ofType": null
21436
+ },
21437
+ "defaultValue": null,
21438
+ "isDeprecated": false,
21439
+ "deprecationReason": null
21440
+ },
21429
21441
  {
21430
21442
  "name": "campaign_id",
21431
21443
  "description": null,
package/index.d.ts CHANGED
@@ -2272,6 +2272,7 @@ export type CreateShareSettingBulkParams = {
2272
2272
 
2273
2273
  export type CreateShareSettingBulkShareSettingsParams = {
2274
2274
  allow_retailer_url_override?: InputMaybe<Scalars['Boolean']['input']>;
2275
+ append_link_to_message?: InputMaybe<Scalars['String']['input']>;
2275
2276
  campaign_id: Scalars['ID']['input'];
2276
2277
  channels?: InputMaybe<Array<Scalars['String']['input']>>;
2277
2278
  child_attachments?: InputMaybe<Array<ChildAttachmentParams>>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.723.0",
3
+ "version": "1.724.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -2174,6 +2174,7 @@ input CreateShareSettingBulkParams {
2174
2174
 
2175
2175
  input CreateShareSettingBulkShareSettingsParams {
2176
2176
  allow_retailer_url_override: Boolean
2177
+ append_link_to_message: String
2177
2178
  campaign_id: ID!
2178
2179
  channels: [String!]
2179
2180
  child_attachments: [ChildAttachmentParams!]