@promoboxx/graphql-gateway-types 1.810.0 → 1.812.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.
@@ -2300,6 +2300,18 @@
2300
2300
  "isDeprecated": false,
2301
2301
  "deprecationReason": null
2302
2302
  },
2303
+ {
2304
+ "name": "external_id",
2305
+ "description": null,
2306
+ "args": [],
2307
+ "type": {
2308
+ "kind": "SCALAR",
2309
+ "name": "String",
2310
+ "ofType": null
2311
+ },
2312
+ "isDeprecated": false,
2313
+ "deprecationReason": null
2314
+ },
2303
2315
  {
2304
2316
  "name": "fb_ad_account_id",
2305
2317
  "description": null,
@@ -18242,6 +18254,18 @@
18242
18254
  "isDeprecated": false,
18243
18255
  "deprecationReason": null
18244
18256
  },
18257
+ {
18258
+ "name": "external_id",
18259
+ "description": null,
18260
+ "type": {
18261
+ "kind": "SCALAR",
18262
+ "name": "String",
18263
+ "ofType": null
18264
+ },
18265
+ "defaultValue": null,
18266
+ "isDeprecated": false,
18267
+ "deprecationReason": null
18268
+ },
18245
18269
  {
18246
18270
  "name": "fb_ad_account_id",
18247
18271
  "description": null,
@@ -97981,6 +98005,18 @@
97981
98005
  "isDeprecated": false,
97982
98006
  "deprecationReason": null
97983
98007
  },
98008
+ {
98009
+ "name": "external_id",
98010
+ "description": null,
98011
+ "type": {
98012
+ "kind": "SCALAR",
98013
+ "name": "String",
98014
+ "ofType": null
98015
+ },
98016
+ "defaultValue": null,
98017
+ "isDeprecated": false,
98018
+ "deprecationReason": null
98019
+ },
97984
98020
  {
97985
98021
  "name": "objective",
97986
98022
  "description": null,
package/index.d.ts CHANGED
@@ -262,6 +262,7 @@ export type AdCampaignData = {
262
262
  campaign_invitation?: Maybe<CampaignInvitation>;
263
263
  channel_campaign?: Maybe<ChannelCampaign>;
264
264
  ends_at?: Maybe<Scalars['String']['output']>;
265
+ external_id?: Maybe<Scalars['String']['output']>;
265
266
  fb_ad_account_id?: Maybe<Scalars['String']['output']>;
266
267
  getStats: StatsResponse;
267
268
  id: Scalars['ID']['output'];
@@ -1960,6 +1961,7 @@ export type CreateAdCampaignInput = {
1960
1961
  brand_id: Scalars['ID']['input'];
1961
1962
  channels?: InputMaybe<Array<Scalars['String']['input']>>;
1962
1963
  ends_at: Scalars['String']['input'];
1964
+ external_id?: InputMaybe<Scalars['String']['input']>;
1963
1965
  fb_ad_account_id: Scalars['ID']['input'];
1964
1966
  objective?: InputMaybe<Scalars['String']['input']>;
1965
1967
  starts_at: Scalars['String']['input'];
@@ -12409,6 +12411,7 @@ export type UpdatePaidAdData = {
12409
12411
  automated?: InputMaybe<Scalars['Boolean']['input']>;
12410
12412
  channels?: InputMaybe<Array<Scalars['String']['input']>>;
12411
12413
  ends_at: Scalars['String']['input'];
12414
+ external_id?: InputMaybe<Scalars['String']['input']>;
12412
12415
  objective?: InputMaybe<Scalars['String']['input']>;
12413
12416
  starts_at: Scalars['String']['input'];
12414
12417
  state?: InputMaybe<Scalars['String']['input']>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.810.0",
3
+ "version": "1.812.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -233,6 +233,7 @@ type AdCampaignData {
233
233
  campaign_invitation: CampaignInvitation
234
234
  channel_campaign: ChannelCampaign
235
235
  ends_at: String
236
+ external_id: String
236
237
  fb_ad_account_id: String
237
238
  getStats(params: GetStatsParams!): StatsResponse!
238
239
  id: ID!
@@ -1861,6 +1862,7 @@ input CreateAdCampaignInput {
1861
1862
  brand_id: ID!
1862
1863
  channels: [String!]
1863
1864
  ends_at: String!
1865
+ external_id: String
1864
1866
  fb_ad_account_id: ID!
1865
1867
  objective: String
1866
1868
  starts_at: String!
@@ -11121,6 +11123,7 @@ input UpdatePaidAdData {
11121
11123
  automated: Boolean
11122
11124
  channels: [String!]
11123
11125
  ends_at: String!
11126
+ external_id: String
11124
11127
  objective: String
11125
11128
  starts_at: String!
11126
11129
  state: String