@promoboxx/graphql-gateway-types 1.191.0 → 1.193.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 +4 -8
- package/index.d.ts +2 -1
- package/package.json +1 -1
- package/schema.graphql +5 -1
package/graphql.schema.json
CHANGED
|
@@ -23451,16 +23451,12 @@
|
|
|
23451
23451
|
},
|
|
23452
23452
|
{
|
|
23453
23453
|
"name": "id",
|
|
23454
|
-
"description": null,
|
|
23454
|
+
"description": "normally this would be non-nullable, but when requesting a digital_asset when unauthenticated (retailer public campaign view), this field is null",
|
|
23455
23455
|
"args": [],
|
|
23456
23456
|
"type": {
|
|
23457
|
-
"kind": "
|
|
23458
|
-
"name":
|
|
23459
|
-
"ofType":
|
|
23460
|
-
"kind": "SCALAR",
|
|
23461
|
-
"name": "ID",
|
|
23462
|
-
"ofType": null
|
|
23463
|
-
}
|
|
23457
|
+
"kind": "SCALAR",
|
|
23458
|
+
"name": "ID",
|
|
23459
|
+
"ofType": null
|
|
23464
23460
|
},
|
|
23465
23461
|
"isDeprecated": false,
|
|
23466
23462
|
"deprecationReason": null
|
package/index.d.ts
CHANGED
|
@@ -2517,7 +2517,8 @@ export type DigitalAsset = {
|
|
|
2517
2517
|
external_video_url?: Maybe<Scalars['String']['output']>;
|
|
2518
2518
|
file?: Maybe<File>;
|
|
2519
2519
|
file_url?: Maybe<Scalars['String']['output']>;
|
|
2520
|
-
|
|
2520
|
+
/** normally this would be non-nullable, but when requesting a digital_asset when unauthenticated (retailer public campaign view), this field is null */
|
|
2521
|
+
id?: Maybe<Scalars['ID']['output']>;
|
|
2521
2522
|
is_folder?: Maybe<Scalars['Boolean']['output']>;
|
|
2522
2523
|
name?: Maybe<Scalars['String']['output']>;
|
|
2523
2524
|
original_share_image_url?: Maybe<Scalars['String']['output']>;
|
package/package.json
CHANGED
package/schema.graphql
CHANGED
|
@@ -2414,7 +2414,11 @@ type DigitalAsset {
|
|
|
2414
2414
|
external_video_url: String
|
|
2415
2415
|
file: File
|
|
2416
2416
|
file_url: String
|
|
2417
|
-
|
|
2417
|
+
|
|
2418
|
+
"""
|
|
2419
|
+
normally this would be non-nullable, but when requesting a digital_asset when unauthenticated (retailer public campaign view), this field is null
|
|
2420
|
+
"""
|
|
2421
|
+
id: ID
|
|
2418
2422
|
is_folder: Boolean
|
|
2419
2423
|
name: String
|
|
2420
2424
|
original_share_image_url: String
|