@ignos/api-client 20250603.0.11860 → 20250603.0.11863
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/lib/ignosportal-api.d.ts
CHANGED
|
@@ -8323,6 +8323,7 @@ export interface IFixtureLastUsedOperationDto {
|
|
|
8323
8323
|
export type GripSideDto = "NotApplicable" | "Inside" | "Outside";
|
|
8324
8324
|
export declare class ListFixtures implements IListFixtures {
|
|
8325
8325
|
pageSize?: number | null;
|
|
8326
|
+
searchTerm?: string | null;
|
|
8326
8327
|
fixtureIdFilter?: string[] | null;
|
|
8327
8328
|
fixtureGroupIdFilter?: string[] | null;
|
|
8328
8329
|
fixtureTypeFilter?: FixtureTypeDto[] | null;
|
|
@@ -8355,6 +8356,7 @@ export declare class ListFixtures implements IListFixtures {
|
|
|
8355
8356
|
}
|
|
8356
8357
|
export interface IListFixtures {
|
|
8357
8358
|
pageSize?: number | null;
|
|
8359
|
+
searchTerm?: string | null;
|
|
8358
8360
|
fixtureIdFilter?: string[] | null;
|
|
8359
8361
|
fixtureGroupIdFilter?: string[] | null;
|
|
8360
8362
|
fixtureTypeFilter?: FixtureTypeDto[] | null;
|
package/lib/ignosportal-api.js
CHANGED
|
@@ -33859,6 +33859,7 @@ export class ListFixtures {
|
|
|
33859
33859
|
init(_data) {
|
|
33860
33860
|
if (_data) {
|
|
33861
33861
|
this.pageSize = _data["pageSize"];
|
|
33862
|
+
this.searchTerm = _data["searchTerm"];
|
|
33862
33863
|
if (Array.isArray(_data["fixtureIdFilter"])) {
|
|
33863
33864
|
this.fixtureIdFilter = [];
|
|
33864
33865
|
for (let item of _data["fixtureIdFilter"])
|
|
@@ -33907,6 +33908,7 @@ export class ListFixtures {
|
|
|
33907
33908
|
toJSON(data) {
|
|
33908
33909
|
data = typeof data === 'object' ? data : {};
|
|
33909
33910
|
data["pageSize"] = this.pageSize;
|
|
33911
|
+
data["searchTerm"] = this.searchTerm;
|
|
33910
33912
|
if (Array.isArray(this.fixtureIdFilter)) {
|
|
33911
33913
|
data["fixtureIdFilter"] = [];
|
|
33912
33914
|
for (let item of this.fixtureIdFilter)
|
package/package.json
CHANGED
package/src/ignosportal-api.ts
CHANGED
|
@@ -41019,6 +41019,7 @@ export type GripSideDto = "NotApplicable" | "Inside" | "Outside";
|
|
|
41019
41019
|
|
|
41020
41020
|
export class ListFixtures implements IListFixtures {
|
|
41021
41021
|
pageSize?: number | null;
|
|
41022
|
+
searchTerm?: string | null;
|
|
41022
41023
|
fixtureIdFilter?: string[] | null;
|
|
41023
41024
|
fixtureGroupIdFilter?: string[] | null;
|
|
41024
41025
|
fixtureTypeFilter?: FixtureTypeDto[] | null;
|
|
@@ -41057,6 +41058,7 @@ export class ListFixtures implements IListFixtures {
|
|
|
41057
41058
|
init(_data?: any) {
|
|
41058
41059
|
if (_data) {
|
|
41059
41060
|
this.pageSize = _data["pageSize"];
|
|
41061
|
+
this.searchTerm = _data["searchTerm"];
|
|
41060
41062
|
if (Array.isArray(_data["fixtureIdFilter"])) {
|
|
41061
41063
|
this.fixtureIdFilter = [] as any;
|
|
41062
41064
|
for (let item of _data["fixtureIdFilter"])
|
|
@@ -41107,6 +41109,7 @@ export class ListFixtures implements IListFixtures {
|
|
|
41107
41109
|
toJSON(data?: any) {
|
|
41108
41110
|
data = typeof data === 'object' ? data : {};
|
|
41109
41111
|
data["pageSize"] = this.pageSize;
|
|
41112
|
+
data["searchTerm"] = this.searchTerm;
|
|
41110
41113
|
if (Array.isArray(this.fixtureIdFilter)) {
|
|
41111
41114
|
data["fixtureIdFilter"] = [];
|
|
41112
41115
|
for (let item of this.fixtureIdFilter)
|
|
@@ -41150,6 +41153,7 @@ export class ListFixtures implements IListFixtures {
|
|
|
41150
41153
|
|
|
41151
41154
|
export interface IListFixtures {
|
|
41152
41155
|
pageSize?: number | null;
|
|
41156
|
+
searchTerm?: string | null;
|
|
41153
41157
|
fixtureIdFilter?: string[] | null;
|
|
41154
41158
|
fixtureGroupIdFilter?: string[] | null;
|
|
41155
41159
|
fixtureTypeFilter?: FixtureTypeDto[] | null;
|