@promoboxx/graphql-gateway-types 1.994.0 → 1.996.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 +40 -0
- package/index.d.ts +2 -0
- package/package.json +1 -1
- package/schema.graphql +2 -0
package/graphql.schema.json
CHANGED
|
@@ -7185,6 +7185,26 @@
|
|
|
7185
7185
|
"isDeprecated": false,
|
|
7186
7186
|
"deprecationReason": null
|
|
7187
7187
|
},
|
|
7188
|
+
{
|
|
7189
|
+
"name": "campaign_tag_list",
|
|
7190
|
+
"description": null,
|
|
7191
|
+
"args": [],
|
|
7192
|
+
"type": {
|
|
7193
|
+
"kind": "LIST",
|
|
7194
|
+
"name": null,
|
|
7195
|
+
"ofType": {
|
|
7196
|
+
"kind": "NON_NULL",
|
|
7197
|
+
"name": null,
|
|
7198
|
+
"ofType": {
|
|
7199
|
+
"kind": "SCALAR",
|
|
7200
|
+
"name": "String",
|
|
7201
|
+
"ofType": null
|
|
7202
|
+
}
|
|
7203
|
+
}
|
|
7204
|
+
},
|
|
7205
|
+
"isDeprecated": false,
|
|
7206
|
+
"deprecationReason": null
|
|
7207
|
+
},
|
|
7188
7208
|
{
|
|
7189
7209
|
"name": "campaigns_open_enrollment_by_default",
|
|
7190
7210
|
"description": null,
|
|
@@ -7233,6 +7253,26 @@
|
|
|
7233
7253
|
"isDeprecated": false,
|
|
7234
7254
|
"deprecationReason": null
|
|
7235
7255
|
},
|
|
7256
|
+
{
|
|
7257
|
+
"name": "custom_fields",
|
|
7258
|
+
"description": null,
|
|
7259
|
+
"args": [],
|
|
7260
|
+
"type": {
|
|
7261
|
+
"kind": "LIST",
|
|
7262
|
+
"name": null,
|
|
7263
|
+
"ofType": {
|
|
7264
|
+
"kind": "NON_NULL",
|
|
7265
|
+
"name": null,
|
|
7266
|
+
"ofType": {
|
|
7267
|
+
"kind": "OBJECT",
|
|
7268
|
+
"name": "CustomField",
|
|
7269
|
+
"ofType": null
|
|
7270
|
+
}
|
|
7271
|
+
}
|
|
7272
|
+
},
|
|
7273
|
+
"isDeprecated": false,
|
|
7274
|
+
"deprecationReason": null
|
|
7275
|
+
},
|
|
7236
7276
|
{
|
|
7237
7277
|
"name": "custom_header_css",
|
|
7238
7278
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -828,10 +828,12 @@ export type Brand = {
|
|
|
828
828
|
brand_requests_enabled: Scalars['Boolean']['output'];
|
|
829
829
|
campaign_alias?: Maybe<Scalars['String']['output']>;
|
|
830
830
|
campaign_builder_enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
831
|
+
campaign_tag_list?: Maybe<Array<Scalars['String']['output']>>;
|
|
831
832
|
campaigns_open_enrollment_by_default?: Maybe<Scalars['Boolean']['output']>;
|
|
832
833
|
city?: Maybe<Scalars['String']['output']>;
|
|
833
834
|
community?: Maybe<Scalars['Boolean']['output']>;
|
|
834
835
|
created_at?: Maybe<Scalars['String']['output']>;
|
|
836
|
+
custom_fields?: Maybe<Array<CustomField>>;
|
|
835
837
|
custom_header_css?: Maybe<Scalars['String']['output']>;
|
|
836
838
|
dealer_funded_management_fee_percentage?: Maybe<Scalars['Int']['output']>;
|
|
837
839
|
default_enrollment_campaign?: Maybe<Campaign>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -803,10 +803,12 @@ type Brand {
|
|
|
803
803
|
brand_requests_enabled: Boolean!
|
|
804
804
|
campaign_alias: String
|
|
805
805
|
campaign_builder_enabled: Boolean
|
|
806
|
+
campaign_tag_list: [String!]
|
|
806
807
|
campaigns_open_enrollment_by_default: Boolean
|
|
807
808
|
city: String
|
|
808
809
|
community: Boolean
|
|
809
810
|
created_at: String
|
|
811
|
+
custom_fields: [CustomField!]
|
|
810
812
|
custom_header_css: String
|
|
811
813
|
dealer_funded_management_fee_percentage: Int
|
|
812
814
|
default_enrollment_campaign: Campaign
|