@globalscoutme/api-client 1.1.19 → 1.1.20

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.
@@ -338,6 +338,10 @@ export type PlayerSearchItemDto = {
338
338
  * GSI profile score
339
339
  */
340
340
  gsiScore?: number | null;
341
+ /**
342
+ * Whether the authenticated caller has this player on their watchlist; null when not applicable
343
+ */
344
+ isWatchlisted: boolean | null;
341
345
  };
342
346
  export type PlayerSearchResultDto = {
343
347
  items: Array<PlayerSearchItemDto>;
@@ -755,7 +759,7 @@ export type PlayerByIdDto = {
755
759
  /**
756
760
  * Whether the authenticated caller has this player on their watchlist; null when not applicable
757
761
  */
758
- isWatchlisted?: boolean | null;
762
+ isWatchlisted: boolean | null;
759
763
  };
760
764
  export type BillingProviderProductDto = {
761
765
  provider: string;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@globalscoutme/api-client",
3
- "version": "1.1.19",
3
+ "version": "1.1.20",
4
4
  "description": "GlobalScoutMe API client (generated)",
5
5
  "author": "GlobalScoutMe",
6
6
  "license": "UNLICENSED",
package/types.gen.ts CHANGED
@@ -362,6 +362,10 @@ export type PlayerSearchItemDto = {
362
362
  * GSI profile score
363
363
  */
364
364
  gsiScore?: number | null;
365
+ /**
366
+ * Whether the authenticated caller has this player on their watchlist; null when not applicable
367
+ */
368
+ isWatchlisted: boolean | null;
365
369
  };
366
370
 
367
371
  export type PlayerSearchResultDto = {
@@ -807,7 +811,7 @@ export type PlayerByIdDto = {
807
811
  /**
808
812
  * Whether the authenticated caller has this player on their watchlist; null when not applicable
809
813
  */
810
- isWatchlisted?: boolean | null;
814
+ isWatchlisted: boolean | null;
811
815
  };
812
816
 
813
817
  export type BillingProviderProductDto = {