@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.
@@ -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": "NON_NULL",
23458
- "name": null,
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
- id: Scalars['ID']['output'];
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
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@promoboxx/graphql-gateway-types",
3
- "version": "1.191.0",
3
+ "version": "1.193.0",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {
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
- id: ID!
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