@spytecgps/nova-orm 1.3.80 → 1.3.82
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.
|
@@ -131,7 +131,7 @@ export declare class ClientsRepository extends BaseRepository {
|
|
|
131
131
|
* - userActivationId: The user activation id
|
|
132
132
|
* - tokenUrl: The token url
|
|
133
133
|
* - fleetUrl: The fleet url
|
|
134
|
-
* -
|
|
134
|
+
* - requestParams: The request params
|
|
135
135
|
* @returns {Promise<ClientIngestorConfiguration>} The created client ingestor configuration
|
|
136
136
|
*/
|
|
137
137
|
createClientIngestorConfiguration(params: CreateClientIngestorConfigurationParams): Promise<ClientIngestorConfiguration>;
|
package/dist/types/clients.d.ts
CHANGED
|
@@ -125,6 +125,7 @@ export interface GetClientIngestorConfigurationsParams extends BaseSelectQueryPa
|
|
|
125
125
|
filters: {
|
|
126
126
|
clientId?: number;
|
|
127
127
|
id?: number;
|
|
128
|
+
isEnabled?: boolean;
|
|
128
129
|
};
|
|
129
130
|
}
|
|
130
131
|
export declare const requireCreateClientIngestorConfigurationParamsAttributes: string[];
|
|
@@ -133,5 +134,5 @@ export interface CreateClientIngestorConfigurationParams {
|
|
|
133
134
|
userActivationId: number;
|
|
134
135
|
tokenUrl: string;
|
|
135
136
|
fleetUrl: string;
|
|
136
|
-
|
|
137
|
+
requestParams: Record<string, any>;
|
|
137
138
|
}
|