@promoboxx/graphql-gateway-types 1.512.0 → 1.513.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.
@@ -10898,6 +10898,30 @@
10898
10898
  "isDeprecated": false,
10899
10899
  "deprecationReason": null
10900
10900
  },
10901
+ {
10902
+ "name": "default_registration_key",
10903
+ "description": null,
10904
+ "args": [],
10905
+ "type": {
10906
+ "kind": "OBJECT",
10907
+ "name": "RegistrationKeys",
10908
+ "ofType": null
10909
+ },
10910
+ "isDeprecated": false,
10911
+ "deprecationReason": null
10912
+ },
10913
+ {
10914
+ "name": "default_registration_key_id",
10915
+ "description": null,
10916
+ "args": [],
10917
+ "type": {
10918
+ "kind": "SCALAR",
10919
+ "name": "ID",
10920
+ "ofType": null
10921
+ },
10922
+ "isDeprecated": false,
10923
+ "deprecationReason": null
10924
+ },
10901
10925
  {
10902
10926
  "name": "default_share_url",
10903
10927
  "description": null,
@@ -71596,6 +71620,18 @@
71596
71620
  "isDeprecated": false,
71597
71621
  "deprecationReason": null
71598
71622
  },
71623
+ {
71624
+ "name": "category",
71625
+ "description": null,
71626
+ "args": [],
71627
+ "type": {
71628
+ "kind": "SCALAR",
71629
+ "name": "String",
71630
+ "ofType": null
71631
+ },
71632
+ "isDeprecated": false,
71633
+ "deprecationReason": null
71634
+ },
71599
71635
  {
71600
71636
  "name": "created_at",
71601
71637
  "description": null,
package/index.d.ts CHANGED
@@ -1208,6 +1208,8 @@ export type Campaign = {
1208
1208
  custom_share_url_id?: Maybe<Scalars['Int']['output']>;
1209
1209
  customizer_url?: Maybe<Scalars['String']['output']>;
1210
1210
  days_remaining?: Maybe<Scalars['String']['output']>;
1211
+ default_registration_key?: Maybe<RegistrationKeys>;
1212
+ default_registration_key_id?: Maybe<Scalars['ID']['output']>;
1211
1213
  default_share_url?: Maybe<Scalars['String']['output']>;
1212
1214
  deleted_at?: Maybe<Scalars['String']['output']>;
1213
1215
  description?: Maybe<Scalars['String']['output']>;
@@ -9389,6 +9391,7 @@ export type RegistrationKeys = {
9389
9391
  __typename?: 'RegistrationKeys';
9390
9392
  brand_id?: Maybe<Scalars['ID']['output']>;
9391
9393
  campaign_id?: Maybe<Scalars['ID']['output']>;
9394
+ category?: Maybe<Scalars['String']['output']>;
9392
9395
  created_at?: Maybe<Scalars['String']['output']>;
9393
9396
  created_by_id?: Maybe<Scalars['ID']['output']>;
9394
9397
  default?: Maybe<Scalars['Boolean']['output']>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.512.0",
3
+ "version": "1.513.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1165,6 +1165,8 @@ type Campaign {
1165
1165
  custom_share_url_id: Int
1166
1166
  customizer_url: String
1167
1167
  days_remaining: String
1168
+ default_registration_key: RegistrationKeys
1169
+ default_registration_key_id: ID
1168
1170
  default_share_url: String
1169
1171
  deleted_at: String
1170
1172
  description: String
@@ -7958,6 +7960,7 @@ enum RegistrationKeyState {
7958
7960
  type RegistrationKeys {
7959
7961
  brand_id: ID
7960
7962
  campaign_id: ID
7963
+ category: String
7961
7964
  created_at: String
7962
7965
  created_by_id: ID
7963
7966
  default: Boolean