@promoboxx/graphql-gateway-types 1.126.0 → 1.127.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.
@@ -1169,9 +1169,17 @@
1169
1169
  "kind": "NON_NULL",
1170
1170
  "name": null,
1171
1171
  "ofType": {
1172
- "kind": "INPUT_OBJECT",
1173
- "name": "ActivateCampaignAdCreativeTemplates",
1174
- "ofType": null
1172
+ "kind": "LIST",
1173
+ "name": null,
1174
+ "ofType": {
1175
+ "kind": "NON_NULL",
1176
+ "name": null,
1177
+ "ofType": {
1178
+ "kind": "INPUT_OBJECT",
1179
+ "name": "ActivateCampaignAdCreativeTemplates",
1180
+ "ofType": null
1181
+ }
1182
+ }
1175
1183
  }
1176
1184
  },
1177
1185
  "defaultValue": null,
package/index.d.ts CHANGED
@@ -136,7 +136,7 @@ export type ActivateCampaignChannelCustomLocation = {
136
136
  };
137
137
 
138
138
  export type ActivateCampaignChannelCustomization = {
139
- adcreative_templates: ActivateCampaignAdCreativeTemplates;
139
+ adcreative_templates: Array<ActivateCampaignAdCreativeTemplates>;
140
140
  facebook_page_id: Scalars['ID']['input'];
141
141
  geo_locations: ActivateCampaignChannelGeoLocation;
142
142
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.126.0",
3
+ "version": "1.127.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -121,7 +121,7 @@ input ActivateCampaignChannelCustomLocation {
121
121
  }
122
122
 
123
123
  input ActivateCampaignChannelCustomization {
124
- adcreative_templates: ActivateCampaignAdCreativeTemplates!
124
+ adcreative_templates: [ActivateCampaignAdCreativeTemplates!]!
125
125
  facebook_page_id: ID!
126
126
  geo_locations: ActivateCampaignChannelGeoLocation!
127
127
  }