@promoboxx/graphql-gateway-types 1.769.0 → 1.770.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.
@@ -29731,6 +29731,124 @@
29731
29731
  "enumValues": null,
29732
29732
  "possibleTypes": null
29733
29733
  },
29734
+ {
29735
+ "kind": "OBJECT",
29736
+ "name": "FBAdSvcAdTemplate",
29737
+ "description": null,
29738
+ "fields": [
29739
+ {
29740
+ "name": "adCreativeTemplateID",
29741
+ "description": null,
29742
+ "args": [],
29743
+ "type": {
29744
+ "kind": "NON_NULL",
29745
+ "name": null,
29746
+ "ofType": {
29747
+ "kind": "SCALAR",
29748
+ "name": "String",
29749
+ "ofType": null
29750
+ }
29751
+ },
29752
+ "isDeprecated": false,
29753
+ "deprecationReason": null
29754
+ },
29755
+ {
29756
+ "name": "adSetTemplateID",
29757
+ "description": null,
29758
+ "args": [],
29759
+ "type": {
29760
+ "kind": "NON_NULL",
29761
+ "name": null,
29762
+ "ofType": {
29763
+ "kind": "SCALAR",
29764
+ "name": "String",
29765
+ "ofType": null
29766
+ }
29767
+ },
29768
+ "isDeprecated": false,
29769
+ "deprecationReason": null
29770
+ },
29771
+ {
29772
+ "name": "createdAt",
29773
+ "description": null,
29774
+ "args": [],
29775
+ "type": {
29776
+ "kind": "NON_NULL",
29777
+ "name": null,
29778
+ "ofType": {
29779
+ "kind": "SCALAR",
29780
+ "name": "String",
29781
+ "ofType": null
29782
+ }
29783
+ },
29784
+ "isDeprecated": false,
29785
+ "deprecationReason": null
29786
+ },
29787
+ {
29788
+ "name": "id",
29789
+ "description": null,
29790
+ "args": [],
29791
+ "type": {
29792
+ "kind": "NON_NULL",
29793
+ "name": null,
29794
+ "ofType": {
29795
+ "kind": "SCALAR",
29796
+ "name": "ID",
29797
+ "ofType": null
29798
+ }
29799
+ },
29800
+ "isDeprecated": false,
29801
+ "deprecationReason": null
29802
+ }
29803
+ ],
29804
+ "inputFields": null,
29805
+ "interfaces": [],
29806
+ "enumValues": null,
29807
+ "possibleTypes": null
29808
+ },
29809
+ {
29810
+ "kind": "INPUT_OBJECT",
29811
+ "name": "FBAdSvcAdTemplateCreateInput",
29812
+ "description": null,
29813
+ "fields": null,
29814
+ "inputFields": [
29815
+ {
29816
+ "name": "adCreativeTemplateID",
29817
+ "description": null,
29818
+ "type": {
29819
+ "kind": "NON_NULL",
29820
+ "name": null,
29821
+ "ofType": {
29822
+ "kind": "SCALAR",
29823
+ "name": "String",
29824
+ "ofType": null
29825
+ }
29826
+ },
29827
+ "defaultValue": null,
29828
+ "isDeprecated": false,
29829
+ "deprecationReason": null
29830
+ },
29831
+ {
29832
+ "name": "adSetTemplateID",
29833
+ "description": null,
29834
+ "type": {
29835
+ "kind": "NON_NULL",
29836
+ "name": null,
29837
+ "ofType": {
29838
+ "kind": "SCALAR",
29839
+ "name": "String",
29840
+ "ofType": null
29841
+ }
29842
+ },
29843
+ "defaultValue": null,
29844
+ "isDeprecated": false,
29845
+ "deprecationReason": null
29846
+ }
29847
+ ],
29848
+ "interfaces": null,
29849
+ "enumValues": null,
29850
+ "possibleTypes": null
29851
+ },
29734
29852
  {
29735
29853
  "kind": "OBJECT",
29736
29854
  "name": "FBAdSvcCallToActionTemplate",
@@ -52450,6 +52568,39 @@
52450
52568
  "isDeprecated": false,
52451
52569
  "deprecationReason": null
52452
52570
  },
52571
+ {
52572
+ "name": "fbAdSvcCreateAdTemplate",
52573
+ "description": null,
52574
+ "args": [
52575
+ {
52576
+ "name": "input",
52577
+ "description": null,
52578
+ "type": {
52579
+ "kind": "NON_NULL",
52580
+ "name": null,
52581
+ "ofType": {
52582
+ "kind": "INPUT_OBJECT",
52583
+ "name": "FBAdSvcAdTemplateCreateInput",
52584
+ "ofType": null
52585
+ }
52586
+ },
52587
+ "defaultValue": null,
52588
+ "isDeprecated": false,
52589
+ "deprecationReason": null
52590
+ }
52591
+ ],
52592
+ "type": {
52593
+ "kind": "NON_NULL",
52594
+ "name": null,
52595
+ "ofType": {
52596
+ "kind": "OBJECT",
52597
+ "name": "FBAdSvcAdTemplate",
52598
+ "ofType": null
52599
+ }
52600
+ },
52601
+ "isDeprecated": false,
52602
+ "deprecationReason": null
52603
+ },
52453
52604
  {
52454
52605
  "name": "fbAdSvcUpdateAdSetTemplate",
52455
52606
  "description": null,
package/index.d.ts CHANGED
@@ -3153,6 +3153,19 @@ export type FbAdSvcAdSetTemplateUpdateInput = {
3153
3153
  targeting: FbAdSvcTargetingInput;
3154
3154
  };
3155
3155
 
3156
+ export type FbAdSvcAdTemplate = {
3157
+ __typename?: 'FBAdSvcAdTemplate';
3158
+ adCreativeTemplateID: Scalars['String']['output'];
3159
+ adSetTemplateID: Scalars['String']['output'];
3160
+ createdAt: Scalars['String']['output'];
3161
+ id: Scalars['ID']['output'];
3162
+ };
3163
+
3164
+ export type FbAdSvcAdTemplateCreateInput = {
3165
+ adCreativeTemplateID: Scalars['String']['input'];
3166
+ adSetTemplateID: Scalars['String']['input'];
3167
+ };
3168
+
3156
3169
  export type FbAdSvcCallToActionTemplate = {
3157
3170
  __typename?: 'FBAdSvcCallToActionTemplate';
3158
3171
  ctaType: Scalars['String']['output'];
@@ -5256,6 +5269,7 @@ export type Mutation = {
5256
5269
  exportUsersForDivisionByBrand: Scalars['ID']['output'];
5257
5270
  extendJwt: ExtendJwtResponse;
5258
5271
  fbAdSvcCreateAdSetTemplate: FbAdSvcAdSetTemplate;
5272
+ fbAdSvcCreateAdTemplate: FbAdSvcAdTemplate;
5259
5273
  fbAdSvcUpdateAdSetTemplate: FbAdSvcAdSetTemplate;
5260
5274
  grantAccessRequest: Scalars['ID']['output'];
5261
5275
  /** insert data into the table: "address_verification_run_results" */
@@ -6599,6 +6613,12 @@ export type MutationFbAdSvcCreateAdSetTemplateArgs = {
6599
6613
  };
6600
6614
 
6601
6615
 
6616
+ /** mutation root */
6617
+ export type MutationFbAdSvcCreateAdTemplateArgs = {
6618
+ input: FbAdSvcAdTemplateCreateInput;
6619
+ };
6620
+
6621
+
6602
6622
  /** mutation root */
6603
6623
  export type MutationFbAdSvcUpdateAdSetTemplateArgs = {
6604
6624
  id: Scalars['ID']['input'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.769.0",
3
+ "version": "1.770.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -3036,6 +3036,18 @@ input FBAdSvcAdSetTemplateUpdateInput {
3036
3036
  targeting: FBAdSvcTargetingInput!
3037
3037
  }
3038
3038
 
3039
+ type FBAdSvcAdTemplate {
3040
+ adCreativeTemplateID: String!
3041
+ adSetTemplateID: String!
3042
+ createdAt: String!
3043
+ id: ID!
3044
+ }
3045
+
3046
+ input FBAdSvcAdTemplateCreateInput {
3047
+ adCreativeTemplateID: String!
3048
+ adSetTemplateID: String!
3049
+ }
3050
+
3039
3051
  type FBAdSvcCallToActionTemplate {
3040
3052
  ctaType: String!
3041
3053
  link: FBAdSvcLink!
@@ -5241,6 +5253,7 @@ type Mutation {
5241
5253
  exportUsersForDivisionByBrand(brandId: ID!): ID!
5242
5254
  extendJwt(jwt: String!): ExtendJwtResponse!
5243
5255
  fbAdSvcCreateAdSetTemplate(input: FBAdSvcAdSetTemplateCreateInput!): FBAdSvcAdSetTemplate!
5256
+ fbAdSvcCreateAdTemplate(input: FBAdSvcAdTemplateCreateInput!): FBAdSvcAdTemplate!
5244
5257
  fbAdSvcUpdateAdSetTemplate(id: ID!, input: FBAdSvcAdSetTemplateUpdateInput!): FBAdSvcAdSetTemplate!
5245
5258
  grantAccessRequest(id: ID!): ID!
5246
5259