@promoboxx/graphql-gateway-types 1.785.0 → 1.786.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.
@@ -14128,8 +14128,8 @@
14128
14128
  "kind": "NON_NULL",
14129
14129
  "name": null,
14130
14130
  "ofType": {
14131
- "kind": "ENUM",
14132
- "name": "SpecialAdCategories",
14131
+ "kind": "SCALAR",
14132
+ "name": "String",
14133
14133
  "ofType": null
14134
14134
  }
14135
14135
  }
@@ -96100,8 +96100,8 @@
96100
96100
  "kind": "NON_NULL",
96101
96101
  "name": null,
96102
96102
  "ofType": {
96103
- "kind": "ENUM",
96104
- "name": "SpecialAdCategories",
96103
+ "kind": "SCALAR",
96104
+ "name": "String",
96105
96105
  "ofType": null
96106
96106
  }
96107
96107
  }
@@ -96203,8 +96203,8 @@
96203
96203
  "kind": "NON_NULL",
96204
96204
  "name": null,
96205
96205
  "ofType": {
96206
- "kind": "ENUM",
96207
- "name": "SpecialAdCategories",
96206
+ "kind": "SCALAR",
96207
+ "name": "String",
96208
96208
  "ofType": null
96209
96209
  }
96210
96210
  }
package/index.d.ts CHANGED
@@ -1533,7 +1533,7 @@ export type ChannelCampaign = {
1533
1533
  brand_id?: Maybe<Scalars['ID']['output']>;
1534
1534
  id: Scalars['ID']['output'];
1535
1535
  objective?: Maybe<AdvertisingObjective>;
1536
- special_ad_categories: Array<SpecialAdCategories>;
1536
+ special_ad_categories: Array<Scalars['String']['output']>;
1537
1537
  };
1538
1538
 
1539
1539
  export type ChannelCampaignParams = {
@@ -12200,7 +12200,7 @@ export type UpdateChannelCampaignParams = {
12200
12200
  channel_campaign_id: Scalars['ID']['input'];
12201
12201
  ends_at?: InputMaybe<Scalars['String']['input']>;
12202
12202
  objective?: InputMaybe<AdvertisingObjective>;
12203
- special_ad_categories: Array<SpecialAdCategories>;
12203
+ special_ad_categories: Array<Scalars['String']['input']>;
12204
12204
  starts_at?: InputMaybe<Scalars['String']['input']>;
12205
12205
  };
12206
12206
 
@@ -12210,7 +12210,7 @@ export type UpdateChannelCampaignResponse = {
12210
12210
  channel_campaign_id: Scalars['ID']['output'];
12211
12211
  ends_at?: Maybe<Scalars['String']['output']>;
12212
12212
  objective?: Maybe<AdvertisingObjective>;
12213
- special_ad_categories: Array<SpecialAdCategories>;
12213
+ special_ad_categories: Array<Scalars['String']['output']>;
12214
12214
  starts_at?: Maybe<Scalars['String']['output']>;
12215
12215
  };
12216
12216
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.785.0",
3
+ "version": "1.786.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1460,7 +1460,7 @@ type ChannelCampaign {
1460
1460
  brand_id: ID
1461
1461
  id: ID!
1462
1462
  objective: AdvertisingObjective
1463
- special_ad_categories: [SpecialAdCategories!]!
1463
+ special_ad_categories: [String!]!
1464
1464
  }
1465
1465
 
1466
1466
  input ChannelCampaignParams {
@@ -10972,7 +10972,7 @@ input UpdateChannelCampaignParams {
10972
10972
  channel_campaign_id: ID!
10973
10973
  ends_at: String
10974
10974
  objective: AdvertisingObjective
10975
- special_ad_categories: [SpecialAdCategories!]!
10975
+ special_ad_categories: [String!]!
10976
10976
  starts_at: String
10977
10977
  }
10978
10978
 
@@ -10981,7 +10981,7 @@ type UpdateChannelCampaignResponse {
10981
10981
  channel_campaign_id: ID!
10982
10982
  ends_at: String
10983
10983
  objective: AdvertisingObjective
10984
- special_ad_categories: [SpecialAdCategories!]!
10984
+ special_ad_categories: [String!]!
10985
10985
  starts_at: String
10986
10986
  }
10987
10987