@promoboxx/graphql-gateway-types 1.61.0 → 1.63.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.
@@ -16406,13 +16406,33 @@
16406
16406
  "name": "campaign_id",
16407
16407
  "description": null,
16408
16408
  "type": {
16409
- "kind": "NON_NULL",
16410
- "name": null,
16411
- "ofType": {
16412
- "kind": "SCALAR",
16413
- "name": "ID",
16414
- "ofType": null
16415
- }
16409
+ "kind": "SCALAR",
16410
+ "name": "ID",
16411
+ "ofType": null
16412
+ },
16413
+ "defaultValue": null,
16414
+ "isDeprecated": false,
16415
+ "deprecationReason": null
16416
+ },
16417
+ {
16418
+ "name": "retailer_id",
16419
+ "description": null,
16420
+ "type": {
16421
+ "kind": "SCALAR",
16422
+ "name": "ID",
16423
+ "ofType": null
16424
+ },
16425
+ "defaultValue": null,
16426
+ "isDeprecated": false,
16427
+ "deprecationReason": null
16428
+ },
16429
+ {
16430
+ "name": "user_id",
16431
+ "description": null,
16432
+ "type": {
16433
+ "kind": "SCALAR",
16434
+ "name": "ID",
16435
+ "ofType": null
16416
16436
  },
16417
16437
  "defaultValue": null,
16418
16438
  "isDeprecated": false,
@@ -16450,6 +16470,37 @@
16450
16470
  "enumValues": null,
16451
16471
  "possibleTypes": null
16452
16472
  },
16473
+ {
16474
+ "kind": "INPUT_OBJECT",
16475
+ "name": "CreateCampaignInvitationsParams",
16476
+ "description": null,
16477
+ "fields": null,
16478
+ "inputFields": [
16479
+ {
16480
+ "name": "invitations",
16481
+ "description": null,
16482
+ "type": {
16483
+ "kind": "LIST",
16484
+ "name": null,
16485
+ "ofType": {
16486
+ "kind": "NON_NULL",
16487
+ "name": null,
16488
+ "ofType": {
16489
+ "kind": "INPUT_OBJECT",
16490
+ "name": "CreateCampaignInvitation",
16491
+ "ofType": null
16492
+ }
16493
+ }
16494
+ },
16495
+ "defaultValue": null,
16496
+ "isDeprecated": false,
16497
+ "deprecationReason": null
16498
+ }
16499
+ ],
16500
+ "interfaces": null,
16501
+ "enumValues": null,
16502
+ "possibleTypes": null
16503
+ },
16453
16504
  {
16454
16505
  "kind": "INPUT_OBJECT",
16455
16506
  "name": "CreateCollectionData",
@@ -38136,6 +38187,55 @@
38136
38187
  "isDeprecated": false,
38137
38188
  "deprecationReason": null
38138
38189
  },
38190
+ {
38191
+ "name": "createCampaignInvitations",
38192
+ "description": null,
38193
+ "args": [
38194
+ {
38195
+ "name": "campaignId",
38196
+ "description": null,
38197
+ "type": {
38198
+ "kind": "NON_NULL",
38199
+ "name": null,
38200
+ "ofType": {
38201
+ "kind": "SCALAR",
38202
+ "name": "ID",
38203
+ "ofType": null
38204
+ }
38205
+ },
38206
+ "defaultValue": null,
38207
+ "isDeprecated": false,
38208
+ "deprecationReason": null
38209
+ },
38210
+ {
38211
+ "name": "params",
38212
+ "description": null,
38213
+ "type": {
38214
+ "kind": "NON_NULL",
38215
+ "name": null,
38216
+ "ofType": {
38217
+ "kind": "INPUT_OBJECT",
38218
+ "name": "CreateCampaignInvitationsParams",
38219
+ "ofType": null
38220
+ }
38221
+ },
38222
+ "defaultValue": null,
38223
+ "isDeprecated": false,
38224
+ "deprecationReason": null
38225
+ }
38226
+ ],
38227
+ "type": {
38228
+ "kind": "LIST",
38229
+ "name": null,
38230
+ "ofType": {
38231
+ "kind": "OBJECT",
38232
+ "name": "Invitation",
38233
+ "ofType": null
38234
+ }
38235
+ },
38236
+ "isDeprecated": false,
38237
+ "deprecationReason": null
38238
+ },
38139
38239
  {
38140
38240
  "name": "createCollection",
38141
38241
  "description": null,
@@ -62333,6 +62433,18 @@
62333
62433
  "description": null,
62334
62434
  "fields": null,
62335
62435
  "inputFields": [
62436
+ {
62437
+ "name": "clickwrap_accepted_at",
62438
+ "description": null,
62439
+ "type": {
62440
+ "kind": "SCALAR",
62441
+ "name": "String",
62442
+ "ofType": null
62443
+ },
62444
+ "defaultValue": null,
62445
+ "isDeprecated": false,
62446
+ "deprecationReason": null
62447
+ },
62336
62448
  {
62337
62449
  "name": "company",
62338
62450
  "description": null,
package/index.d.ts CHANGED
@@ -1791,13 +1791,19 @@ export type CreateCampaignDataCampaign = {
1791
1791
  };
1792
1792
 
1793
1793
  export type CreateCampaignInvitation = {
1794
- campaign_id: Scalars['ID']['input'];
1794
+ campaign_id?: InputMaybe<Scalars['ID']['input']>;
1795
+ retailer_id?: InputMaybe<Scalars['ID']['input']>;
1796
+ user_id?: InputMaybe<Scalars['ID']['input']>;
1795
1797
  };
1796
1798
 
1797
1799
  export type CreateCampaignInvitationParams = {
1798
1800
  invitation: CreateCampaignInvitation;
1799
1801
  };
1800
1802
 
1803
+ export type CreateCampaignInvitationsParams = {
1804
+ invitations?: InputMaybe<Array<CreateCampaignInvitation>>;
1805
+ };
1806
+
1801
1807
  export type CreateCollectionData = {
1802
1808
  group: CreateCollectionDataGroup;
1803
1809
  resource_id: Scalars['ID']['input'];
@@ -4134,6 +4140,7 @@ export type Mutation = {
4134
4140
  createCampaign?: Maybe<Campaign>;
4135
4141
  createCampaignDescription: Scalars['ID']['output'];
4136
4142
  createCampaignInvitation?: Maybe<Invitation>;
4143
+ createCampaignInvitations?: Maybe<Array<Maybe<Invitation>>>;
4137
4144
  createCollection?: Maybe<Collection>;
4138
4145
  createContentDiscoveryCampaign: Campaign;
4139
4146
  createCustomFieldValue?: Maybe<CustomFieldValues>;
@@ -4442,6 +4449,12 @@ export type MutationCreateCampaignInvitationArgs = {
4442
4449
  };
4443
4450
 
4444
4451
 
4452
+ export type MutationCreateCampaignInvitationsArgs = {
4453
+ campaignId: Scalars['ID']['input'];
4454
+ params: CreateCampaignInvitationsParams;
4455
+ };
4456
+
4457
+
4445
4458
  export type MutationCreateCollectionArgs = {
4446
4459
  data: CreateCollectionData;
4447
4460
  };
@@ -7445,6 +7458,7 @@ export type UpdateStripePaymentIntent = {
7445
7458
  };
7446
7459
 
7447
7460
  export type UpdateUserInput = {
7461
+ clickwrap_accepted_at?: InputMaybe<Scalars['String']['input']>;
7448
7462
  company?: InputMaybe<Scalars['String']['input']>;
7449
7463
  email?: InputMaybe<Scalars['String']['input']>;
7450
7464
  first_name?: InputMaybe<Scalars['String']['input']>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.61.0",
3
+ "version": "1.63.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -1714,13 +1714,19 @@ input CreateCampaignDataCampaign {
1714
1714
  }
1715
1715
 
1716
1716
  input CreateCampaignInvitation {
1717
- campaign_id: ID!
1717
+ campaign_id: ID
1718
+ retailer_id: ID
1719
+ user_id: ID
1718
1720
  }
1719
1721
 
1720
1722
  input CreateCampaignInvitationParams {
1721
1723
  invitation: CreateCampaignInvitation!
1722
1724
  }
1723
1725
 
1726
+ input CreateCampaignInvitationsParams {
1727
+ invitations: [CreateCampaignInvitation!]
1728
+ }
1729
+
1724
1730
  input CreateCollectionData {
1725
1731
  group: CreateCollectionDataGroup!
1726
1732
  resource_id: ID!
@@ -3988,6 +3994,7 @@ type Mutation {
3988
3994
  createCampaign(data: CreateCampaignData!): Campaign
3989
3995
  createCampaignDescription(campaignDescriptionData: CampaignDescriptionInput!, campaignId: ID!): ID!
3990
3996
  createCampaignInvitation(campaignId: ID!, params: CreateCampaignInvitationParams!): Invitation
3997
+ createCampaignInvitations(campaignId: ID!, params: CreateCampaignInvitationsParams!): [Invitation]
3991
3998
  createCollection(data: CreateCollectionData!): Collection
3992
3999
  createContentDiscoveryCampaign(contentDiscoveryId: ID!, retailerId: ID!): Campaign!
3993
4000
  createCustomFieldValue(data: CreateCustomFieldValueData!, resourceId: ID!, resourceType: CreateCustomFieldResourceType!): CustomFieldValues
@@ -5822,6 +5829,7 @@ input UpdateStripePaymentIntent {
5822
5829
  }
5823
5830
 
5824
5831
  input UpdateUserInput {
5832
+ clickwrap_accepted_at: String
5825
5833
  company: String
5826
5834
  email: String
5827
5835
  first_name: String