@promoboxx/graphql-gateway-types 1.1061.0 → 1.1063.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.
@@ -3610,6 +3610,18 @@
3610
3610
  "isDeprecated": false,
3611
3611
  "deprecationReason": null
3612
3612
  },
3613
+ {
3614
+ "name": "cta",
3615
+ "description": "The billboard's CTA",
3616
+ "type": {
3617
+ "kind": "SCALAR",
3618
+ "name": "String",
3619
+ "ofType": null
3620
+ },
3621
+ "defaultValue": null,
3622
+ "isDeprecated": false,
3623
+ "deprecationReason": null
3624
+ },
3613
3625
  {
3614
3626
  "name": "ends_at",
3615
3627
  "description": "When this billboard should no longer be displayed",
@@ -3725,6 +3737,18 @@
3725
3737
  "defaultValue": null,
3726
3738
  "isDeprecated": false,
3727
3739
  "deprecationReason": null
3740
+ },
3741
+ {
3742
+ "name": "title",
3743
+ "description": "The billboard's title",
3744
+ "type": {
3745
+ "kind": "SCALAR",
3746
+ "name": "String",
3747
+ "ofType": null
3748
+ },
3749
+ "defaultValue": null,
3750
+ "isDeprecated": false,
3751
+ "deprecationReason": null
3728
3752
  }
3729
3753
  ],
3730
3754
  "interfaces": null,
@@ -6482,6 +6506,18 @@
6482
6506
  "isDeprecated": false,
6483
6507
  "deprecationReason": null
6484
6508
  },
6509
+ {
6510
+ "name": "cta",
6511
+ "description": null,
6512
+ "args": [],
6513
+ "type": {
6514
+ "kind": "SCALAR",
6515
+ "name": "String",
6516
+ "ofType": null
6517
+ },
6518
+ "isDeprecated": false,
6519
+ "deprecationReason": null
6520
+ },
6485
6521
  {
6486
6522
  "name": "ends_at",
6487
6523
  "description": "When this billboard should no longer be displayed",
@@ -6605,6 +6641,18 @@
6605
6641
  },
6606
6642
  "isDeprecated": false,
6607
6643
  "deprecationReason": null
6644
+ },
6645
+ {
6646
+ "name": "title",
6647
+ "description": null,
6648
+ "args": [],
6649
+ "type": {
6650
+ "kind": "SCALAR",
6651
+ "name": "String",
6652
+ "ofType": null
6653
+ },
6654
+ "isDeprecated": false,
6655
+ "deprecationReason": null
6608
6656
  }
6609
6657
  ],
6610
6658
  "inputFields": null,
@@ -6699,6 +6747,18 @@
6699
6747
  "isDeprecated": false,
6700
6748
  "deprecationReason": null
6701
6749
  },
6750
+ {
6751
+ "name": "cta",
6752
+ "description": null,
6753
+ "type": {
6754
+ "kind": "SCALAR",
6755
+ "name": "String",
6756
+ "ofType": null
6757
+ },
6758
+ "defaultValue": null,
6759
+ "isDeprecated": false,
6760
+ "deprecationReason": null
6761
+ },
6702
6762
  {
6703
6763
  "name": "ends_at_greater_than",
6704
6764
  "description": null,
@@ -6794,6 +6854,18 @@
6794
6854
  "defaultValue": null,
6795
6855
  "isDeprecated": false,
6796
6856
  "deprecationReason": null
6857
+ },
6858
+ {
6859
+ "name": "title",
6860
+ "description": null,
6861
+ "type": {
6862
+ "kind": "SCALAR",
6863
+ "name": "String",
6864
+ "ofType": null
6865
+ },
6866
+ "defaultValue": null,
6867
+ "isDeprecated": false,
6868
+ "deprecationReason": null
6797
6869
  }
6798
6870
  ],
6799
6871
  "interfaces": null,
@@ -101919,6 +101991,18 @@
101919
101991
  "isDeprecated": false,
101920
101992
  "deprecationReason": null
101921
101993
  },
101994
+ {
101995
+ "name": "cta",
101996
+ "description": null,
101997
+ "type": {
101998
+ "kind": "SCALAR",
101999
+ "name": "String",
102000
+ "ofType": null
102001
+ },
102002
+ "defaultValue": null,
102003
+ "isDeprecated": false,
102004
+ "deprecationReason": null
102005
+ },
101922
102006
  {
101923
102007
  "name": "ends_at",
101924
102008
  "description": null,
@@ -102030,6 +102114,18 @@
102030
102114
  "defaultValue": null,
102031
102115
  "isDeprecated": false,
102032
102116
  "deprecationReason": null
102117
+ },
102118
+ {
102119
+ "name": "title",
102120
+ "description": null,
102121
+ "type": {
102122
+ "kind": "SCALAR",
102123
+ "name": "String",
102124
+ "ofType": null
102125
+ },
102126
+ "defaultValue": null,
102127
+ "isDeprecated": false,
102128
+ "deprecationReason": null
102033
102129
  }
102034
102130
  ],
102035
102131
  "interfaces": null,
package/index.d.ts CHANGED
@@ -410,6 +410,8 @@ export type AddBillboardData = {
410
410
  body: Scalars['String']['input'];
411
411
  /** The billboard's brand ID, or null if it is global */
412
412
  brand_id?: InputMaybe<Scalars['ID']['input']>;
413
+ /** The billboard's CTA */
414
+ cta?: InputMaybe<Scalars['String']['input']>;
413
415
  /** When this billboard should no longer be displayed */
414
416
  ends_at: Scalars['String']['input'];
415
417
  /** The billboard's feature flag */
@@ -429,6 +431,8 @@ export type AddBillboardData = {
429
431
  priority_order?: InputMaybe<Scalars['Int']['input']>;
430
432
  /** When this billboard should start to be displayed */
431
433
  starts_at: Scalars['String']['input'];
434
+ /** The billboard's title */
435
+ title?: InputMaybe<Scalars['String']['input']>;
432
436
  };
433
437
 
434
438
  export type AddContractData = {
@@ -742,6 +746,7 @@ export type Billboard = {
742
746
  brand_id?: Maybe<Scalars['ID']['output']>;
743
747
  /** The timestamp for when this billboard was created */
744
748
  created_at: Scalars['String']['output'];
749
+ cta?: Maybe<Scalars['String']['output']>;
745
750
  /** When this billboard should no longer be displayed */
746
751
  ends_at: Scalars['String']['output'];
747
752
  /** The billboard's feature flag */
@@ -763,6 +768,7 @@ export type Billboard = {
763
768
  priority_order?: Maybe<Scalars['Int']['output']>;
764
769
  /** When this billboard should start to be displayed */
765
770
  starts_at: Scalars['String']['output'];
771
+ title?: Maybe<Scalars['String']['output']>;
766
772
  };
767
773
 
768
774
  /** Each of the possible AppTargets a billboard can have */
@@ -778,6 +784,7 @@ export type BillboardAppTarget =
778
784
  export type BillboardParams = {
779
785
  app_target?: InputMaybe<BillboardAppTarget>;
780
786
  brands?: InputMaybe<Array<Scalars['ID']['input']>>;
787
+ cta?: InputMaybe<Scalars['String']['input']>;
781
788
  ends_at_greater_than?: InputMaybe<Scalars['String']['input']>;
782
789
  ends_at_less_than?: InputMaybe<Scalars['String']['input']>;
783
790
  exclude_global_billboards?: InputMaybe<Scalars['Boolean']['input']>;
@@ -786,6 +793,7 @@ export type BillboardParams = {
786
793
  sort?: InputMaybe<Scalars['String']['input']>;
787
794
  starts_at_greater_than?: InputMaybe<Scalars['String']['input']>;
788
795
  starts_at_less_than?: InputMaybe<Scalars['String']['input']>;
796
+ title?: InputMaybe<Scalars['String']['input']>;
789
797
  };
790
798
 
791
799
  /**
@@ -12855,6 +12863,7 @@ export type UpdateBillboardData = {
12855
12863
  app_target?: InputMaybe<BillboardAppTarget>;
12856
12864
  body?: InputMaybe<Scalars['ID']['input']>;
12857
12865
  brand_id?: InputMaybe<Scalars['ID']['input']>;
12866
+ cta?: InputMaybe<Scalars['String']['input']>;
12858
12867
  ends_at?: InputMaybe<Scalars['String']['input']>;
12859
12868
  feature_flag?: InputMaybe<Scalars['String']['input']>;
12860
12869
  href?: InputMaybe<Scalars['String']['input']>;
@@ -12864,6 +12873,7 @@ export type UpdateBillboardData = {
12864
12873
  name?: InputMaybe<Scalars['String']['input']>;
12865
12874
  priority_order?: InputMaybe<Scalars['Int']['input']>;
12866
12875
  starts_at?: InputMaybe<Scalars['String']['input']>;
12876
+ title?: InputMaybe<Scalars['String']['input']>;
12867
12877
  };
12868
12878
 
12869
12879
  export type UpdateBrandBody = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.1061.0",
3
+ "version": "1.1063.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -373,6 +373,9 @@ input AddBillboardData {
373
373
  """The billboard's brand ID, or null if it is global"""
374
374
  brand_id: ID
375
375
 
376
+ """The billboard's CTA"""
377
+ cta: String
378
+
376
379
  """When this billboard should no longer be displayed"""
377
380
  ends_at: String!
378
381
 
@@ -399,6 +402,9 @@ input AddBillboardData {
399
402
 
400
403
  """When this billboard should start to be displayed"""
401
404
  starts_at: String!
405
+
406
+ """The billboard's title"""
407
+ title: String
402
408
  }
403
409
 
404
410
  input AddContractData {
@@ -705,6 +711,7 @@ type Billboard {
705
711
 
706
712
  """The timestamp for when this billboard was created"""
707
713
  created_at: String!
714
+ cta: String
708
715
 
709
716
  """When this billboard should no longer be displayed"""
710
717
  ends_at: String!
@@ -735,6 +742,7 @@ type Billboard {
735
742
 
736
743
  """When this billboard should start to be displayed"""
737
744
  starts_at: String!
745
+ title: String
738
746
  }
739
747
 
740
748
  """Each of the possible AppTargets a billboard can have"""
@@ -753,6 +761,7 @@ The parameters for `getBillboards`, containing the filter and sorting parameters
753
761
  input BillboardParams {
754
762
  app_target: BillboardAppTarget
755
763
  brands: [ID!]
764
+ cta: String
756
765
  ends_at_greater_than: String
757
766
  ends_at_less_than: String
758
767
  exclude_global_billboards: Boolean
@@ -761,6 +770,7 @@ input BillboardParams {
761
770
  sort: String
762
771
  starts_at_greater_than: String
763
772
  starts_at_less_than: String
773
+ title: String
764
774
  }
765
775
 
766
776
  """
@@ -11297,6 +11307,7 @@ input UpdateBillboardData {
11297
11307
  app_target: BillboardAppTarget
11298
11308
  body: ID
11299
11309
  brand_id: ID
11310
+ cta: String
11300
11311
  ends_at: String
11301
11312
  feature_flag: String
11302
11313
  href: String
@@ -11306,6 +11317,7 @@ input UpdateBillboardData {
11306
11317
  name: String
11307
11318
  priority_order: Int
11308
11319
  starts_at: String
11320
+ title: String
11309
11321
  }
11310
11322
 
11311
11323
  input UpdateBrandBody {