@promoboxx/graphql-gateway-types 1.550.0 → 1.552.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.
@@ -32943,6 +32943,18 @@
32943
32943
  "isDeprecated": false,
32944
32944
  "deprecationReason": null
32945
32945
  },
32946
+ {
32947
+ "name": "sort_column",
32948
+ "description": null,
32949
+ "type": {
32950
+ "kind": "SCALAR",
32951
+ "name": "String",
32952
+ "ofType": null
32953
+ },
32954
+ "defaultValue": null,
32955
+ "isDeprecated": false,
32956
+ "deprecationReason": null
32957
+ },
32946
32958
  {
32947
32959
  "name": "sort_direction",
32948
32960
  "description": null,
package/index.d.ts CHANGED
@@ -3556,6 +3556,7 @@ export type GetDigitalAssetsParams = {
3556
3556
  resource_id: Scalars['ID']['input'];
3557
3557
  resource_type: Scalars['String']['input'];
3558
3558
  search?: InputMaybe<Scalars['String']['input']>;
3559
+ sort_column?: InputMaybe<Scalars['String']['input']>;
3559
3560
  sort_direction?: InputMaybe<Scalars['String']['input']>;
3560
3561
  };
3561
3562
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.550.0",
3
+ "version": "1.552.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
package/schema.graphql CHANGED
@@ -3426,6 +3426,7 @@ input GetDigitalAssetsParams {
3426
3426
  resource_id: ID!
3427
3427
  resource_type: String!
3428
3428
  search: String
3429
+ sort_column: String
3429
3430
  sort_direction: String
3430
3431
  }
3431
3432