@globalscoutme/api-client 1.1.19 → 1.1.21
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/dist/types.gen.d.ts +5 -1
- package/package.json +1 -1
- package/types.gen.ts +5 -1
package/dist/types.gen.d.ts
CHANGED
|
@@ -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
|
|
762
|
+
isWatchlisted: boolean | null;
|
|
759
763
|
};
|
|
760
764
|
export type BillingProviderProductDto = {
|
|
761
765
|
provider: string;
|
package/package.json
CHANGED
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
|
|
814
|
+
isWatchlisted: boolean | null;
|
|
811
815
|
};
|
|
812
816
|
|
|
813
817
|
export type BillingProviderProductDto = {
|