@promoboxx/graphql-gateway-types 1.535.0 → 1.537.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.
@@ -66044,6 +66044,26 @@
66044
66044
  "name": "getPicAssetSearch",
66045
66045
  "description": null,
66046
66046
  "args": [
66047
+ {
66048
+ "name": "fields",
66049
+ "description": null,
66050
+ "type": {
66051
+ "kind": "LIST",
66052
+ "name": null,
66053
+ "ofType": {
66054
+ "kind": "NON_NULL",
66055
+ "name": null,
66056
+ "ofType": {
66057
+ "kind": "SCALAR",
66058
+ "name": "String",
66059
+ "ofType": null
66060
+ }
66061
+ }
66062
+ },
66063
+ "defaultValue": null,
66064
+ "isDeprecated": false,
66065
+ "deprecationReason": null
66066
+ },
66047
66067
  {
66048
66068
  "name": "search_string",
66049
66069
  "description": null,
@@ -66130,6 +66150,26 @@
66130
66150
  "name": "getResourceAssetSearch",
66131
66151
  "description": null,
66132
66152
  "args": [
66153
+ {
66154
+ "name": "fields",
66155
+ "description": null,
66156
+ "type": {
66157
+ "kind": "LIST",
66158
+ "name": null,
66159
+ "ofType": {
66160
+ "kind": "NON_NULL",
66161
+ "name": null,
66162
+ "ofType": {
66163
+ "kind": "SCALAR",
66164
+ "name": "String",
66165
+ "ofType": null
66166
+ }
66167
+ }
66168
+ },
66169
+ "defaultValue": null,
66170
+ "isDeprecated": false,
66171
+ "deprecationReason": null
66172
+ },
66133
66173
  {
66134
66174
  "name": "resource_id",
66135
66175
  "description": null,
@@ -66203,6 +66243,26 @@
66203
66243
  "name": "getResourceDamSearch",
66204
66244
  "description": null,
66205
66245
  "args": [
66246
+ {
66247
+ "name": "fields",
66248
+ "description": null,
66249
+ "type": {
66250
+ "kind": "LIST",
66251
+ "name": null,
66252
+ "ofType": {
66253
+ "kind": "NON_NULL",
66254
+ "name": null,
66255
+ "ofType": {
66256
+ "kind": "SCALAR",
66257
+ "name": "String",
66258
+ "ofType": null
66259
+ }
66260
+ }
66261
+ },
66262
+ "defaultValue": null,
66263
+ "isDeprecated": false,
66264
+ "deprecationReason": null
66265
+ },
66206
66266
  {
66207
66267
  "name": "resource_id",
66208
66268
  "description": null,
package/index.d.ts CHANGED
@@ -8807,6 +8807,7 @@ export type QueryGetPermissionsArgs = {
8807
8807
 
8808
8808
 
8809
8809
  export type QueryGetPicAssetSearchArgs = {
8810
+ fields?: InputMaybe<Array<Scalars['String']['input']>>;
8810
8811
  search_string: Scalars['String']['input'];
8811
8812
  };
8812
8813
 
@@ -8818,6 +8819,7 @@ export type QueryGetRegistrationKeyArgs = {
8818
8819
 
8819
8820
 
8820
8821
  export type QueryGetResourceAssetSearchArgs = {
8822
+ fields?: InputMaybe<Array<Scalars['String']['input']>>;
8821
8823
  resource_id: Scalars['ID']['input'];
8822
8824
  resource_type: Scalars['String']['input'];
8823
8825
  search_string: Scalars['String']['input'];
@@ -8825,6 +8827,7 @@ export type QueryGetResourceAssetSearchArgs = {
8825
8827
 
8826
8828
 
8827
8829
  export type QueryGetResourceDamSearchArgs = {
8830
+ fields?: InputMaybe<Array<Scalars['String']['input']>>;
8828
8831
  resource_id: Scalars['ID']['input'];
8829
8832
  resource_type: Scalars['String']['input'];
8830
8833
  search_string: Scalars['String']['input'];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.535.0",
3
+ "version": "1.537.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -7213,10 +7213,10 @@ type Query {
7213
7213
  getNotesByResource(data: GetNotesByResourceData!): [Note!]!
7214
7214
  getPermission(fields: [String!], id: ID!): Permission!
7215
7215
  getPermissions(fields: [String!], resource_id: ID!, resource_type: String!): [Permission!]!
7216
- getPicAssetSearch(search_string: String!): [DigitalAsset!]!
7216
+ getPicAssetSearch(fields: [String!], search_string: String!): [DigitalAsset!]!
7217
7217
  getRegistrationKey(brandId: ID!, linkId: ID!): RegistrationKey
7218
- getResourceAssetSearch(resource_id: ID!, resource_type: String!, search_string: String!): [DigitalAsset!]!
7219
- getResourceDamSearch(resource_id: ID!, resource_type: String!, search_string: String!): [DigitalAsset!]!
7218
+ getResourceAssetSearch(fields: [String!], resource_id: ID!, resource_type: String!, search_string: String!): [DigitalAsset!]!
7219
+ getResourceDamSearch(fields: [String!], resource_id: ID!, resource_type: String!, search_string: String!): [DigitalAsset!]!
7220
7220
 
7221
7221
  """Get a specific retailer"""
7222
7222
  getRetailer(id: ID!, params: GetRetailerParams): Retailer