@promoboxx/graphql-gateway-types 1.406.0 → 1.407.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.
@@ -32739,6 +32739,144 @@
32739
32739
  "enumValues": null,
32740
32740
  "possibleTypes": null
32741
32741
  },
32742
+ {
32743
+ "kind": "INPUT_OBJECT",
32744
+ "name": "GetRetailerAccountsInput",
32745
+ "description": null,
32746
+ "fields": null,
32747
+ "inputFields": [
32748
+ {
32749
+ "name": "fields",
32750
+ "description": null,
32751
+ "type": {
32752
+ "kind": "LIST",
32753
+ "name": null,
32754
+ "ofType": {
32755
+ "kind": "NON_NULL",
32756
+ "name": null,
32757
+ "ofType": {
32758
+ "kind": "SCALAR",
32759
+ "name": "String",
32760
+ "ofType": null
32761
+ }
32762
+ }
32763
+ },
32764
+ "defaultValue": null,
32765
+ "isDeprecated": false,
32766
+ "deprecationReason": null
32767
+ },
32768
+ {
32769
+ "name": "offset",
32770
+ "description": null,
32771
+ "type": {
32772
+ "kind": "SCALAR",
32773
+ "name": "Int",
32774
+ "ofType": null
32775
+ },
32776
+ "defaultValue": null,
32777
+ "isDeprecated": false,
32778
+ "deprecationReason": null
32779
+ },
32780
+ {
32781
+ "name": "per_page",
32782
+ "description": null,
32783
+ "type": {
32784
+ "kind": "SCALAR",
32785
+ "name": "Int",
32786
+ "ofType": null
32787
+ },
32788
+ "defaultValue": null,
32789
+ "isDeprecated": false,
32790
+ "deprecationReason": null
32791
+ },
32792
+ {
32793
+ "name": "search",
32794
+ "description": null,
32795
+ "type": {
32796
+ "kind": "NON_NULL",
32797
+ "name": null,
32798
+ "ofType": {
32799
+ "kind": "SCALAR",
32800
+ "name": "String",
32801
+ "ofType": null
32802
+ }
32803
+ },
32804
+ "defaultValue": null,
32805
+ "isDeprecated": false,
32806
+ "deprecationReason": null
32807
+ },
32808
+ {
32809
+ "name": "sort_column",
32810
+ "description": null,
32811
+ "type": {
32812
+ "kind": "SCALAR",
32813
+ "name": "String",
32814
+ "ofType": null
32815
+ },
32816
+ "defaultValue": null,
32817
+ "isDeprecated": false,
32818
+ "deprecationReason": null
32819
+ },
32820
+ {
32821
+ "name": "sort_direction",
32822
+ "description": null,
32823
+ "type": {
32824
+ "kind": "SCALAR",
32825
+ "name": "String",
32826
+ "ofType": null
32827
+ },
32828
+ "defaultValue": null,
32829
+ "isDeprecated": false,
32830
+ "deprecationReason": null
32831
+ }
32832
+ ],
32833
+ "interfaces": null,
32834
+ "enumValues": null,
32835
+ "possibleTypes": null
32836
+ },
32837
+ {
32838
+ "kind": "OBJECT",
32839
+ "name": "GetRetailerAccountsResponse",
32840
+ "description": null,
32841
+ "fields": [
32842
+ {
32843
+ "name": "data",
32844
+ "description": null,
32845
+ "args": [],
32846
+ "type": {
32847
+ "kind": "LIST",
32848
+ "name": null,
32849
+ "ofType": {
32850
+ "kind": "NON_NULL",
32851
+ "name": null,
32852
+ "ofType": {
32853
+ "kind": "OBJECT",
32854
+ "name": "RetailerAccount",
32855
+ "ofType": null
32856
+ }
32857
+ }
32858
+ },
32859
+ "isDeprecated": false,
32860
+ "deprecationReason": null
32861
+ },
32862
+ {
32863
+ "name": "paging",
32864
+ "description": null,
32865
+ "args": [],
32866
+ "type": {
32867
+ "kind": "OBJECT",
32868
+ "name": "Paging",
32869
+ "ofType": null
32870
+ },
32871
+ "isDeprecated": false,
32872
+ "deprecationReason": null
32873
+ }
32874
+ ],
32875
+ "inputFields": null,
32876
+ "interfaces": [],
32877
+ "enumValues": null,
32878
+ "possibleTypes": null
32879
+ },
32742
32880
  {
32743
32881
  "kind": "OBJECT",
32744
32882
  "name": "GetRetailerActivityResponse",
@@ -64811,6 +64949,35 @@
64811
64949
  "isDeprecated": false,
64812
64950
  "deprecationReason": null
64813
64951
  },
64952
+ {
64953
+ "name": "getRetailerAccounts",
64954
+ "description": null,
64955
+ "args": [
64956
+ {
64957
+ "name": "params",
64958
+ "description": null,
64959
+ "type": {
64960
+ "kind": "INPUT_OBJECT",
64961
+ "name": "GetRetailerAccountsInput",
64962
+ "ofType": null
64963
+ },
64964
+ "defaultValue": null,
64965
+ "isDeprecated": false,
64966
+ "deprecationReason": null
64967
+ }
64968
+ ],
64969
+ "type": {
64970
+ "kind": "NON_NULL",
64971
+ "name": null,
64972
+ "ofType": {
64973
+ "kind": "OBJECT",
64974
+ "name": "GetRetailerAccountsResponse",
64975
+ "ofType": null
64976
+ }
64977
+ },
64978
+ "isDeprecated": false,
64979
+ "deprecationReason": null
64980
+ },
64814
64981
  {
64815
64982
  "name": "getRetailerActivity",
64816
64983
  "description": null,
package/index.d.ts CHANGED
@@ -3553,6 +3553,21 @@ export type GetNotesFilterData = {
3553
3553
  by_type?: InputMaybe<NoteActivityType>;
3554
3554
  };
3555
3555
 
3556
+ export type GetRetailerAccountsInput = {
3557
+ fields?: InputMaybe<Array<Scalars['String']['input']>>;
3558
+ offset?: InputMaybe<Scalars['Int']['input']>;
3559
+ per_page?: InputMaybe<Scalars['Int']['input']>;
3560
+ search: Scalars['String']['input'];
3561
+ sort_column?: InputMaybe<Scalars['String']['input']>;
3562
+ sort_direction?: InputMaybe<Scalars['String']['input']>;
3563
+ };
3564
+
3565
+ export type GetRetailerAccountsResponse = {
3566
+ __typename?: 'GetRetailerAccountsResponse';
3567
+ data?: Maybe<Array<RetailerAccount>>;
3568
+ paging?: Maybe<Paging>;
3569
+ };
3570
+
3556
3571
  export type GetRetailerActivityResponse = {
3557
3572
  __typename?: 'GetRetailerActivityResponse';
3558
3573
  data: Array<Activity>;
@@ -7698,6 +7713,7 @@ export type Query = {
7698
7713
  getRetailer?: Maybe<Retailer>;
7699
7714
  getRetailerAccount?: Maybe<RetailerAccount>;
7700
7715
  getRetailerAccountByBusinessId: RetailerAccount;
7716
+ getRetailerAccounts: GetRetailerAccountsResponse;
7701
7717
  getRetailerActivity: GetRetailerActivityResponse;
7702
7718
  getRetailerAdCreativeTemplate: RetailerAdCreativeTemplate;
7703
7719
  getRetailerByBrandUuidAndBusinessId: Retailer;
@@ -8658,6 +8674,11 @@ export type QueryGetRetailerAccountByBusinessIdArgs = {
8658
8674
  };
8659
8675
 
8660
8676
 
8677
+ export type QueryGetRetailerAccountsArgs = {
8678
+ params?: InputMaybe<GetRetailerAccountsInput>;
8679
+ };
8680
+
8681
+
8661
8682
  export type QueryGetRetailerActivityArgs = {
8662
8683
  filters?: InputMaybe<RetailerActivityFilters>;
8663
8684
  limit?: InputMaybe<Scalars['Int']['input']>;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.406.0",
3
+ "version": "1.407.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -3421,6 +3421,20 @@ input GetNotesFilterData {
3421
3421
  by_type: NoteActivityType
3422
3422
  }
3423
3423
 
3424
+ input GetRetailerAccountsInput {
3425
+ fields: [String!]
3426
+ offset: Int
3427
+ per_page: Int
3428
+ search: String!
3429
+ sort_column: String
3430
+ sort_direction: String
3431
+ }
3432
+
3433
+ type GetRetailerAccountsResponse {
3434
+ data: [RetailerAccount!]
3435
+ paging: Paging
3436
+ }
3437
+
3424
3438
  type GetRetailerActivityResponse {
3425
3439
  data: [Activity!]!
3426
3440
  paging: Paging!
@@ -7085,6 +7099,7 @@ type Query {
7085
7099
  getRetailer(id: ID!, params: GetRetailerParams): Retailer
7086
7100
  getRetailerAccount(fields: [String!], id: ID!): RetailerAccount
7087
7101
  getRetailerAccountByBusinessId(business_id: ID!, fields: [String!]): RetailerAccount!
7102
+ getRetailerAccounts(params: GetRetailerAccountsInput): GetRetailerAccountsResponse!
7088
7103
  getRetailerActivity(filters: RetailerActivityFilters, limit: Int, offset: Int, parameterless_filters: [RetailerActivityParameterlessFilters!], resourceId: ID!, resourceType: String!, sort_column: String, sort_direction: String): GetRetailerActivityResponse!
7089
7104
  getRetailerAdCreativeTemplate(ad_creative_template_id: ID!, params: AdCreativeTemplateParams!): RetailerAdCreativeTemplate!
7090
7105
  getRetailerByBrandUuidAndBusinessId(brand_uuid: ID!, business_id: ID!, fields: [String!]): Retailer!