gopadjs 1.8.0 → 2.1.0
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/.github/RELEASE +1 -1
- package/.github/settings.yml +73 -0
- package/.github/workflows/flake.yml +16 -27
- package/CHANGELOG.md +14 -0
- package/README.md +2 -2
- package/flake.lock +13 -13
- package/openapi.yml +1 -1
- package/package.json +2 -2
package/.github/RELEASE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Mon
|
|
1
|
+
Mon Nov 4 08:12:43 UTC 2024
|
package/.github/settings.yml
CHANGED
|
@@ -41,4 +41,77 @@ branches:
|
|
|
41
41
|
- bots
|
|
42
42
|
- members
|
|
43
43
|
|
|
44
|
+
teams:
|
|
45
|
+
- name: admins
|
|
46
|
+
permission: admin
|
|
47
|
+
- name: bots
|
|
48
|
+
permission: admin
|
|
49
|
+
- name: members
|
|
50
|
+
permission: maintain
|
|
51
|
+
|
|
52
|
+
labels:
|
|
53
|
+
- name: bug
|
|
54
|
+
color: fc2929
|
|
55
|
+
description: Something isn't working
|
|
56
|
+
- name: duplicate
|
|
57
|
+
color: cccccc
|
|
58
|
+
description: This issue or pull request already exists
|
|
59
|
+
- name: enhancement
|
|
60
|
+
color: 84b6eb
|
|
61
|
+
description: New feature or request
|
|
62
|
+
- name: good first issue
|
|
63
|
+
color: 7057ff
|
|
64
|
+
description: Good for newcomers
|
|
65
|
+
- name: help wanted
|
|
66
|
+
color: 159818
|
|
67
|
+
description: Extra attention is needed
|
|
68
|
+
- name: invalid
|
|
69
|
+
color: e6e6e6
|
|
70
|
+
description: This doesn't seem right
|
|
71
|
+
- name: question
|
|
72
|
+
color: cc317c
|
|
73
|
+
description: Further information is requested
|
|
74
|
+
- name: renovate
|
|
75
|
+
color: 1d76db
|
|
76
|
+
description: Automated action from Renovate
|
|
77
|
+
- name: wontfix
|
|
78
|
+
color: 5319e7
|
|
79
|
+
description: This will not be worked on
|
|
80
|
+
- name: hacktoberfest
|
|
81
|
+
color: d4c5f9
|
|
82
|
+
description: Contribution at Hacktoberfest appreciated
|
|
83
|
+
- name: ready
|
|
84
|
+
color: ededed
|
|
85
|
+
description: This is ready to be worked on
|
|
86
|
+
- name: in progress
|
|
87
|
+
color: ededed
|
|
88
|
+
description: This is currently worked on
|
|
89
|
+
- name: infra
|
|
90
|
+
color: 006b75
|
|
91
|
+
description: Related to the infrastructure
|
|
92
|
+
- name: lint
|
|
93
|
+
color: fbca04
|
|
94
|
+
description: Related to linting tools
|
|
95
|
+
- name: poc
|
|
96
|
+
color: c2e0c6
|
|
97
|
+
description: Proof of concept for new feature
|
|
98
|
+
- name: rebase
|
|
99
|
+
color: ffa8a5
|
|
100
|
+
description: Branch requires a rebase
|
|
101
|
+
- name: third-party
|
|
102
|
+
color: e99695
|
|
103
|
+
description: Depends on third-party tool or library
|
|
104
|
+
- name: translation
|
|
105
|
+
color: b60205
|
|
106
|
+
description: Change or issue related to translations
|
|
107
|
+
- name: ci
|
|
108
|
+
color: b60105
|
|
109
|
+
description: Related to Continous Integration
|
|
110
|
+
- name: docs
|
|
111
|
+
color: b60305
|
|
112
|
+
description: Related to documentation
|
|
113
|
+
- name: outdated
|
|
114
|
+
color: cccccc
|
|
115
|
+
description: This is out of scope and outdated
|
|
116
|
+
|
|
44
117
|
...
|
|
@@ -8,27 +8,17 @@ name: flake
|
|
|
8
8
|
|
|
9
9
|
permissions:
|
|
10
10
|
contents: write
|
|
11
|
-
pull-requests: write
|
|
12
11
|
|
|
13
12
|
jobs:
|
|
14
13
|
flake:
|
|
15
14
|
runs-on: ubuntu-latest
|
|
16
15
|
|
|
17
16
|
steps:
|
|
18
|
-
- name: Generate token
|
|
19
|
-
id: token
|
|
20
|
-
uses: tibdex/github-app-token@v2
|
|
21
|
-
with:
|
|
22
|
-
app_id: ${{ secrets.TOKEN_EXCHANGE_APP }}
|
|
23
|
-
installation_retrieval_mode: id
|
|
24
|
-
installation_retrieval_payload: ${{ secrets.TOKEN_EXCHANGE_INSTALL }}
|
|
25
|
-
private_key: ${{ secrets.TOKEN_EXCHANGE_KEY }}
|
|
26
|
-
permissions: >-
|
|
27
|
-
{"contents": "write", "pull_requests": "write"}
|
|
28
|
-
|
|
29
17
|
- name: Checkout source
|
|
30
18
|
id: source
|
|
31
19
|
uses: actions/checkout@v4
|
|
20
|
+
with:
|
|
21
|
+
token: ${{ secrets.BOT_ACCESS_TOKEN }}
|
|
32
22
|
|
|
33
23
|
- name: Install nix
|
|
34
24
|
id: nix
|
|
@@ -36,21 +26,20 @@ jobs:
|
|
|
36
26
|
|
|
37
27
|
- name: Update flake
|
|
38
28
|
id: flake
|
|
39
|
-
|
|
29
|
+
run: nix flake update
|
|
30
|
+
|
|
31
|
+
- name: Source rebase
|
|
32
|
+
id: rebase
|
|
33
|
+
run: git pull --autostash --rebase
|
|
34
|
+
|
|
35
|
+
- name: Commit changes
|
|
36
|
+
uses: EndBug/add-and-commit@v9
|
|
40
37
|
with:
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
token: ${{ steps.token.outputs.token }}
|
|
48
|
-
|
|
49
|
-
- name: Enable automerge
|
|
50
|
-
id: automerge
|
|
51
|
-
if: steps.flake.outputs.pull-request-operation == 'created'
|
|
52
|
-
run: gh pr merge --rebase --auto "${{ steps.flake.outputs.pull-request-number }}"
|
|
53
|
-
env:
|
|
54
|
-
GH_TOKEN: ${{ steps.token.outputs.token }}
|
|
38
|
+
author_name: GitHub Actions
|
|
39
|
+
author_email: github@webhippie.de
|
|
40
|
+
add: flake.lock
|
|
41
|
+
message: "chore(flake): updated lockfile [skip ci]"
|
|
42
|
+
push: true
|
|
43
|
+
commit: --signoff
|
|
55
44
|
|
|
56
45
|
...
|
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
## [2.1.0](https://github.com/gopad/gopad-js/compare/v2.0.0...v2.1.0) (2024-11-11)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Features
|
|
7
|
+
|
|
8
|
+
* **deps:** update dependency @types/node to 12.11.5 - 22.9 ([bcdd926](https://github.com/gopad/gopad-js/commit/bcdd9262890941974a33d0803c4e82399ceb221d))
|
|
9
|
+
|
|
10
|
+
## [2.0.0](https://github.com/gopad/gopad-js/compare/v1.8.0...v2.0.0) (2024-11-04)
|
|
11
|
+
|
|
12
|
+
|
|
13
|
+
### Features
|
|
14
|
+
|
|
15
|
+
* **deps:** update dependency @types/node to v22 ([de1ac2c](https://github.com/gopad/gopad-js/commit/de1ac2c3ab90952b36829d2e0e8684ee2320d5a9))
|
|
16
|
+
|
|
3
17
|
## [1.8.0](https://github.com/gopad/gopad-js/compare/v1.7.2...v1.8.0) (2024-10-28)
|
|
4
18
|
|
|
5
19
|
|
package/README.md
CHANGED
|
@@ -6,7 +6,7 @@ This repository provides a client SDK for Typescript/Javascript. This SDK is
|
|
|
6
6
|
automatically generated by the [OpenAPI Generator][generator] project:
|
|
7
7
|
|
|
8
8
|
- API version: 1.0.0-alpha1
|
|
9
|
-
- Package version: 1.
|
|
9
|
+
- Package version: 2.1.0
|
|
10
10
|
- Build package: org.openapitools.codegen.languages.TypeScriptAxiosClientCodegen
|
|
11
11
|
|
|
12
12
|
For more information, please visit [https://gopad.eu](https://gopad.eu)
|
|
@@ -39,7 +39,7 @@ the following command within your project directory, after that you can import
|
|
|
39
39
|
it as other libraries:
|
|
40
40
|
|
|
41
41
|
```console
|
|
42
|
-
npm install --save gopadjs@1.
|
|
42
|
+
npm install --save gopadjs@2.1.0
|
|
43
43
|
```
|
|
44
44
|
|
|
45
45
|
### Installation with Git
|
package/flake.lock
CHANGED
|
@@ -75,11 +75,11 @@
|
|
|
75
75
|
"pre-commit-hooks": "pre-commit-hooks_2"
|
|
76
76
|
},
|
|
77
77
|
"locked": {
|
|
78
|
-
"lastModified":
|
|
79
|
-
"narHash": "sha256-
|
|
78
|
+
"lastModified": 1730676843,
|
|
79
|
+
"narHash": "sha256-NbAwRfCzXIi+CoJFJ+qlaqf/pM+nKyUSkA0svzKsP8k=",
|
|
80
80
|
"owner": "cachix",
|
|
81
81
|
"repo": "devenv",
|
|
82
|
-
"rev": "
|
|
82
|
+
"rev": "7250dbb33f62c30dec5cf1191b0947b76bec5248",
|
|
83
83
|
"type": "github"
|
|
84
84
|
},
|
|
85
85
|
"original": {
|
|
@@ -216,11 +216,11 @@
|
|
|
216
216
|
"nixpkgs-lib": "nixpkgs-lib"
|
|
217
217
|
},
|
|
218
218
|
"locked": {
|
|
219
|
-
"lastModified":
|
|
220
|
-
"narHash": "sha256-
|
|
219
|
+
"lastModified": 1730504689,
|
|
220
|
+
"narHash": "sha256-hgmguH29K2fvs9szpq2r3pz2/8cJd2LPS+b4tfNFCwE=",
|
|
221
221
|
"owner": "hercules-ci",
|
|
222
222
|
"repo": "flake-parts",
|
|
223
|
-
"rev": "
|
|
223
|
+
"rev": "506278e768c2a08bec68eb62932193e341f55c90",
|
|
224
224
|
"type": "github"
|
|
225
225
|
},
|
|
226
226
|
"original": {
|
|
@@ -447,14 +447,14 @@
|
|
|
447
447
|
},
|
|
448
448
|
"nixpkgs-lib": {
|
|
449
449
|
"locked": {
|
|
450
|
-
"lastModified":
|
|
451
|
-
"narHash": "sha256-
|
|
450
|
+
"lastModified": 1730504152,
|
|
451
|
+
"narHash": "sha256-lXvH/vOfb4aGYyvFmZK/HlsNsr/0CVWlwYvo2rxJk3s=",
|
|
452
452
|
"type": "tarball",
|
|
453
|
-
"url": "https://github.com/NixOS/nixpkgs/archive/
|
|
453
|
+
"url": "https://github.com/NixOS/nixpkgs/archive/cc2f28000298e1269cea6612cd06ec9979dd5d7f.tar.gz"
|
|
454
454
|
},
|
|
455
455
|
"original": {
|
|
456
456
|
"type": "tarball",
|
|
457
|
-
"url": "https://github.com/NixOS/nixpkgs/archive/
|
|
457
|
+
"url": "https://github.com/NixOS/nixpkgs/archive/cc2f28000298e1269cea6612cd06ec9979dd5d7f.tar.gz"
|
|
458
458
|
}
|
|
459
459
|
},
|
|
460
460
|
"nixpkgs-regression": {
|
|
@@ -555,11 +555,11 @@
|
|
|
555
555
|
},
|
|
556
556
|
"nixpkgs_4": {
|
|
557
557
|
"locked": {
|
|
558
|
-
"lastModified":
|
|
559
|
-
"narHash": "sha256
|
|
558
|
+
"lastModified": 1730531603,
|
|
559
|
+
"narHash": "sha256-Dqg6si5CqIzm87sp57j5nTaeBbWhHFaVyG7V6L8k3lY=",
|
|
560
560
|
"owner": "NixOS",
|
|
561
561
|
"repo": "nixpkgs",
|
|
562
|
-
"rev": "
|
|
562
|
+
"rev": "7ffd9ae656aec493492b44d0ddfb28e79a1ea25d",
|
|
563
563
|
"type": "github"
|
|
564
564
|
},
|
|
565
565
|
"original": {
|
package/openapi.yml
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "gopadjs",
|
|
3
|
-
"version": "1.
|
|
3
|
+
"version": "2.1.0",
|
|
4
4
|
"description": "OpenAPI client for Gopad",
|
|
5
5
|
"homepage": "https://github.com/gopad/gopad-js#readme",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"axios": "^1.6.1"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
|
-
"@types/node": "12.11.5 -
|
|
37
|
+
"@types/node": "12.11.5 - 22.9",
|
|
38
38
|
"prettier": "^3.2.5",
|
|
39
39
|
"typescript": "^4.0 || ^5.0"
|
|
40
40
|
}
|