You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@beam.apache.org by ro...@apache.org on 2023/02/01 07:16:04 UTC

[beam] branch master updated (bc2895c99a2 -> 8f7d2cc8eb9)

This is an automated email from the ASF dual-hosted git repository.

robertwb pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/beam.git


    from bc2895c99a2 Merge pull request #25094: Externalizing the StreamWriter parameters for StorageWrites
     add aae7ecd2441 Setup typedoc for doc generation.
     add 9e373713cf8 Quick pass adding some typescript docs and pointers.
     add 68b60deefa3 Add typescript doc gen to release process.
     add d182f462a5d Split README into user-facing and dev-facing portions.
     add 3883affd24e Merge branch 'master' into typescript-typedoc
     add 8f7d2cc8eb9 Merge pull request #25069 Run typedoc to generate typescript docs.

No new revisions were added by this update.

Summary of changes:
 .../src/main/scripts/build_release_candidate.sh    |  15 ++
 sdks/typescript/{README.md => README-dev.md}       |  89 +----------
 sdks/typescript/README.md                          | 152 +++---------------
 sdks/typescript/package-lock.json                  | 177 ++++++++++++++++++++-
 sdks/typescript/package.json                       |   4 +-
 sdks/typescript/src/apache_beam/coders/coders.ts   |   1 +
 .../typescript/src/apache_beam/coders/js_coders.ts |   7 +
 .../typescript/src/apache_beam/coders/row_coder.ts |  20 ++-
 .../src/apache_beam/examples/wordcount_textio.ts   |   2 +-
 sdks/typescript/src/apache_beam/pvalue.ts          |   9 +-
 .../src/apache_beam/runners/direct_runner.ts       |   2 +-
 sdks/typescript/src/apache_beam/runners/runner.ts  |  16 +-
 sdks/typescript/src/apache_beam/testing/assert.ts  |  23 +++
 .../apache_beam/testing/multi_pipeline_runner.ts   |  19 +++
 .../src/apache_beam/transforms/external.ts         |   9 ++
 .../src/apache_beam/transforms/flatten.ts          |   7 +
 .../apache_beam/transforms/group_and_combine.ts    |  40 ++++-
 .../src/apache_beam/transforms/internal.ts         |  14 ++
 .../typescript/src/apache_beam/transforms/pardo.ts |  62 +++++++-
 .../src/apache_beam/transforms/python.ts           |  35 ++++
 .../src/apache_beam/transforms/transform.ts        |  50 ++++++
 .../src/apache_beam/transforms/window.ts           |   8 +
 sdks/typescript/src/apache_beam/utils/utils.ts     |   2 +
 sdks/typescript/test/primitives_test.ts            |   6 +-
 sdks/typescript/test/wordcount.ts                  |   6 +-
 sdks/typescript/typedoc.json                       |  24 +++
 26 files changed, 555 insertions(+), 244 deletions(-)
 copy sdks/typescript/{README.md => README-dev.md} (51%)
 create mode 100644 sdks/typescript/typedoc.json