@promoboxx/graphql-gateway-types 1.175.0 → 1.176.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
|
@@ -5177,6 +5177,18 @@
|
|
|
5177
5177
|
"isDeprecated": false,
|
|
5178
5178
|
"deprecationReason": null
|
|
5179
5179
|
},
|
|
5180
|
+
{
|
|
5181
|
+
"name": "digital_asset",
|
|
5182
|
+
"description": null,
|
|
5183
|
+
"args": [],
|
|
5184
|
+
"type": {
|
|
5185
|
+
"kind": "OBJECT",
|
|
5186
|
+
"name": "DigitalAsset",
|
|
5187
|
+
"ofType": null
|
|
5188
|
+
},
|
|
5189
|
+
"isDeprecated": false,
|
|
5190
|
+
"deprecationReason": null
|
|
5191
|
+
},
|
|
5180
5192
|
{
|
|
5181
5193
|
"name": "enabled",
|
|
5182
5194
|
"description": null,
|
package/index.d.ts
CHANGED
|
@@ -600,6 +600,7 @@ export type Asset = {
|
|
|
600
600
|
created_by_id?: Maybe<Scalars['ID']['output']>;
|
|
601
601
|
deleted_at?: Maybe<Scalars['String']['output']>;
|
|
602
602
|
description?: Maybe<Scalars['String']['output']>;
|
|
603
|
+
digital_asset?: Maybe<DigitalAsset>;
|
|
603
604
|
enabled?: Maybe<Scalars['Boolean']['output']>;
|
|
604
605
|
file_content_type?: Maybe<Scalars['String']['output']>;
|
|
605
606
|
file_extension?: Maybe<Scalars['String']['output']>;
|
package/package.json
CHANGED