@promoboxx/graphql-gateway-types 1.552.0 → 1.554.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.
@@ -66808,6 +66808,148 @@
66808
66808
  "isDeprecated": false,
66809
66809
  "deprecationReason": null
66810
66810
  },
66811
+ {
66812
+ "name": "getRetailerDuplicateSets",
66813
+ "description": null,
66814
+ "args": [
66815
+ {
66816
+ "name": "brand_id",
66817
+ "description": null,
66818
+ "type": {
66819
+ "kind": "NON_NULL",
66820
+ "name": null,
66821
+ "ofType": {
66822
+ "kind": "SCALAR",
66823
+ "name": "ID",
66824
+ "ofType": null
66825
+ }
66826
+ },
66827
+ "defaultValue": null,
66828
+ "isDeprecated": false,
66829
+ "deprecationReason": null
66830
+ }
66831
+ ],
66832
+ "type": {
66833
+ "kind": "NON_NULL",
66834
+ "name": null,
66835
+ "ofType": {
66836
+ "kind": "LIST",
66837
+ "name": null,
66838
+ "ofType": {
66839
+ "kind": "NON_NULL",
66840
+ "name": null,
66841
+ "ofType": {
66842
+ "kind": "LIST",
66843
+ "name": null,
66844
+ "ofType": {
66845
+ "kind": "NON_NULL",
66846
+ "name": null,
66847
+ "ofType": {
66848
+ "kind": "OBJECT",
66849
+ "name": "Retailer",
66850
+ "ofType": null
66851
+ }
66852
+ }
66853
+ }
66854
+ }
66855
+ }
66856
+ },
66857
+ "isDeprecated": false,
66858
+ "deprecationReason": null
66859
+ },
66860
+ {
66861
+ "name": "getRetailerDuplicates",
66862
+ "description": null,
66863
+ "args": [
66864
+ {
66865
+ "name": "brand_id",
66866
+ "description": null,
66867
+ "type": {
66868
+ "kind": "NON_NULL",
66869
+ "name": null,
66870
+ "ofType": {
66871
+ "kind": "SCALAR",
66872
+ "name": "ID",
66873
+ "ofType": null
66874
+ }
66875
+ },
66876
+ "defaultValue": null,
66877
+ "isDeprecated": false,
66878
+ "deprecationReason": null
66879
+ },
66880
+ {
66881
+ "name": "fields",
66882
+ "description": null,
66883
+ "type": {
66884
+ "kind": "LIST",
66885
+ "name": null,
66886
+ "ofType": {
66887
+ "kind": "NON_NULL",
66888
+ "name": null,
66889
+ "ofType": {
66890
+ "kind": "SCALAR",
66891
+ "name": "String",
66892
+ "ofType": null
66893
+ }
66894
+ }
66895
+ },
66896
+ "defaultValue": null,
66897
+ "isDeprecated": false,
66898
+ "deprecationReason": null
66899
+ },
66900
+ {
66901
+ "name": "google_place_ids",
66902
+ "description": null,
66903
+ "type": {
66904
+ "kind": "LIST",
66905
+ "name": null,
66906
+ "ofType": {
66907
+ "kind": "NON_NULL",
66908
+ "name": null,
66909
+ "ofType": {
66910
+ "kind": "SCALAR",
66911
+ "name": "String",
66912
+ "ofType": null
66913
+ }
66914
+ }
66915
+ },
66916
+ "defaultValue": null,
66917
+ "isDeprecated": false,
66918
+ "deprecationReason": null
66919
+ },
66920
+ {
66921
+ "name": "retailer_name",
66922
+ "description": null,
66923
+ "type": {
66924
+ "kind": "SCALAR",
66925
+ "name": "String",
66926
+ "ofType": null
66927
+ },
66928
+ "defaultValue": null,
66929
+ "isDeprecated": false,
66930
+ "deprecationReason": null
66931
+ }
66932
+ ],
66933
+ "type": {
66934
+ "kind": "NON_NULL",
66935
+ "name": null,
66936
+ "ofType": {
66937
+ "kind": "LIST",
66938
+ "name": null,
66939
+ "ofType": {
66940
+ "kind": "NON_NULL",
66941
+ "name": null,
66942
+ "ofType": {
66943
+ "kind": "OBJECT",
66944
+ "name": "Retailer",
66945
+ "ofType": null
66946
+ }
66947
+ }
66948
+ }
66949
+ },
66950
+ "isDeprecated": false,
66951
+ "deprecationReason": null
66952
+ },
66811
66953
  {
66812
66954
  "name": "getRetailers",
66813
66955
  "description": "Get a collection of retailers for a brand, division or user.",
package/index.d.ts CHANGED
@@ -7877,6 +7877,8 @@ export type Query = {
7877
7877
  getRetailerActivity: GetRetailerActivityResponse;
7878
7878
  getRetailerAdCreativeTemplate: RetailerAdCreativeTemplate;
7879
7879
  getRetailerByBrandUuidAndBusinessId: Retailer;
7880
+ getRetailerDuplicateSets: Array<Array<Retailer>>;
7881
+ getRetailerDuplicates: Array<Retailer>;
7880
7882
  /** Get a collection of retailers for a brand, division or user. */
7881
7883
  getRetailers: Array<Retailer>;
7882
7884
  /**
@@ -8889,6 +8891,19 @@ export type QueryGetRetailerByBrandUuidAndBusinessIdArgs = {
8889
8891
  };
8890
8892
 
8891
8893
 
8894
+ export type QueryGetRetailerDuplicateSetsArgs = {
8895
+ brand_id: Scalars['ID']['input'];
8896
+ };
8897
+
8898
+
8899
+ export type QueryGetRetailerDuplicatesArgs = {
8900
+ brand_id: Scalars['ID']['input'];
8901
+ fields?: InputMaybe<Array<Scalars['String']['input']>>;
8902
+ google_place_ids?: InputMaybe<Array<Scalars['String']['input']>>;
8903
+ retailer_name?: InputMaybe<Scalars['String']['input']>;
8904
+ };
8905
+
8906
+
8892
8907
  export type QueryGetRetailersArgs = {
8893
8908
  params?: InputMaybe<GetRetailersParams>;
8894
8909
  resourceId: Scalars['ID']['input'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.552.0",
3
+ "version": "1.554.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -7229,6 +7229,8 @@ type Query {
7229
7229
  getRetailerActivity(filters: RetailerActivityFilters, limit: Int, offset: Int, parameterless_filters: [RetailerActivityParameterlessFilters!], resourceId: ID!, resourceType: String!, sort_column: String, sort_direction: String): GetRetailerActivityResponse!
7230
7230
  getRetailerAdCreativeTemplate(ad_creative_template_id: ID!, params: AdCreativeTemplateParams!): RetailerAdCreativeTemplate!
7231
7231
  getRetailerByBrandUuidAndBusinessId(brand_uuid: ID!, business_id: ID!, fields: [String!]): Retailer!
7232
+ getRetailerDuplicateSets(brand_id: ID!): [[Retailer!]!]!
7233
+ getRetailerDuplicates(brand_id: ID!, fields: [String!], google_place_ids: [String!], retailer_name: String): [Retailer!]!
7232
7234
 
7233
7235
  """Get a collection of retailers for a brand, division or user."""
7234
7236
  getRetailers(params: GetRetailersParams, resourceId: ID!, resourceType: RetailersResourceType!): [Retailer!]!