@ampsec/platform-client 62.15.0 → 62.17.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.
|
@@ -7,5 +7,9 @@ export type ConnectorUpsertDto = BaseUpsertDto & {
|
|
|
7
7
|
status: ConnectorStatus;
|
|
8
8
|
/** Provider Id */
|
|
9
9
|
pid?: string | null;
|
|
10
|
+
/** Default: `86400`, i.e. 1 time per day */
|
|
11
|
+
syncIntervalSeconds?: number;
|
|
12
|
+
/** ISO8601 */
|
|
13
|
+
lastRunTime?: string;
|
|
10
14
|
};
|
|
11
15
|
export type ConnectorDto = BaseDto & ConnectorUpsertDto;
|
package/package.json
CHANGED
|
@@ -8,6 +8,10 @@ export type ConnectorUpsertDto = BaseUpsertDto & {
|
|
|
8
8
|
status: ConnectorStatus;
|
|
9
9
|
/** Provider Id */
|
|
10
10
|
pid?: string | null;
|
|
11
|
+
/** Default: `86400`, i.e. 1 time per day */
|
|
12
|
+
syncIntervalSeconds?: number;
|
|
13
|
+
/** ISO8601 */
|
|
14
|
+
lastRunTime?: string;
|
|
11
15
|
};
|
|
12
16
|
|
|
13
17
|
export type ConnectorDto = BaseDto & ConnectorUpsertDto;
|