@promoboxx/graphql-gateway-types 1.528.0 → 1.529.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.
@@ -44604,6 +44604,95 @@
44604
44604
  "isDeprecated": false,
44605
44605
  "deprecationReason": null
44606
44606
  },
44607
+ {
44608
+ "name": "createRetailerAccount",
44609
+ "description": null,
44610
+ "args": [
44611
+ {
44612
+ "name": "create_retailer_for_brand_id",
44613
+ "description": null,
44614
+ "type": {
44615
+ "kind": "SCALAR",
44616
+ "name": "ID",
44617
+ "ofType": null
44618
+ },
44619
+ "defaultValue": null,
44620
+ "isDeprecated": false,
44621
+ "deprecationReason": null
44622
+ },
44623
+ {
44624
+ "name": "enrollment_method",
44625
+ "description": null,
44626
+ "type": {
44627
+ "kind": "SCALAR",
44628
+ "name": "String",
44629
+ "ofType": null
44630
+ },
44631
+ "defaultValue": null,
44632
+ "isDeprecated": false,
44633
+ "deprecationReason": null
44634
+ },
44635
+ {
44636
+ "name": "fields",
44637
+ "description": null,
44638
+ "type": {
44639
+ "kind": "LIST",
44640
+ "name": null,
44641
+ "ofType": {
44642
+ "kind": "NON_NULL",
44643
+ "name": null,
44644
+ "ofType": {
44645
+ "kind": "SCALAR",
44646
+ "name": "String",
44647
+ "ofType": null
44648
+ }
44649
+ }
44650
+ },
44651
+ "defaultValue": null,
44652
+ "isDeprecated": false,
44653
+ "deprecationReason": null
44654
+ },
44655
+ {
44656
+ "name": "registration_key_link_id",
44657
+ "description": null,
44658
+ "type": {
44659
+ "kind": "SCALAR",
44660
+ "name": "ID",
44661
+ "ofType": null
44662
+ },
44663
+ "defaultValue": null,
44664
+ "isDeprecated": false,
44665
+ "deprecationReason": null
44666
+ },
44667
+ {
44668
+ "name": "retailer_account",
44669
+ "description": null,
44670
+ "type": {
44671
+ "kind": "NON_NULL",
44672
+ "name": null,
44673
+ "ofType": {
44674
+ "kind": "INPUT_OBJECT",
44675
+ "name": "UpdateRetailerAccountParams",
44676
+ "ofType": null
44677
+ }
44678
+ },
44679
+ "defaultValue": null,
44680
+ "isDeprecated": false,
44681
+ "deprecationReason": null
44682
+ }
44683
+ ],
44684
+ "type": {
44685
+ "kind": "NON_NULL",
44686
+ "name": null,
44687
+ "ofType": {
44688
+ "kind": "OBJECT",
44689
+ "name": "RetailerAccount",
44690
+ "ofType": null
44691
+ }
44692
+ },
44693
+ "isDeprecated": false,
44694
+ "deprecationReason": null
44695
+ },
44607
44696
  {
44608
44697
  "name": "createShare",
44609
44698
  "description": null,
package/index.d.ts CHANGED
@@ -4657,6 +4657,7 @@ export type Mutation = {
4657
4657
  createPermission: Permission;
4658
4658
  createPlatformAccessRequest?: Maybe<PlatformAccessRequest>;
4659
4659
  createRetailer: CreateRetailerResponse;
4660
+ createRetailerAccount: RetailerAccount;
4660
4661
  createShare: Share;
4661
4662
  createShareSettingBulk: Array<ShareSetting>;
4662
4663
  createShareSettingCarousel: ShareSetting;
@@ -5501,6 +5502,16 @@ export type MutationCreateRetailerArgs = {
5501
5502
  };
5502
5503
 
5503
5504
 
5505
+ /** mutation root */
5506
+ export type MutationCreateRetailerAccountArgs = {
5507
+ create_retailer_for_brand_id?: InputMaybe<Scalars['ID']['input']>;
5508
+ enrollment_method?: InputMaybe<Scalars['String']['input']>;
5509
+ fields?: InputMaybe<Array<Scalars['String']['input']>>;
5510
+ registration_key_link_id?: InputMaybe<Scalars['ID']['input']>;
5511
+ retailer_account: UpdateRetailerAccountParams;
5512
+ };
5513
+
5514
+
5504
5515
  /** mutation root */
5505
5516
  export type MutationCreateShareArgs = {
5506
5517
  asset_share?: InputMaybe<CreateShareAssetShare>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.528.0",
3
+ "version": "1.529.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -4494,6 +4494,7 @@ type Mutation {
4494
4494
  createPermission(permission: CreatePermissionInput!, user_id: ID!): Permission!
4495
4495
  createPlatformAccessRequest(platform_access_request: CreatePlatformAccessRequestParams!): PlatformAccessRequest
4496
4496
  createRetailer(params: CreateRetailerParams!): CreateRetailerResponse!
4497
+ createRetailerAccount(create_retailer_for_brand_id: ID, enrollment_method: String, fields: [String!], registration_key_link_id: ID, retailer_account: UpdateRetailerAccountParams!): RetailerAccount!
4497
4498
  createShare(asset_share: CreateShareAssetShare, email_share: CreateShareEmailShare, embed_share: CreateShareEmbedShare, facebook_share: CreateShareFacebookShare, fields: [String!], instagram_share: CreateShareInstagramShare, resource_id: ID!, resource_type: String!, shareType: String!, twitter_share: CreateShareTwitterShare): Share!
4498
4499
  createShareSettingBulk(campaign_id: ID!, params: CreateShareSettingBulkParams!): [ShareSetting!]!
4499
4500
  createShareSettingCarousel(campaign_id: ID!, params: CreateShareSettingCarouselParams!): ShareSetting!