@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.
- package/graphql.schema.json +12 -0
- package/index.d.ts +1 -0
- package/package.json +1 -1
- package/schema.graphql +1 -0
package/graphql.schema.json
CHANGED
|
@@ -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