@ibm-aspera/sdk 0.2.2

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.
Files changed (68) hide show
  1. package/.editorconfig +13 -0
  2. package/.eslintrc.js +128 -0
  3. package/.github/CODE_OF_CONDUCT.md +128 -0
  4. package/.github/CONTRIBUTING.md +147 -0
  5. package/.github/workflows/ci.yml +36 -0
  6. package/.github/workflows/documentation.yml +43 -0
  7. package/.github/workflows/npm_upload.yml +30 -0
  8. package/.husky/pre-commit +4 -0
  9. package/CHANGELOG.md +124 -0
  10. package/LICENSE +201 -0
  11. package/README.md +25 -0
  12. package/dist/commonjs/app/core.d.ts +219 -0
  13. package/dist/commonjs/app/core.js +546 -0
  14. package/dist/commonjs/app/installer.d.ts +9 -0
  15. package/dist/commonjs/app/installer.js +50 -0
  16. package/dist/commonjs/constants/constants.d.ts +6 -0
  17. package/dist/commonjs/constants/constants.js +9 -0
  18. package/dist/commonjs/constants/messages.d.ts +29 -0
  19. package/dist/commonjs/constants/messages.js +32 -0
  20. package/dist/commonjs/helpers/client/client.d.ts +5 -0
  21. package/dist/commonjs/helpers/client/client.js +7 -0
  22. package/dist/commonjs/helpers/client/http-client.d.ts +42 -0
  23. package/dist/commonjs/helpers/client/http-client.js +84 -0
  24. package/dist/commonjs/helpers/client/safari-client.d.ts +99 -0
  25. package/dist/commonjs/helpers/client/safari-client.js +252 -0
  26. package/dist/commonjs/helpers/helpers.d.ts +84 -0
  27. package/dist/commonjs/helpers/helpers.js +197 -0
  28. package/dist/commonjs/helpers/http.d.ts +16 -0
  29. package/dist/commonjs/helpers/http.js +42 -0
  30. package/dist/commonjs/helpers/ws.d.ts +62 -0
  31. package/dist/commonjs/helpers/ws.js +182 -0
  32. package/dist/commonjs/index.d.ts +41 -0
  33. package/dist/commonjs/index.js +99 -0
  34. package/dist/commonjs/models/aspera-sdk.model.d.ts +213 -0
  35. package/dist/commonjs/models/aspera-sdk.model.js +288 -0
  36. package/dist/commonjs/models/models.d.ts +640 -0
  37. package/dist/commonjs/models/models.js +2 -0
  38. package/dist/js/aspera-sdk.js +3 -0
  39. package/dist/js/aspera-sdk.js.LICENSE.txt +7 -0
  40. package/dist/js/aspera-sdk.js.map +1 -0
  41. package/docs/DEVELOPMENT.md +38 -0
  42. package/jest.config.js +15 -0
  43. package/jest.setup.js +0 -0
  44. package/package.json +50 -0
  45. package/src/app/core.ts +610 -0
  46. package/src/app/installer.ts +53 -0
  47. package/src/constants/constants.ts +16 -0
  48. package/src/constants/messages.ts +29 -0
  49. package/src/helpers/client/client.ts +11 -0
  50. package/src/helpers/client/http-client.ts +92 -0
  51. package/src/helpers/client/safari-client.ts +318 -0
  52. package/src/helpers/helpers.ts +200 -0
  53. package/src/helpers/http.ts +39 -0
  54. package/src/helpers/ws.ts +215 -0
  55. package/src/index.html +404 -0
  56. package/src/index.ts +104 -0
  57. package/src/models/aspera-sdk.model.ts +360 -0
  58. package/src/models/models.ts +669 -0
  59. package/tests/client.spec.ts +52 -0
  60. package/tests/core.spec.ts +13 -0
  61. package/tests/helpers.spec.ts +124 -0
  62. package/tests/http.spec.ts +14 -0
  63. package/tests/installer.spec.ts +135 -0
  64. package/tests/mocks.ts +11 -0
  65. package/tsconfig.json +10 -0
  66. package/tsconfig.module.json +15 -0
  67. package/typedoc.js +17 -0
  68. package/webpack.config.js +53 -0
package/.editorconfig ADDED
@@ -0,0 +1,13 @@
1
+ # Editor configuration, see http://editorconfig.org
2
+ root = true
3
+
4
+ [*]
5
+ charset = utf-8
6
+ indent_style = space
7
+ indent_size = 2
8
+ insert_final_newline = true
9
+ trim_trailing_whitespace = true
10
+
11
+ [*.md]
12
+ max_line_length = off
13
+ trim_trailing_whitespace = false
package/.eslintrc.js ADDED
@@ -0,0 +1,128 @@
1
+ module.exports = {
2
+ "env": {
3
+ "browser": true
4
+ },
5
+ "parser": "@typescript-eslint/parser",
6
+ "parserOptions": {
7
+ "project": "tsconfig.json",
8
+ "sourceType": "module"
9
+ },
10
+ "plugins": [
11
+ "@typescript-eslint",
12
+ ],
13
+ "rules": {
14
+ "@typescript-eslint/consistent-type-definitions": "error",
15
+ "@typescript-eslint/dot-notation": "off",
16
+ "@typescript-eslint/explicit-member-accessibility": [
17
+ "off",
18
+ {
19
+ "accessibility": "explicit"
20
+ }
21
+ ],
22
+ "@typescript-eslint/indent": ["error", 2],
23
+ "@typescript-eslint/member-delimiter-style": [
24
+ "error",
25
+ {
26
+ "multiline": {
27
+ "delimiter": "semi",
28
+ "requireLast": true
29
+ },
30
+ "singleline": {
31
+ "delimiter": "semi",
32
+ "requireLast": false
33
+ }
34
+ }
35
+ ],
36
+ "@typescript-eslint/naming-convention": "off",
37
+ "@typescript-eslint/no-empty-function": "off",
38
+ "@typescript-eslint/no-empty-interface": "error",
39
+ "@typescript-eslint/no-inferrable-types": [
40
+ "error",
41
+ {
42
+ "ignoreParameters": true
43
+ }
44
+ ],
45
+ "@typescript-eslint/no-shadow": [
46
+ "error",
47
+ {
48
+ "hoist": "all"
49
+ }
50
+ ],
51
+ "@typescript-eslint/no-unused-expressions": "error",
52
+ "@typescript-eslint/no-use-before-define": "error",
53
+ "@typescript-eslint/prefer-function-type": "error",
54
+ "@typescript-eslint/quotes": [
55
+ "error",
56
+ "single"
57
+ ],
58
+ "@typescript-eslint/semi": [
59
+ "error",
60
+ "always"
61
+ ],
62
+ "@typescript-eslint/type-annotation-spacing": "error",
63
+ "@typescript-eslint/unified-signatures": "error",
64
+ "brace-style": [
65
+ "error",
66
+ "1tbs"
67
+ ],
68
+ "curly": "error",
69
+ "eol-last": "error",
70
+ "eqeqeq": [
71
+ "error",
72
+ "smart"
73
+ ],
74
+ "guard-for-in": "error",
75
+ "id-blacklist": "off",
76
+ "id-match": "off",
77
+ "no-bitwise": "error",
78
+ "no-caller": "error",
79
+ "no-console": [
80
+ "error",
81
+ {
82
+ "allow": [
83
+ "log",
84
+ "warn",
85
+ "dir",
86
+ "timeLog",
87
+ "assert",
88
+ "clear",
89
+ "count",
90
+ "countReset",
91
+ "group",
92
+ "groupEnd",
93
+ "table",
94
+ "dirxml",
95
+ "error",
96
+ "groupCollapsed",
97
+ "Console",
98
+ "profile",
99
+ "profileEnd",
100
+ "timeStamp",
101
+ "context"
102
+ ]
103
+ }
104
+ ],
105
+ "no-debugger": "error",
106
+ "no-empty": "off",
107
+ "no-eval": "error",
108
+ "no-fallthrough": "error",
109
+ "no-new-wrappers": "error",
110
+ "no-restricted-imports": "error",
111
+ "no-throw-literal": "error",
112
+ "no-trailing-spaces": "error",
113
+ "no-underscore-dangle": "off",
114
+ "no-unused-labels": "error",
115
+ "no-var": "error",
116
+ "prefer-const": "error",
117
+ "radix": "error",
118
+ "spaced-comment": [
119
+ "error",
120
+ "always",
121
+ {
122
+ "markers": [
123
+ "/"
124
+ ]
125
+ }
126
+ ]
127
+ }
128
+ };
@@ -0,0 +1,128 @@
1
+ # Contributor Covenant Code of Conduct
2
+
3
+ ## Our Pledge
4
+
5
+ We as members, contributors, and leaders pledge to make participation in our
6
+ community a harassment-free experience for everyone, regardless of age, body
7
+ size, visible or invisible disability, ethnicity, sex characteristics, gender
8
+ identity and expression, level of experience, education, socio-economic status,
9
+ nationality, personal appearance, race, religion, or sexual identity
10
+ and orientation.
11
+
12
+ We pledge to act and interact in ways that contribute to an open, welcoming,
13
+ diverse, inclusive, and healthy community.
14
+
15
+ ## Our Standards
16
+
17
+ Examples of behavior that contributes to a positive environment for our
18
+ community include:
19
+
20
+ * Demonstrating empathy and kindness toward other people
21
+ * Being respectful of differing opinions, viewpoints, and experiences
22
+ * Giving and gracefully accepting constructive feedback
23
+ * Accepting responsibility and apologizing to those affected by our mistakes,
24
+ and learning from the experience
25
+ * Focusing on what is best not just for us as individuals, but for the
26
+ overall community
27
+
28
+ Examples of unacceptable behavior include:
29
+
30
+ * The use of sexualized language or imagery, and sexual attention or
31
+ advances of any kind
32
+ * Trolling, insulting or derogatory comments, and personal or political attacks
33
+ * Public or private harassment
34
+ * Publishing others' private information, such as a physical or email
35
+ address, without their explicit permission
36
+ * Other conduct which could reasonably be considered inappropriate in a
37
+ professional setting
38
+
39
+ ## Enforcement Responsibilities
40
+
41
+ Community leaders are responsible for clarifying and enforcing our standards of
42
+ acceptable behavior and will take appropriate and fair corrective action in
43
+ response to any behavior that they deem inappropriate, threatening, offensive,
44
+ or harmful.
45
+
46
+ Community leaders have the right and responsibility to remove, edit, or reject
47
+ comments, commits, code, wiki edits, issues, and other contributions that are
48
+ not aligned to this Code of Conduct, and will communicate reasons for moderation
49
+ decisions when appropriate.
50
+
51
+ ## Scope
52
+
53
+ This Code of Conduct applies within all community spaces, and also applies when
54
+ an individual is officially representing the community in public spaces.
55
+ Examples of representing our community include using an official e-mail address,
56
+ posting via an official social media account, or acting as an appointed
57
+ representative at an online or offline event.
58
+
59
+ ## Enforcement
60
+
61
+ Instances of abusive, harassing, or otherwise unacceptable behavior may be
62
+ reported to the community leaders responsible for enforcement at
63
+ Aspera-Release@wwpdl.vnet.ibm.com.
64
+ All complaints will be reviewed and investigated promptly and fairly.
65
+
66
+ All community leaders are obligated to respect the privacy and security of the
67
+ reporter of any incident.
68
+
69
+ ## Enforcement Guidelines
70
+
71
+ Community leaders will follow these Community Impact Guidelines in determining
72
+ the consequences for any action they deem in violation of this Code of Conduct:
73
+
74
+ ### 1. Correction
75
+
76
+ **Community Impact**: Use of inappropriate language or other behavior deemed
77
+ unprofessional or unwelcome in the community.
78
+
79
+ **Consequence**: A private, written warning from community leaders, providing
80
+ clarity around the nature of the violation and an explanation of why the
81
+ behavior was inappropriate. A public apology may be requested.
82
+
83
+ ### 2. Warning
84
+
85
+ **Community Impact**: A violation through a single incident or series
86
+ of actions.
87
+
88
+ **Consequence**: A warning with consequences for continued behavior. No
89
+ interaction with the people involved, including unsolicited interaction with
90
+ those enforcing the Code of Conduct, for a specified period of time. This
91
+ includes avoiding interactions in community spaces as well as external channels
92
+ like social media. Violating these terms may lead to a temporary or
93
+ permanent ban.
94
+
95
+ ### 3. Temporary Ban
96
+
97
+ **Community Impact**: A serious violation of community standards, including
98
+ sustained inappropriate behavior.
99
+
100
+ **Consequence**: A temporary ban from any sort of interaction or public
101
+ communication with the community for a specified period of time. No public or
102
+ private interaction with the people involved, including unsolicited interaction
103
+ with those enforcing the Code of Conduct, is allowed during this period.
104
+ Violating these terms may lead to a permanent ban.
105
+
106
+ ### 4. Permanent Ban
107
+
108
+ **Community Impact**: Demonstrating a pattern of violation of community
109
+ standards, including sustained inappropriate behavior, harassment of an
110
+ individual, or aggression toward or disparagement of classes of individuals.
111
+
112
+ **Consequence**: A permanent ban from any sort of public interaction within
113
+ the community.
114
+
115
+ ## Attribution
116
+
117
+ This Code of Conduct is adapted from the [Contributor Covenant][homepage],
118
+ version 2.0, available at
119
+ https://www.contributor-covenant.org/version/2/0/code_of_conduct.html.
120
+
121
+ Community Impact Guidelines were inspired by [Mozilla's code of conduct
122
+ enforcement ladder](https://github.com/mozilla/diversity).
123
+
124
+ [homepage]: https://www.contributor-covenant.org
125
+
126
+ For answers to common questions about this code of conduct, see the FAQ at
127
+ https://www.contributor-covenant.org/faq. Translations are available at
128
+ https://www.contributor-covenant.org/translations.
@@ -0,0 +1,147 @@
1
+ # Contributing
2
+
3
+ First off, thank you for your interest!
4
+
5
+ The Aspera JavaScript SDK is an **open source** project at IBM. We pride ourselves in open and inclusive development. If you're wondering more about our contribution process, you're in the right place.
6
+
7
+ ## Code of conduct
8
+
9
+ We value all of our community members, and thus want to foster a positive contributing environment. Please take a look at our [code of conduct](./CODE_OF_CONDUCT.md) before beginning any work.
10
+
11
+ ## Who can contribute?
12
+
13
+ Anyone! The one and only requirement is you'll need a [public GitHub account](https://github.com/join), as all our assets live on GitHub.
14
+
15
+ - **Bug Reports:** Found an issue? Feel free to [open a bug report](https://github.com/IBM/aspera-sdk-js/issues) to notify us of a potential issue, but please include as much detailed information as possible, such as the version of the Aspera SDK, configuration options, browser version, etc.
16
+ - **Development:** If coding is your thing, you can help us by contributing bug fixes or new features.
17
+ - **Documentation:** Our documentation is just as important as the code itself, and anyone is welcome contribute to our documentation to make sure it stays correct and up-to-date.
18
+
19
+ ## Prerequisites
20
+
21
+ Before contributing, check out [DEVELOPMENT](../docs/DEVELOPMENT.md#prerequisites) to make sure you have the necessary tools installed.
22
+
23
+ ## Start contributing
24
+
25
+ ### 1. Fork the repo:
26
+
27
+ Go to the [Aspera SDK](https://github.com/IBM/aspera-sdk-js) repository in GitHub and click the `Fork` button in the top-right corner. This will create a copy repo of the Aspera SDK associated with your account.
28
+
29
+ ### 2. Clone your fork:
30
+
31
+ ```sh
32
+ git clone git@github.com:[your_github_username]/aspera-sdk-js.git
33
+ cd aspera-sdk-js
34
+ ```
35
+
36
+ See [GitHub docs](https://help.github.com/articles/fork-a-repo/) for more
37
+ details.
38
+
39
+ ### 3. Add upstream remotes
40
+
41
+ When you clone your forked repo, running `git remote -v` will show that the
42
+ `origin` is pointing to your forked repo by default.
43
+
44
+ Now you need to add the `IBM/aspera-sdk-js` repo as your upstream
45
+ remote branch:
46
+
47
+ ```sh
48
+ # Add the upstream remote to your repo
49
+ git remote add upstream git@github.com:IBM/aspera-sdk-js.git
50
+
51
+ # Verify the remote was added
52
+ git remote -v
53
+ ```
54
+
55
+ Your terminal should output something like this:
56
+
57
+ ```sh
58
+ origin [your forked repo] (fetch)
59
+ origin [your forked repo] (push)
60
+ upstream git@github.com:IBM/aspera-sdk-js.git (fetch)
61
+ upstream git@github.com:IBM/aspera-sdk-js.git (push)
62
+ ```
63
+
64
+ ### 4. Work in a branch
65
+
66
+ When contributing, your work should always be done in a branch off of your repo, this is also how you will submit your pull request when your work is done.
67
+
68
+ To create a new branch, ensure you are in your forked branch in your terminal
69
+ and run:
70
+
71
+ ```sh
72
+ git pull origin main
73
+ git checkout -b {your-branch-name}
74
+ ```
75
+
76
+ ### 5. Build
77
+
78
+ From the root directory of your fork, run:
79
+
80
+ ```sh
81
+ # To install the project's dependencies
82
+ npm install
83
+
84
+ # To build the project:
85
+ npm run build
86
+ ```
87
+
88
+ For coding style, we generally follow the [Airbnb JavaScript Style Guide](https://github.com/airbnb/javascript).
89
+
90
+ ### 6. Test your code
91
+
92
+ If you're contributing, test your changes by running our test commands:
93
+
94
+ ```sh
95
+ npm run test
96
+ ```
97
+
98
+ When adding or changing functionality, please include new tests for them as part of your contribution. Also, always make sure to run our linter command:
99
+
100
+ ```sh
101
+ npm run lint
102
+ ```
103
+
104
+ ### 7. Make a pull request
105
+
106
+ **Note:** Before you make a pull request, [search](https://github.com/IBM/aspera-sdk-js/issues) the issues to see if a similar issue has already been submitted. If a similar issue has been submitted, assign yourself or ask to be assigned to the issue by posting a comment. If the issue does not exist, please make a new issue. Issues give us context about what you are contributing and expedite the process to getting your contributions merged.
107
+
108
+ When you're at a good stopping place and you're ready for feedback from other
109
+ contributors and maintainers, **push your commits to your fork**:
110
+
111
+ To do so, go to your terminal and run:
112
+
113
+ ```sh
114
+ git add -A
115
+ git commit -m "YOUR COMMIT MESSAGE HERE"
116
+ ```
117
+
118
+ #### Commit tip
119
+
120
+ > **Writing commit messages**
121
+ >
122
+ > - `<type>` indicates the type of commit that's being made. This can be:
123
+ > `feat`, `fix`, `perf`, `docs`, `chore`, `style`, `refactor`
124
+ > - `<scope>` The scope could be anything specifying place of the commit change
125
+ > or the thing(s) that changed.
126
+
127
+ After your changes are committed, run:
128
+
129
+ ```sh
130
+ git push -u origin { YOUR_BRANCH_NAME }
131
+ ```
132
+
133
+ In your browser, navigate to
134
+ [IBM/aspera-sdk-js](https://github.com/IBM/aspera-sdk-js)
135
+ and click the button that reads `Compare & pull request`
136
+
137
+ Write a title and description then click `Create pull request`
138
+
139
+ - [How to write the perfect pull request](https://github.com/blog/1943-how-to-write-the-perfect-pull-request)
140
+
141
+ ### 9. Updating a pull request
142
+
143
+ Stay up to date with the activity in your pull request. Maintainers from the Aspera SDK team will be reviewing your work and making comments, asking questions and suggesting changes to be made before they merge your code.
144
+
145
+ When you need to make a change, use the same method detailed above except you no longer need to run `git push -u origin { YOUR_BRANCH_NAME }` just `git push`.
146
+
147
+ Once all revisions to your pull request are complete, one of the maintainers will squash and merge your commits for you.
@@ -0,0 +1,36 @@
1
+ name: CI
2
+
3
+ on:
4
+ pull_request:
5
+ workflow_dispatch:
6
+
7
+ jobs:
8
+ CI:
9
+ runs-on: ubuntu-latest
10
+ strategy:
11
+ matrix:
12
+ node: [18, 20, 22]
13
+ steps:
14
+ - uses: actions/checkout@v2
15
+
16
+ - name: Setup Node.js ${{ matrix.node }}
17
+ uses: actions/setup-node@v2
18
+ with:
19
+ node-version: ${{ matrix.node }}
20
+
21
+ - name: Install
22
+ run: |
23
+ npm ci
24
+
25
+ - name: Build Package
26
+ run: |
27
+ npm run build
28
+ npm run build:module
29
+
30
+ - name: Run Linter
31
+ run: |
32
+ npm run lint
33
+
34
+ - name: Run Unit Tests
35
+ run: |
36
+ npm run test
@@ -0,0 +1,43 @@
1
+ name: Documentation
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ tags:
7
+ - 'v*'
8
+
9
+ permissions:
10
+ pages: write
11
+ id-token: write
12
+
13
+ jobs:
14
+ Documentation:
15
+ environment:
16
+ name: github-pages
17
+ url: ${{ steps.deployment.outputs.page_url }}
18
+
19
+ runs-on: ubuntu-latest
20
+ steps:
21
+ - uses: actions/checkout@v2
22
+
23
+ - name: Setup Node.js
24
+ uses: actions/setup-node@v2
25
+ with:
26
+ node-version: 18
27
+
28
+ - name: Install
29
+ run: |
30
+ npm ci
31
+
32
+ - name: Build Documentation
33
+ run: |
34
+ npm run build:demo
35
+
36
+ - name: Upload Artifact
37
+ uses: actions/upload-pages-artifact@v3
38
+ with:
39
+ path: dist/js
40
+
41
+ - name: Deploy to GitHub Pages
42
+ id: deployment
43
+ uses: actions/deploy-pages@v4
@@ -0,0 +1,30 @@
1
+ name: Publish to NPM
2
+
3
+ on:
4
+ workflow_dispatch:
5
+ push:
6
+ tags:
7
+ - 'v*'
8
+
9
+ jobs:
10
+ npm:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+
15
+ - name: Setup Node.js
16
+ uses: actions/setup-node@v2
17
+ with:
18
+ node-version: 18
19
+
20
+ - name: Build Package
21
+ run: |
22
+ npm ci
23
+ npm run build
24
+ npm run build:module
25
+
26
+ - name: Publish
27
+ uses: JS-DevTools/npm-publish@v1
28
+ with:
29
+ access: public
30
+ token: ${{ secrets.NPM_TOKEN }}
@@ -0,0 +1,4 @@
1
+ #!/usr/bin/env sh
2
+ . "$(dirname -- "$0")/_/husky.sh"
3
+
4
+ npm run lint && npm run test
package/CHANGELOG.md ADDED
@@ -0,0 +1,124 @@
1
+ # Changelog
2
+
3
+ All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
+
5
+ ### [0.2.2](https://github.com/IBM/aspera-sdk-js/compare/v0.2.1...v0.2.2) (2024-10-25)
6
+
7
+
8
+ ### Features
9
+
10
+ * rename to aspera SDK ([#47](https://github.com/IBM/aspera-sdk-js/issues/47)) ([680e891](https://github.com/IBM/aspera-sdk-js/commit/680e8914f04ad3edafeae54af7ab115c5fa63045))
11
+
12
+
13
+ ### Bug Fixes
14
+
15
+ * ws read appid from global ([#46](https://github.com/IBM/aspera-sdk-js/issues/46)) ([576ecea](https://github.com/IBM/aspera-sdk-js/commit/576ecea5d1a050edcac188c21779267a88f335d6))
16
+
17
+ ### [0.2.1](https://github.com/IBM/aspera-sdk-js/compare/v0.2.0...v0.2.1) (2024-10-25)
18
+
19
+
20
+ ### Features
21
+
22
+ * initial multiple user session implementation ([#37](https://github.com/IBM/aspera-sdk-js/issues/37)) ([338f058](https://github.com/IBM/aspera-sdk-js/commit/338f058597b00f3121ff9a1d9f53b561818e8107))
23
+
24
+
25
+ ### Bug Fixes
26
+
27
+ * use desktop_spec for payload ([c516649](https://github.com/IBM/aspera-sdk-js/commit/c51664904b01a4200cba6bdef665b108567123b4))
28
+
29
+ ## [0.2.0](https://github.com/IBM/aspera-sdk-js/compare/v0.1.36...v0.2.0) (2024-10-23)
30
+
31
+
32
+ ### ⚠ BREAKING CHANGES
33
+
34
+ * **#38:** old desktop-sdk-js is no longer used. Move to @ibm-aspera/browser-sdk-js
35
+
36
+ * fix: undo desktop specific and URL
37
+
38
+ * fix: unit tests for installer URL change
39
+
40
+ ### Features
41
+
42
+ * **#38:** migrate to aspera browser naming instead of desktop ([#40](https://github.com/IBM/aspera-sdk-js/issues/40)) ([8770121](https://github.com/IBM/aspera-sdk-js/commit/87701218e6f63c034ef334059abece2402bb6e5c)), closes [#38](https://github.com/IBM/aspera-sdk-js/issues/38) [#38](https://github.com/IBM/aspera-sdk-js/issues/38)
43
+ * notify last event on callback registration ([#34](https://github.com/IBM/aspera-sdk-js/issues/34)) ([08fd161](https://github.com/IBM/aspera-sdk-js/commit/08fd1612408ae6a66dd39f597b2ee340dfa88ace))
44
+
45
+
46
+ ### Bug Fixes
47
+
48
+ * **#38:** remove JS from npm name ([#41](https://github.com/IBM/aspera-sdk-js/issues/41)) ([b18a20f](https://github.com/IBM/aspera-sdk-js/commit/b18a20f9d2610d1725b237da57e345434110ff33)), closes [#38](https://github.com/IBM/aspera-sdk-js/issues/38)
49
+ * dependabot alerts ([#35](https://github.com/IBM/aspera-sdk-js/issues/35)) ([126417c](https://github.com/IBM/aspera-sdk-js/commit/126417c9665d6103cc81e409a7d128d4d28aacf0))
50
+ * safari extension status ([#33](https://github.com/IBM/aspera-sdk-js/issues/33)) ([5d7c915](https://github.com/IBM/aspera-sdk-js/commit/5d7c9156cfaf4f6d10c0d0ac741c520c0f6d7c68))
51
+
52
+ ### [0.1.36](https://github.com/IBM/aspera-sdk-js/compare/v0.1.35...v0.1.36) (2024-09-26)
53
+
54
+
55
+ ### Bug Fixes
56
+
57
+ * use correct callbacks for safari extension notifications ([#32](https://github.com/IBM/aspera-sdk-js/issues/32)) ([74ab8d6](https://github.com/IBM/aspera-sdk-js/commit/74ab8d67ffb4ab17354d038dbd7821ffa1815c7f))
58
+
59
+ ### [0.1.35](https://github.com/IBM/aspera-sdk-js/compare/v0.1.34...v0.1.35) (2024-09-25)
60
+
61
+
62
+ ### Features
63
+
64
+ * add safari extension status callback registration ([#27](https://github.com/IBM/aspera-sdk-js/issues/27)) ([41e3bbe](https://github.com/IBM/aspera-sdk-js/commit/41e3bbe289dbd07bbb164f7daa6256207b256945))
65
+
66
+ ### [0.1.34](https://github.com/IBM/aspera-sdk-js/compare/v0.1.33...v0.1.34) (2024-09-24)
67
+
68
+ ### [0.1.33](https://github.com/IBM/aspera-sdk-js/compare/v0.1.32...v0.1.33) (2024-09-24)
69
+
70
+
71
+ ### Bug Fixes
72
+
73
+ * initial is closed status ([#30](https://github.com/IBM/aspera-sdk-js/issues/30)) ([acf1cd1](https://github.com/IBM/aspera-sdk-js/commit/acf1cd101788fb076f5a31e30413262d0260338c))
74
+
75
+ ### [0.1.32](https://github.com/IBM/aspera-sdk-js/compare/v0.1.31...v0.1.32) (2024-09-24)
76
+
77
+
78
+ ### Bug Fixes
79
+
80
+ * notify last event on callback registration ([#29](https://github.com/IBM/aspera-sdk-js/issues/29)) ([0558fe8](https://github.com/IBM/aspera-sdk-js/commit/0558fe8b8ba607641cf8b79e742fe151f4b6ac54))
81
+
82
+ ### [0.1.31](https://github.com/IBM/aspera-sdk-js/compare/v0.1.30...v0.1.31) (2024-09-24)
83
+
84
+
85
+ ### Bug Fixes
86
+
87
+ * trigger status event on init chain ([#28](https://github.com/IBM/aspera-sdk-js/issues/28)) ([c519c9d](https://github.com/IBM/aspera-sdk-js/commit/c519c9dcc33e462614a3e42e861c440120916fc6))
88
+
89
+ ### [0.1.30](https://github.com/IBM/aspera-sdk-js/compare/v0.1.29...v0.1.30) (2024-09-20)
90
+
91
+
92
+ ### Bug Fixes
93
+
94
+ * **#24:** prevent ws event duplication ([#26](https://github.com/IBM/aspera-sdk-js/issues/26)) ([9959b69](https://github.com/IBM/aspera-sdk-js/commit/9959b69dcb00693f79d963bad8da73caf0932192)), closes [#24](https://github.com/IBM/aspera-sdk-js/issues/24)
95
+
96
+ ### [0.1.29](https://github.com/IBM/aspera-sdk-js/compare/v0.1.28...v0.1.29) (2024-09-19)
97
+
98
+
99
+ ### Bug Fixes
100
+
101
+ * **#23:** reject when safari extension is not enabled ([#25](https://github.com/IBM/aspera-sdk-js/issues/25)) ([6e46a99](https://github.com/IBM/aspera-sdk-js/commit/6e46a99a3e1fdfc8e39ef8a41cc7416d2e1163c5)), closes [#23](https://github.com/IBM/aspera-sdk-js/issues/23)
102
+
103
+ ### [0.1.28](https://github.com/IBM/aspera-sdk-js/compare/v0.1.26...v0.1.28) (2024-07-17)
104
+
105
+
106
+ ### Features
107
+
108
+ * **#8:** get info method ([#9](https://github.com/IBM/aspera-sdk-js/issues/9)) ([84f38c4](https://github.com/IBM/aspera-sdk-js/commit/84f38c42458d942243b7d7cb375e8c2a7287f086)), closes [#8](https://github.com/IBM/aspera-sdk-js/issues/8)
109
+ * safari client implementation ([#10](https://github.com/IBM/aspera-sdk-js/issues/10)) ([35170a6](https://github.com/IBM/aspera-sdk-js/commit/35170a6a00daa25d979ae8753e8ca79329baf422))
110
+ * safari extension state detection ([#12](https://github.com/IBM/aspera-sdk-js/issues/12)) ([94b376e](https://github.com/IBM/aspera-sdk-js/commit/94b376ec3416e0fb9e8cda5bc773a3942a09881b))
111
+ * support for transfer activity on safari ([#11](https://github.com/IBM/aspera-sdk-js/issues/11)) ([616c23b](https://github.com/IBM/aspera-sdk-js/commit/616c23bd9f58a3da8099468bbb66b10fe0c8582a))
112
+
113
+
114
+ ### Bug Fixes
115
+
116
+ * main field in package.json ([#13](https://github.com/IBM/aspera-sdk-js/issues/13)) ([8d103ee](https://github.com/IBM/aspera-sdk-js/commit/8d103ee0dffa8753c0c507f38ea375b8721555db))
117
+ * scrub for open source ([#82](https://github.com/IBM/aspera-sdk-js/issues/82)) ([ec71567](https://github.com/IBM/aspera-sdk-js/commit/ec71567f9a1271c765c13fcbe9acb8cac517e595))
118
+
119
+ ### [0.1.27](https://github.com/IBM/aspera-sdk-js/compare/v0.1.26...v0.1.27) (2024-06-10)
120
+
121
+
122
+ ### Bug Fixes
123
+
124
+ * scrub for open source ([#82](https://github.com/IBM/aspera-sdk-js/issues/82)) ([ec71567](https://github.com/IBM/aspera-sdk-js/commit/ec71567f9a1271c765c13fcbe9acb8cac517e595))