@promoboxx/graphql-gateway-types 1.408.0 → 1.409.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.
@@ -20703,6 +20703,26 @@
20703
20703
  "isDeprecated": false,
20704
20704
  "deprecationReason": null
20705
20705
  },
20706
+ {
20707
+ "name": "child_attachments",
20708
+ "description": null,
20709
+ "type": {
20710
+ "kind": "LIST",
20711
+ "name": null,
20712
+ "ofType": {
20713
+ "kind": "NON_NULL",
20714
+ "name": null,
20715
+ "ofType": {
20716
+ "kind": "INPUT_OBJECT",
20717
+ "name": "ChildAttachmentParams",
20718
+ "ofType": null
20719
+ }
20720
+ }
20721
+ },
20722
+ "defaultValue": null,
20723
+ "isDeprecated": false,
20724
+ "deprecationReason": null
20725
+ },
20706
20726
  {
20707
20727
  "name": "custom_share_url_id",
20708
20728
  "description": null,
@@ -20731,19 +20751,15 @@
20731
20751
  "name": "digital_asset_ids",
20732
20752
  "description": null,
20733
20753
  "type": {
20734
- "kind": "NON_NULL",
20754
+ "kind": "LIST",
20735
20755
  "name": null,
20736
20756
  "ofType": {
20737
- "kind": "LIST",
20757
+ "kind": "NON_NULL",
20738
20758
  "name": null,
20739
20759
  "ofType": {
20740
- "kind": "NON_NULL",
20741
- "name": null,
20742
- "ofType": {
20743
- "kind": "SCALAR",
20744
- "name": "ID",
20745
- "ofType": null
20746
- }
20760
+ "kind": "SCALAR",
20761
+ "name": "ID",
20762
+ "ofType": null
20747
20763
  }
20748
20764
  }
20749
20765
  },
package/index.d.ts CHANGED
@@ -2201,9 +2201,10 @@ export type CreateShareSettingBulkShareSettingsParams = {
2201
2201
  allow_retailer_url_override?: InputMaybe<Scalars['Boolean']['input']>;
2202
2202
  campaign_id: Scalars['ID']['input'];
2203
2203
  channels?: InputMaybe<Array<Scalars['String']['input']>>;
2204
+ child_attachments?: InputMaybe<Array<ChildAttachmentParams>>;
2204
2205
  custom_share_url_id?: InputMaybe<Scalars['Int']['input']>;
2205
2206
  description?: InputMaybe<Scalars['String']['input']>;
2206
- digital_asset_ids: Array<Scalars['ID']['input']>;
2207
+ digital_asset_ids?: InputMaybe<Array<Scalars['ID']['input']>>;
2207
2208
  enabled?: InputMaybe<Scalars['Boolean']['input']>;
2208
2209
  link?: InputMaybe<Scalars['String']['input']>;
2209
2210
  message?: InputMaybe<Scalars['String']['input']>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.408.0",
3
+ "version": "1.409.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -2111,9 +2111,10 @@ input CreateShareSettingBulkShareSettingsParams {
2111
2111
  allow_retailer_url_override: Boolean
2112
2112
  campaign_id: ID!
2113
2113
  channels: [String!]
2114
+ child_attachments: [ChildAttachmentParams!]
2114
2115
  custom_share_url_id: Int
2115
2116
  description: String
2116
- digital_asset_ids: [ID!]!
2117
+ digital_asset_ids: [ID!]
2117
2118
  enabled: Boolean
2118
2119
  link: String
2119
2120
  message: String