@promoboxx/graphql-gateway-types 1.25.0 → 1.26.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.
@@ -21067,6 +21067,49 @@
21067
21067
  "enumValues": null,
21068
21068
  "possibleTypes": null
21069
21069
  },
21070
+ {
21071
+ "kind": "INPUT_OBJECT",
21072
+ "name": "DeleteAdInvitationsParams",
21073
+ "description": null,
21074
+ "fields": null,
21075
+ "inputFields": [
21076
+ {
21077
+ "name": "brand_id",
21078
+ "description": null,
21079
+ "type": {
21080
+ "kind": "NON_NULL",
21081
+ "name": null,
21082
+ "ofType": {
21083
+ "kind": "SCALAR",
21084
+ "name": "ID",
21085
+ "ofType": null
21086
+ }
21087
+ },
21088
+ "defaultValue": null,
21089
+ "isDeprecated": false,
21090
+ "deprecationReason": null
21091
+ },
21092
+ {
21093
+ "name": "campaign_id",
21094
+ "description": null,
21095
+ "type": {
21096
+ "kind": "NON_NULL",
21097
+ "name": null,
21098
+ "ofType": {
21099
+ "kind": "SCALAR",
21100
+ "name": "ID",
21101
+ "ofType": null
21102
+ }
21103
+ },
21104
+ "defaultValue": null,
21105
+ "isDeprecated": false,
21106
+ "deprecationReason": null
21107
+ }
21108
+ ],
21109
+ "interfaces": null,
21110
+ "enumValues": null,
21111
+ "possibleTypes": null
21112
+ },
21070
21113
  {
21071
21114
  "kind": "INPUT_OBJECT",
21072
21115
  "name": "DeleteBillboardData",
@@ -39180,6 +39223,39 @@
39180
39223
  "isDeprecated": false,
39181
39224
  "deprecationReason": null
39182
39225
  },
39226
+ {
39227
+ "name": "deleteAdInvitations",
39228
+ "description": null,
39229
+ "args": [
39230
+ {
39231
+ "name": "params",
39232
+ "description": null,
39233
+ "type": {
39234
+ "kind": "NON_NULL",
39235
+ "name": null,
39236
+ "ofType": {
39237
+ "kind": "INPUT_OBJECT",
39238
+ "name": "DeleteAdInvitationsParams",
39239
+ "ofType": null
39240
+ }
39241
+ },
39242
+ "defaultValue": null,
39243
+ "isDeprecated": false,
39244
+ "deprecationReason": null
39245
+ }
39246
+ ],
39247
+ "type": {
39248
+ "kind": "NON_NULL",
39249
+ "name": null,
39250
+ "ofType": {
39251
+ "kind": "SCALAR",
39252
+ "name": "ID",
39253
+ "ofType": null
39254
+ }
39255
+ },
39256
+ "isDeprecated": false,
39257
+ "deprecationReason": null
39258
+ },
39183
39259
  {
39184
39260
  "name": "deleteBillboard",
39185
39261
  "description": "Deletes the billboard with the given data and echoes its ID \n(note: GraphQL doesn't let us return nothing, so this is our way of getting around that)",
package/index.d.ts CHANGED
@@ -2262,6 +2262,11 @@ export type Databook = {
2262
2262
  sendDate?: Maybe<Scalars['String']['output']>;
2263
2263
  };
2264
2264
 
2265
+ export type DeleteAdInvitationsParams = {
2266
+ brand_id: Scalars['ID']['input'];
2267
+ campaign_id: Scalars['ID']['input'];
2268
+ };
2269
+
2265
2270
  /** The data to delete an existing billboard by ID */
2266
2271
  export type DeleteBillboardData = {
2267
2272
  /** The brand_id of the billboard, or null if it is global */
@@ -4134,6 +4139,7 @@ export type Mutation = {
4134
4139
  createUserBrandRejection: UserBrandRejection;
4135
4140
  deactivateLogo: SubBrandLogo;
4136
4141
  deleteAccessInvitation: Scalars['ID']['output'];
4142
+ deleteAdInvitations: Scalars['ID']['output'];
4137
4143
  /**
4138
4144
  * Deletes the billboard with the given data and echoes its ID
4139
4145
  * (note: GraphQL doesn't let us return nothing, so this is our way of getting around that)
@@ -4565,6 +4571,11 @@ export type MutationDeleteAccessInvitationArgs = {
4565
4571
  };
4566
4572
 
4567
4573
 
4574
+ export type MutationDeleteAdInvitationsArgs = {
4575
+ params: DeleteAdInvitationsParams;
4576
+ };
4577
+
4578
+
4568
4579
  export type MutationDeleteBillboardArgs = {
4569
4580
  data: DeleteBillboardData;
4570
4581
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.25.0",
3
+ "version": "1.26.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -2168,6 +2168,11 @@ type Databook {
2168
2168
  sendDate: String
2169
2169
  }
2170
2170
 
2171
+ input DeleteAdInvitationsParams {
2172
+ brand_id: ID!
2173
+ campaign_id: ID!
2174
+ }
2175
+
2171
2176
  """The data to delete an existing billboard by ID"""
2172
2177
  input DeleteBillboardData {
2173
2178
  """The brand_id of the billboard, or null if it is global"""
@@ -3993,6 +3998,7 @@ type Mutation {
3993
3998
  createUserBrandRejection(user_brand_rejection: UserBrandRejectionInput!): UserBrandRejection!
3994
3999
  deactivateLogo(id: ID!): SubBrandLogo!
3995
4000
  deleteAccessInvitation(id: ID!): ID!
4001
+ deleteAdInvitations(params: DeleteAdInvitationsParams!): ID!
3996
4002
 
3997
4003
  """
3998
4004
  Deletes the billboard with the given data and echoes its ID