@promoboxx/graphql-gateway-types 1.683.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.
- package/graphql.schema.json +23 -3
- package/index.d.ts +2 -1
- package/package.json +1 -1
- package/schema.graphql +2 -1
package/graphql.schema.json
CHANGED
|
@@ -28442,9 +28442,13 @@
|
|
|
28442
28442
|
"name": "channelCampaignID",
|
|
28443
28443
|
"description": null,
|
|
28444
28444
|
"type": {
|
|
28445
|
-
"kind": "
|
|
28446
|
-
"name":
|
|
28447
|
-
"ofType":
|
|
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
|
|
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
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
|
}
|