@beseif-solutions/prow-core 0.3.4 → 0.3.5

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.
@@ -125,7 +125,7 @@ export type ImmediateTrigger<Config extends SetupEventConfig> = CommonEvents<Con
125
125
  credentials: Config[`credentials`];
126
126
  inputs: {
127
127
  fields: Config[`fields`];
128
- last_schedule?: string;
128
+ last_schedule: string;
129
129
  limit?: number;
130
130
  };
131
131
  outputs: {
@@ -144,7 +144,7 @@ export type ScheduledTrigger<Config extends EventConfig> = CommonEvents<Config>
144
144
  credentials: Config[`credentials`];
145
145
  inputs: {
146
146
  fields: Config[`fields`];
147
- last_schedule?: string;
147
+ last_schedule: string;
148
148
  limit?: number;
149
149
  };
150
150
  outputs: {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@beseif-solutions/prow-core",
3
- "version": "0.3.4",
3
+ "version": "0.3.5",
4
4
  "description": "Prow core functionalities and classes",
5
5
  "main": "dist/index.js",
6
6
  "scripts": {
@@ -102,7 +102,7 @@ export type ImmediateTrigger<Config extends SetupEventConfig> = CommonEvents<Con
102
102
  }>,
103
103
  poll?: CoreFunction<{
104
104
  credentials: Config[`credentials`],
105
- inputs: { fields: Config[`fields`], last_schedule?: string, limit?: number },
105
+ inputs: { fields: Config[`fields`], last_schedule: string, limit?: number },
106
106
  outputs: { records: Config[`outputs`][], flags: Partial<Record<Config[`flags`][`outputs`][number], true>> },
107
107
  }>,
108
108
  },
@@ -115,7 +115,7 @@ export type ScheduledTrigger<Config extends EventConfig> = CommonEvents<Config>
115
115
  functions: {
116
116
  poll: CoreFunction<{
117
117
  credentials: Config[`credentials`],
118
- inputs: { fields: Config[`fields`], last_schedule?: string, limit?: number },
118
+ inputs: { fields: Config[`fields`], last_schedule: string, limit?: number },
119
119
  outputs: { records: Config[`outputs`][], flags: Partial<Record<Config[`flags`][`outputs`][number], true>> },
120
120
  }>,
121
121
  },