namirasoft-scheduler 1.4.9 → 1.4.10
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/NamirasoftSchedulerServer.js +1 -1
- package/dist/NamirasoftSchedulerServer.js.map +1 -1
- package/dist/row/SchedulerInputRow.d.ts +5 -5
- package/dist/row/SchedulerRow.d.ts +5 -5
- package/package.json +1 -1
- package/src/NamirasoftSchedulerServer.ts +1 -1
- package/src/row/SchedulerInputRow.ts +5 -5
- package/src/row/SchedulerRow.ts +5 -5
|
@@ -11,7 +11,7 @@ const NamirasoftSchedulerServerSchedulerTag_1 = require("./NamirasoftSchedulerSe
|
|
|
11
11
|
const NamirasoftSchedulerServerValue_1 = require("./NamirasoftSchedulerServerValue");
|
|
12
12
|
class NamirasoftSchedulerServer extends namirasoft_account_1.NSABaseServer {
|
|
13
13
|
constructor(base_url, manager, onError) {
|
|
14
|
-
super(base_url, `1.4.
|
|
14
|
+
super(base_url, `1.4.10`, manager, onError);
|
|
15
15
|
this.healthz = new NamirasoftSchedulerServerHealthz_1.NamirasoftSchedulerServerHealthz(this);
|
|
16
16
|
this.metrics = new NamirasoftSchedulerServerMetrics_1.NamirasoftSchedulerServerMetrics(this);
|
|
17
17
|
this.value = new NamirasoftSchedulerServerValue_1.NamirasoftSchedulerServerValue(this);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"NamirasoftSchedulerServer.js","sourceRoot":"","sources":["../src/NamirasoftSchedulerServer.ts"],"names":[],"mappings":";;;AAoBA,2DAAmD;AACnD,yFAAsF;AACtF,yFAAsF;AACtF,6FAA0F;AAC1F,6GAA0G;AAC1G,uGAAoG;AACpG,mGAAgG;AAChG,qFAAkF;AAGlF,MAAa,yBAA0B,SAAQ,kCAAa;IASxD,YAAY,QAAgB,EAAE,OAAqB,EAAE,OAA+B;QAEhF,KAAK,CAAC,QAAQ,EAAE,
|
|
1
|
+
{"version":3,"file":"NamirasoftSchedulerServer.js","sourceRoot":"","sources":["../src/NamirasoftSchedulerServer.ts"],"names":[],"mappings":";;;AAoBA,2DAAmD;AACnD,yFAAsF;AACtF,yFAAsF;AACtF,6FAA0F;AAC1F,6GAA0G;AAC1G,uGAAoG;AACpG,mGAAgG;AAChG,qFAAkF;AAGlF,MAAa,yBAA0B,SAAQ,kCAAa;IASxD,YAAY,QAAgB,EAAE,OAAqB,EAAE,OAA+B;QAEhF,KAAK,CAAC,QAAQ,EAAE,QAAQ,EAAE,OAAO,EAAE,OAAO,CAAC,CAAC;QAC5C,IAAI,CAAC,OAAO,GAAG,IAAI,mEAAgC,CAAC,IAAI,CAAC,CAAC;QAC1D,IAAI,CAAC,OAAO,GAAG,IAAI,mEAAgC,CAAC,IAAI,CAAC,CAAC;QAC1D,IAAI,CAAC,KAAK,GAAG,IAAI,+DAA8B,CAAC,IAAI,CAAC,CAAC;QACtD,IAAI,CAAC,kBAAkB,GAAG,IAAI,uFAA0C,CAAC,IAAI,CAAC,CAAC;QAC/E,IAAI,CAAC,eAAe,GAAG,IAAI,iFAAuC,CAAC,IAAI,CAAC,CAAC;QACzE,IAAI,CAAC,aAAa,GAAG,IAAI,6EAAqC,CAAC,IAAI,CAAC,CAAC;QACrE,IAAI,CAAC,SAAS,GAAG,IAAI,uEAAkC,CAAC,IAAI,CAAC,CAAC;IAClE,CAAC;CACJ;AApBD,8DAoBC;AAAA,CAAC"}
|
|
@@ -20,11 +20,11 @@ export type SchedulerInputRow = {
|
|
|
20
20
|
frequency_type: (SchedulerFrequencyType | null);
|
|
21
21
|
frequency_day_every: (number | null);
|
|
22
22
|
frequency_week_every: (number | null);
|
|
23
|
-
frequency_week_days: (
|
|
24
|
-
frequency_month_names: (
|
|
25
|
-
frequency_month_days: (
|
|
26
|
-
frequency_month_on_week: (
|
|
27
|
-
frequency_month_on_days: (
|
|
23
|
+
frequency_week_days: (FrequencyWeekDaysType[] | null);
|
|
24
|
+
frequency_month_names: (FrequencyMonthNamesType[] | null);
|
|
25
|
+
frequency_month_days: (FrequencyMonthDaysType[] | null);
|
|
26
|
+
frequency_month_on_week: (FrequencyMonthOnWeekType[] | null);
|
|
27
|
+
frequency_month_on_days: (FrequencyMonthOnDaysType[] | null);
|
|
28
28
|
frequency_cron_year: (string | null);
|
|
29
29
|
frequency_cron_month: (string | null);
|
|
30
30
|
frequency_cron_day: (string | null);
|
|
@@ -22,11 +22,11 @@ export type SchedulerRow = {
|
|
|
22
22
|
frequency_type: (SchedulerFrequencyType | null);
|
|
23
23
|
frequency_day_every: (number | null);
|
|
24
24
|
frequency_week_every: (number | null);
|
|
25
|
-
frequency_week_days: (
|
|
26
|
-
frequency_month_names: (
|
|
27
|
-
frequency_month_days: (
|
|
28
|
-
frequency_month_on_week: (
|
|
29
|
-
frequency_month_on_days: (
|
|
25
|
+
frequency_week_days: (FrequencyWeekDaysType[] | null);
|
|
26
|
+
frequency_month_names: (FrequencyMonthNamesType[] | null);
|
|
27
|
+
frequency_month_days: (FrequencyMonthDaysType[] | null);
|
|
28
|
+
frequency_month_on_week: (FrequencyMonthOnWeekType[] | null);
|
|
29
|
+
frequency_month_on_days: (FrequencyMonthOnDaysType[] | null);
|
|
30
30
|
frequency_cron_year: (string | null);
|
|
31
31
|
frequency_cron_month: (string | null);
|
|
32
32
|
frequency_cron_day: (string | null);
|
package/package.json
CHANGED
|
@@ -39,7 +39,7 @@ export class NamirasoftSchedulerServer extends NSABaseServer
|
|
|
39
39
|
scheduler: NamirasoftSchedulerServerScheduler;
|
|
40
40
|
constructor(base_url: string, manager: TokenManager, onError: (error: Error) => void)
|
|
41
41
|
{
|
|
42
|
-
super(base_url, `1.4.
|
|
42
|
+
super(base_url, `1.4.10`, manager, onError);
|
|
43
43
|
this.healthz = new NamirasoftSchedulerServerHealthz(this);
|
|
44
44
|
this.metrics = new NamirasoftSchedulerServerMetrics(this);
|
|
45
45
|
this.value = new NamirasoftSchedulerServerValue(this);
|
|
@@ -42,11 +42,11 @@ export type SchedulerInputRow =
|
|
|
42
42
|
frequency_type: (SchedulerFrequencyType | null);
|
|
43
43
|
frequency_day_every: (number | null);
|
|
44
44
|
frequency_week_every: (number | null);
|
|
45
|
-
frequency_week_days: (
|
|
46
|
-
frequency_month_names: (
|
|
47
|
-
frequency_month_days: (
|
|
48
|
-
frequency_month_on_week: (
|
|
49
|
-
frequency_month_on_days: (
|
|
45
|
+
frequency_week_days: (FrequencyWeekDaysType[] | null);
|
|
46
|
+
frequency_month_names: (FrequencyMonthNamesType[] | null);
|
|
47
|
+
frequency_month_days: (FrequencyMonthDaysType[] | null);
|
|
48
|
+
frequency_month_on_week: (FrequencyMonthOnWeekType[] | null);
|
|
49
|
+
frequency_month_on_days: (FrequencyMonthOnDaysType[] | null);
|
|
50
50
|
frequency_cron_year: (string | null);
|
|
51
51
|
frequency_cron_month: (string | null);
|
|
52
52
|
frequency_cron_day: (string | null);
|
package/src/row/SchedulerRow.ts
CHANGED
|
@@ -44,11 +44,11 @@ export type SchedulerRow =
|
|
|
44
44
|
frequency_type: (SchedulerFrequencyType | null);
|
|
45
45
|
frequency_day_every: (number | null);
|
|
46
46
|
frequency_week_every: (number | null);
|
|
47
|
-
frequency_week_days: (
|
|
48
|
-
frequency_month_names: (
|
|
49
|
-
frequency_month_days: (
|
|
50
|
-
frequency_month_on_week: (
|
|
51
|
-
frequency_month_on_days: (
|
|
47
|
+
frequency_week_days: (FrequencyWeekDaysType[] | null);
|
|
48
|
+
frequency_month_names: (FrequencyMonthNamesType[] | null);
|
|
49
|
+
frequency_month_days: (FrequencyMonthDaysType[] | null);
|
|
50
|
+
frequency_month_on_week: (FrequencyMonthOnWeekType[] | null);
|
|
51
|
+
frequency_month_on_days: (FrequencyMonthOnDaysType[] | null);
|
|
52
52
|
frequency_cron_year: (string | null);
|
|
53
53
|
frequency_cron_month: (string | null);
|
|
54
54
|
frequency_cron_day: (string | null);
|