Skip to content

Commit 6957eeb

Browse files
committed
Merge remote-tracking branch 'core/main' into ignore-functions-on-validation
Signed-off-by: Antonio Mendoza Pérez <[email protected]>
2 parents bbc3bbb + a6903ad commit 6957eeb

File tree

105 files changed

+299
-300
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

105 files changed

+299
-300
lines changed

Diff for: examples/node/index.ts

+15
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
/*
2+
* Copyright 2021-Present The Serverless Workflow Specification Authors
3+
*
4+
* Licensed under the Apache License, Version 2.0 (the "License");
5+
* you may not use this file except in compliance with the License.
6+
* You may obtain a copy of the License at
7+
*
8+
* http://www.apache.org/licenses/LICENSE-2.0
9+
*
10+
* Unless required by applicable law or agreed to in writing, software
11+
* distributed under the License is distributed on an "AS IS" BASIS,
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13+
* See the License for the specific language governing permissions and
14+
* limitations under the License.
15+
*/
116
import { workflowBuilder, injectstateBuilder, Specification } from '../../dist';
217
const workflow: Specification.Workflow = workflowBuilder()
318
.id('helloworld')

Diff for: src/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
export * from './serverless-workflow-sdk';

Diff for: src/lib/builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
/**

Diff for: src/lib/builders/action-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/actiondatafilter-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/branch-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/callbackstate-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/correlation-def-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/crondef-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/databasedswitch-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/defaultdef-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/delaystate-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/end-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/enddatacondition-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/enddeventcondition-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/error-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/eventbasedswitch-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/eventdatafilter-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/eventdef-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/eventref-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/eventstate-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/exectimeout-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/foreachstate-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/function-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/functionref-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/index.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
export * from './workflow-builder';

Diff for: src/lib/builders/injectstate-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/metadata-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/onevents-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/operationstate-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/parallelstate-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

Diff for: src/lib/builders/produceeventdef-builder.ts

+1-2
Original file line numberDiff line numberDiff line change
@@ -9,10 +9,9 @@
99
*
1010
* Unless required by applicable law or agreed to in writing, software
1111
* distributed under the License is distributed on an "AS IS" BASIS,
12-
* oUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12+
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
1313
* See the License for the specific language governing permissions and
1414
* limitations under the License.
15-
*
1615
*/
1716

1817
import { Builder, builder } from '../builder';

0 commit comments

Comments
 (0)