@promoboxx/graphql-gateway-types 1.682.0 → 1.684.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.
@@ -28442,9 +28442,13 @@
28442
28442
  "name": "channelCampaignID",
28443
28443
  "description": null,
28444
28444
  "type": {
28445
- "kind": "SCALAR",
28446
- "name": "String",
28447
- "ofType": null
28445
+ "kind": "NON_NULL",
28446
+ "name": null,
28447
+ "ofType": {
28448
+ "kind": "SCALAR",
28449
+ "name": "String",
28450
+ "ofType": null
28451
+ }
28448
28452
  },
28449
28453
  "defaultValue": null,
28450
28454
  "isDeprecated": false,
@@ -28489,6 +28493,22 @@
28489
28493
  "description": null,
28490
28494
  "fields": null,
28491
28495
  "inputFields": [
28496
+ {
28497
+ "name": "brandID",
28498
+ "description": null,
28499
+ "type": {
28500
+ "kind": "NON_NULL",
28501
+ "name": null,
28502
+ "ofType": {
28503
+ "kind": "SCALAR",
28504
+ "name": "ID",
28505
+ "ofType": null
28506
+ }
28507
+ },
28508
+ "defaultValue": null,
28509
+ "isDeprecated": false,
28510
+ "deprecationReason": null
28511
+ },
28492
28512
  {
28493
28513
  "name": "optimizationGoal",
28494
28514
  "description": null,
package/index.d.ts CHANGED
@@ -3030,12 +3030,13 @@ export type FbAdSvcAdSetTemplate = {
3030
3030
 
3031
3031
  export type FbAdSvcAdSetTemplateCreateInput = {
3032
3032
  brandID: Scalars['ID']['input'];
3033
- channelCampaignID?: InputMaybe<Scalars['String']['input']>;
3033
+ channelCampaignID: Scalars['String']['input'];
3034
3034
  optimizationGoal?: InputMaybe<Scalars['String']['input']>;
3035
3035
  targeting: FbAdSvcTargetingInput;
3036
3036
  };
3037
3037
 
3038
3038
  export type FbAdSvcAdSetTemplateUpdateInput = {
3039
+ brandID: Scalars['ID']['input'];
3039
3040
  optimizationGoal?: InputMaybe<Scalars['String']['input']>;
3040
3041
  targeting: FbAdSvcTargetingInput;
3041
3042
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.682.0",
3
+ "version": "1.684.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -2917,12 +2917,13 @@ type FBAdSvcAdSetTemplate {
2917
2917
 
2918
2918
  input FBAdSvcAdSetTemplateCreateInput {
2919
2919
  brandID: ID!
2920
- channelCampaignID: String
2920
+ channelCampaignID: String!
2921
2921
  optimizationGoal: String
2922
2922
  targeting: FBAdSvcTargetingInput!
2923
2923
  }
2924
2924
 
2925
2925
  input FBAdSvcAdSetTemplateUpdateInput {
2926
+ brandID: ID!
2926
2927
  optimizationGoal: String
2927
2928
  targeting: FBAdSvcTargetingInput!
2928
2929
  }