@camunda8/sdk 8.4.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/workflows/build-docs.yml +39 -0
- package/.github/workflows/tag-and-publish.yml +48 -0
- package/.prettierignore +2 -0
- package/CHANGELOG.md +40 -0
- package/LICENSE +201 -0
- package/README.md +55 -0
- package/dist/index.d.ts +15 -0
- package/dist/index.js +47 -0
- package/dist/index.js.map +1 -0
- package/img/video.png +0 -0
- package/jest.config.js +5 -0
- package/package.json +45 -0
- package/src/__tests__/exports.spec.ts +7 -0
- package/src/index.ts +17 -0
- package/tsconfig.build.json +8 -0
- package/tsconfig.json +10 -0
- package/tsconfig.tsbuildinfo +1 -0
- package/typedoc.json +10 -0
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
name: Build and publish docs
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
inputs:
|
|
6
|
+
version:
|
|
7
|
+
description: 'Version'
|
|
8
|
+
required: true
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
tag-and-publish:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- name: Checkout repository
|
|
15
|
+
uses: actions/checkout@v3
|
|
16
|
+
with:
|
|
17
|
+
fetch-depth: 0
|
|
18
|
+
- name: Setup Node
|
|
19
|
+
uses: actions/setup-node@v3
|
|
20
|
+
with:
|
|
21
|
+
node-version: 16.17.0
|
|
22
|
+
cache: 'npm'
|
|
23
|
+
- name: Install
|
|
24
|
+
run: npm ci --ignore-scripts
|
|
25
|
+
- name: Build
|
|
26
|
+
run: npm run build
|
|
27
|
+
- name: Set version
|
|
28
|
+
run: |
|
|
29
|
+
git config user.name 'github-actions[bot]'
|
|
30
|
+
git config user.email 'github-actions[bot]@users.noreply.github.com'
|
|
31
|
+
|
|
32
|
+
- name: Build Docs
|
|
33
|
+
run: npm run docs
|
|
34
|
+
|
|
35
|
+
- name: Deploy Docs
|
|
36
|
+
uses: JamesIves/github-pages-deploy-action@v4
|
|
37
|
+
with:
|
|
38
|
+
folder: docs
|
|
39
|
+
branch: gh-pages
|
|
@@ -0,0 +1,48 @@
|
|
|
1
|
+
name: Tag and publish a new version
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
workflow_dispatch:
|
|
5
|
+
inputs:
|
|
6
|
+
version:
|
|
7
|
+
description: 'Version'
|
|
8
|
+
required: true
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
tag-and-publish:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
steps:
|
|
14
|
+
- name: Checkout repository
|
|
15
|
+
uses: actions/checkout@v3
|
|
16
|
+
with:
|
|
17
|
+
fetch-depth: 0
|
|
18
|
+
- name: Setup Node
|
|
19
|
+
uses: actions/setup-node@v3
|
|
20
|
+
with:
|
|
21
|
+
node-version: 16.17.0
|
|
22
|
+
cache: 'npm'
|
|
23
|
+
- name: Install
|
|
24
|
+
run: npm ci --ignore-scripts
|
|
25
|
+
# - name: Run tests
|
|
26
|
+
# run: npm run test
|
|
27
|
+
- name: Build
|
|
28
|
+
run: npm run build
|
|
29
|
+
- name: Set version
|
|
30
|
+
run: |
|
|
31
|
+
git config user.name 'github-actions[bot]'
|
|
32
|
+
git config user.email 'github-actions[bot]@users.noreply.github.com'
|
|
33
|
+
npm version ${{ inputs.version }} -m "Publish v%s"
|
|
34
|
+
- name: Publish to NPM
|
|
35
|
+
env:
|
|
36
|
+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
37
|
+
run: npm publish --access=public
|
|
38
|
+
- name: Push changes
|
|
39
|
+
run: git push --follow-tags
|
|
40
|
+
|
|
41
|
+
- name: Build Docs
|
|
42
|
+
run: npm run docs
|
|
43
|
+
|
|
44
|
+
- name: Deploy Docs
|
|
45
|
+
uses: JamesIves/github-pages-deploy-action@v4
|
|
46
|
+
with:
|
|
47
|
+
folder: docs
|
|
48
|
+
branch: gh-pages
|
package/.prettierignore
ADDED
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
# Change Log
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
|
|
5
|
+
|
|
6
|
+
# 8.4.0 (2024-02-01)
|
|
7
|
+
|
|
8
|
+
**Note:** Version bump only for package @camunda8/sdk
|
|
9
|
+
|
|
10
|
+
# CHANGELOG
|
|
11
|
+
|
|
12
|
+
## Version 0.15.1
|
|
13
|
+
|
|
14
|
+
## Fixes
|
|
15
|
+
|
|
16
|
+
_Things that were broken and are now fixed._
|
|
17
|
+
|
|
18
|
+
- Update dependency `camunda-saas-oauth` to 1.2.4 to fix an issue with token expiration. Cached tokens were not correctly expired, leading to a 401 Unauthorized response to API calls after some time. The tokens are now correctly evicted from the cache. Thanks to [@hanh-le-clv](https://github.com/hanh-le-clv) for reporting this. See [this issue](https://github.com/camunda-community-hub/camunda-8-sdk-node-js/issues/7) for more details.
|
|
19
|
+
|
|
20
|
+
## Version 0.15.0
|
|
21
|
+
|
|
22
|
+
- Update Operate client to 1.2.3, safely parsing variables when retrieving all variables for a process.
|
|
23
|
+
|
|
24
|
+
## Version 0.14.0
|
|
25
|
+
|
|
26
|
+
### Enhancements
|
|
27
|
+
|
|
28
|
+
- Update Tasklist client to 0.9.5, safely parsing variables when retrieving a Task.
|
|
29
|
+
|
|
30
|
+
## Version 0.13.0
|
|
31
|
+
|
|
32
|
+
### Enhancements
|
|
33
|
+
|
|
34
|
+
- Update Operate API client to 1.2.2.
|
|
35
|
+
|
|
36
|
+
## Version 0.11.0
|
|
37
|
+
|
|
38
|
+
### Enhancements
|
|
39
|
+
|
|
40
|
+
- Update Operate API client to 1.2.0, enabling multiple clusters per application via custom OAuth injection.
|
package/LICENSE
ADDED
|
@@ -0,0 +1,201 @@
|
|
|
1
|
+
Apache License
|
|
2
|
+
Version 2.0, January 2004
|
|
3
|
+
http://www.apache.org/licenses/
|
|
4
|
+
|
|
5
|
+
TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
|
|
6
|
+
|
|
7
|
+
1. Definitions.
|
|
8
|
+
|
|
9
|
+
"License" shall mean the terms and conditions for use, reproduction,
|
|
10
|
+
and distribution as defined by Sections 1 through 9 of this document.
|
|
11
|
+
|
|
12
|
+
"Licensor" shall mean the copyright owner or entity authorized by
|
|
13
|
+
the copyright owner that is granting the License.
|
|
14
|
+
|
|
15
|
+
"Legal Entity" shall mean the union of the acting entity and all
|
|
16
|
+
other entities that control, are controlled by, or are under common
|
|
17
|
+
control with that entity. For the purposes of this definition,
|
|
18
|
+
"control" means (i) the power, direct or indirect, to cause the
|
|
19
|
+
direction or management of such entity, whether by contract or
|
|
20
|
+
otherwise, or (ii) ownership of fifty percent (50%) or more of the
|
|
21
|
+
outstanding shares, or (iii) beneficial ownership of such entity.
|
|
22
|
+
|
|
23
|
+
"You" (or "Your") shall mean an individual or Legal Entity
|
|
24
|
+
exercising permissions granted by this License.
|
|
25
|
+
|
|
26
|
+
"Source" form shall mean the preferred form for making modifications,
|
|
27
|
+
including but not limited to software source code, documentation
|
|
28
|
+
source, and configuration files.
|
|
29
|
+
|
|
30
|
+
"Object" form shall mean any form resulting from mechanical
|
|
31
|
+
transformation or translation of a Source form, including but
|
|
32
|
+
not limited to compiled object code, generated documentation,
|
|
33
|
+
and conversions to other media types.
|
|
34
|
+
|
|
35
|
+
"Work" shall mean the work of authorship, whether in Source or
|
|
36
|
+
Object form, made available under the License, as indicated by a
|
|
37
|
+
copyright notice that is included in or attached to the work
|
|
38
|
+
(an example is provided in the Appendix below).
|
|
39
|
+
|
|
40
|
+
"Derivative Works" shall mean any work, whether in Source or Object
|
|
41
|
+
form, that is based on (or derived from) the Work and for which the
|
|
42
|
+
editorial revisions, annotations, elaborations, or other modifications
|
|
43
|
+
represent, as a whole, an original work of authorship. For the purposes
|
|
44
|
+
of this License, Derivative Works shall not include works that remain
|
|
45
|
+
separable from, or merely link (or bind by name) to the interfaces of,
|
|
46
|
+
the Work and Derivative Works thereof.
|
|
47
|
+
|
|
48
|
+
"Contribution" shall mean any work of authorship, including
|
|
49
|
+
the original version of the Work and any modifications or additions
|
|
50
|
+
to that Work or Derivative Works thereof, that is intentionally
|
|
51
|
+
submitted to Licensor for inclusion in the Work by the copyright owner
|
|
52
|
+
or by an individual or Legal Entity authorized to submit on behalf of
|
|
53
|
+
the copyright owner. For the purposes of this definition, "submitted"
|
|
54
|
+
means any form of electronic, verbal, or written communication sent
|
|
55
|
+
to the Licensor or its representatives, including but not limited to
|
|
56
|
+
communication on electronic mailing lists, source code control systems,
|
|
57
|
+
and issue tracking systems that are managed by, or on behalf of, the
|
|
58
|
+
Licensor for the purpose of discussing and improving the Work, but
|
|
59
|
+
excluding communication that is conspicuously marked or otherwise
|
|
60
|
+
designated in writing by the copyright owner as "Not a Contribution."
|
|
61
|
+
|
|
62
|
+
"Contributor" shall mean Licensor and any individual or Legal Entity
|
|
63
|
+
on behalf of whom a Contribution has been received by Licensor and
|
|
64
|
+
subsequently incorporated within the Work.
|
|
65
|
+
|
|
66
|
+
2. Grant of Copyright License. Subject to the terms and conditions of
|
|
67
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
68
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
69
|
+
copyright license to reproduce, prepare Derivative Works of,
|
|
70
|
+
publicly display, publicly perform, sublicense, and distribute the
|
|
71
|
+
Work and such Derivative Works in Source or Object form.
|
|
72
|
+
|
|
73
|
+
3. Grant of Patent License. Subject to the terms and conditions of
|
|
74
|
+
this License, each Contributor hereby grants to You a perpetual,
|
|
75
|
+
worldwide, non-exclusive, no-charge, royalty-free, irrevocable
|
|
76
|
+
(except as stated in this section) patent license to make, have made,
|
|
77
|
+
use, offer to sell, sell, import, and otherwise transfer the Work,
|
|
78
|
+
where such license applies only to those patent claims licensable
|
|
79
|
+
by such Contributor that are necessarily infringed by their
|
|
80
|
+
Contribution(s) alone or by combination of their Contribution(s)
|
|
81
|
+
with the Work to which such Contribution(s) was submitted. If You
|
|
82
|
+
institute patent litigation against any entity (including a
|
|
83
|
+
cross-claim or counterclaim in a lawsuit) alleging that the Work
|
|
84
|
+
or a Contribution incorporated within the Work constitutes direct
|
|
85
|
+
or contributory patent infringement, then any patent licenses
|
|
86
|
+
granted to You under this License for that Work shall terminate
|
|
87
|
+
as of the date such litigation is filed.
|
|
88
|
+
|
|
89
|
+
4. Redistribution. You may reproduce and distribute copies of the
|
|
90
|
+
Work or Derivative Works thereof in any medium, with or without
|
|
91
|
+
modifications, and in Source or Object form, provided that You
|
|
92
|
+
meet the following conditions:
|
|
93
|
+
|
|
94
|
+
(a) You must give any other recipients of the Work or
|
|
95
|
+
Derivative Works a copy of this License; and
|
|
96
|
+
|
|
97
|
+
(b) You must cause any modified files to carry prominent notices
|
|
98
|
+
stating that You changed the files; and
|
|
99
|
+
|
|
100
|
+
(c) You must retain, in the Source form of any Derivative Works
|
|
101
|
+
that You distribute, all copyright, patent, trademark, and
|
|
102
|
+
attribution notices from the Source form of the Work,
|
|
103
|
+
excluding those notices that do not pertain to any part of
|
|
104
|
+
the Derivative Works; and
|
|
105
|
+
|
|
106
|
+
(d) If the Work includes a "NOTICE" text file as part of its
|
|
107
|
+
distribution, then any Derivative Works that You distribute must
|
|
108
|
+
include a readable copy of the attribution notices contained
|
|
109
|
+
within such NOTICE file, excluding those notices that do not
|
|
110
|
+
pertain to any part of the Derivative Works, in at least one
|
|
111
|
+
of the following places: within a NOTICE text file distributed
|
|
112
|
+
as part of the Derivative Works; within the Source form or
|
|
113
|
+
documentation, if provided along with the Derivative Works; or,
|
|
114
|
+
within a display generated by the Derivative Works, if and
|
|
115
|
+
wherever such third-party notices normally appear. The contents
|
|
116
|
+
of the NOTICE file are for informational purposes only and
|
|
117
|
+
do not modify the License. You may add Your own attribution
|
|
118
|
+
notices within Derivative Works that You distribute, alongside
|
|
119
|
+
or as an addendum to the NOTICE text from the Work, provided
|
|
120
|
+
that such additional attribution notices cannot be construed
|
|
121
|
+
as modifying the License.
|
|
122
|
+
|
|
123
|
+
You may add Your own copyright statement to Your modifications and
|
|
124
|
+
may provide additional or different license terms and conditions
|
|
125
|
+
for use, reproduction, or distribution of Your modifications, or
|
|
126
|
+
for any such Derivative Works as a whole, provided Your use,
|
|
127
|
+
reproduction, and distribution of the Work otherwise complies with
|
|
128
|
+
the conditions stated in this License.
|
|
129
|
+
|
|
130
|
+
5. Submission of Contributions. Unless You explicitly state otherwise,
|
|
131
|
+
any Contribution intentionally submitted for inclusion in the Work
|
|
132
|
+
by You to the Licensor shall be under the terms and conditions of
|
|
133
|
+
this License, without any additional terms or conditions.
|
|
134
|
+
Notwithstanding the above, nothing herein shall supersede or modify
|
|
135
|
+
the terms of any separate license agreement you may have executed
|
|
136
|
+
with Licensor regarding such Contributions.
|
|
137
|
+
|
|
138
|
+
6. Trademarks. This License does not grant permission to use the trade
|
|
139
|
+
names, trademarks, service marks, or product names of the Licensor,
|
|
140
|
+
except as required for reasonable and customary use in describing the
|
|
141
|
+
origin of the Work and reproducing the content of the NOTICE file.
|
|
142
|
+
|
|
143
|
+
7. Disclaimer of Warranty. Unless required by applicable law or
|
|
144
|
+
agreed to in writing, Licensor provides the Work (and each
|
|
145
|
+
Contributor provides its Contributions) on an "AS IS" BASIS,
|
|
146
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
|
|
147
|
+
implied, including, without limitation, any warranties or conditions
|
|
148
|
+
of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
|
|
149
|
+
PARTICULAR PURPOSE. You are solely responsible for determining the
|
|
150
|
+
appropriateness of using or redistributing the Work and assume any
|
|
151
|
+
risks associated with Your exercise of permissions under this License.
|
|
152
|
+
|
|
153
|
+
8. Limitation of Liability. In no event and under no legal theory,
|
|
154
|
+
whether in tort (including negligence), contract, or otherwise,
|
|
155
|
+
unless required by applicable law (such as deliberate and grossly
|
|
156
|
+
negligent acts) or agreed to in writing, shall any Contributor be
|
|
157
|
+
liable to You for damages, including any direct, indirect, special,
|
|
158
|
+
incidental, or consequential damages of any character arising as a
|
|
159
|
+
result of this License or out of the use or inability to use the
|
|
160
|
+
Work (including but not limited to damages for loss of goodwill,
|
|
161
|
+
work stoppage, computer failure or malfunction, or any and all
|
|
162
|
+
other commercial damages or losses), even if such Contributor
|
|
163
|
+
has been advised of the possibility of such damages.
|
|
164
|
+
|
|
165
|
+
9. Accepting Warranty or Additional Liability. While redistributing
|
|
166
|
+
the Work or Derivative Works thereof, You may choose to offer,
|
|
167
|
+
and charge a fee for, acceptance of support, warranty, indemnity,
|
|
168
|
+
or other liability obligations and/or rights consistent with this
|
|
169
|
+
License. However, in accepting such obligations, You may act only
|
|
170
|
+
on Your own behalf and on Your sole responsibility, not on behalf
|
|
171
|
+
of any other Contributor, and only if You agree to indemnify,
|
|
172
|
+
defend, and hold each Contributor harmless for any liability
|
|
173
|
+
incurred by, or claims asserted against, such Contributor by reason
|
|
174
|
+
of your accepting any such warranty or additional liability.
|
|
175
|
+
|
|
176
|
+
END OF TERMS AND CONDITIONS
|
|
177
|
+
|
|
178
|
+
APPENDIX: How to apply the Apache License to your work.
|
|
179
|
+
|
|
180
|
+
To apply the Apache License to your work, attach the following
|
|
181
|
+
boilerplate notice, with the fields enclosed by brackets "[]"
|
|
182
|
+
replaced with your own identifying information. (Don't include
|
|
183
|
+
the brackets!) The text should be enclosed in the appropriate
|
|
184
|
+
comment syntax for the file format. We also recommend that a
|
|
185
|
+
file or class name and description of purpose be included on the
|
|
186
|
+
same "printed page" as the copyright notice for easier
|
|
187
|
+
identification within third-party archives.
|
|
188
|
+
|
|
189
|
+
Copyright [yyyy] [name of copyright owner]
|
|
190
|
+
|
|
191
|
+
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
|
+
you may not use this file except in compliance with the License.
|
|
193
|
+
You may obtain a copy of the License at
|
|
194
|
+
|
|
195
|
+
http://www.apache.org/licenses/LICENSE-2.0
|
|
196
|
+
|
|
197
|
+
Unless required by applicable law or agreed to in writing, software
|
|
198
|
+
distributed under the License is distributed on an "AS IS" BASIS,
|
|
199
|
+
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
200
|
+
See the License for the specific language governing permissions and
|
|
201
|
+
limitations under the License.
|
package/README.md
ADDED
|
@@ -0,0 +1,55 @@
|
|
|
1
|
+
# Camunda 8 Unified SDK for Node.js
|
|
2
|
+
|
|
3
|
+
[](https://npmjs.org/package/camunda-8-sdk)
|
|
4
|
+
|
|
5
|
+
This SDK provides a high-level Node.js API for Camunda Platform 8. It is a wrapper around the following individual clients:
|
|
6
|
+
|
|
7
|
+
- [Web Console](https://github.com/camunda-community-hub/console-client-node-js)
|
|
8
|
+
- [Optimize API Client](https://github.com/camunda-community-hub/optimize-client-node-js)
|
|
9
|
+
- [Operate API Client](https://github.com/camunda-community-hub/operate-client-node-js)
|
|
10
|
+
- [Tasklist API Client](https://github.com/camunda-community-hub/tasklist-client-node-js)
|
|
11
|
+
- [Zeebe API Client](https://github.com/camunda-community-hub/zeebe-client-node-js)
|
|
12
|
+
- [Web Modeler API Client](https://github.com/camunda-community-hub/modeler-client-node-js)
|
|
13
|
+
|
|
14
|
+
It uses the following libraries to hydrate credentials from the environment:
|
|
15
|
+
|
|
16
|
+
- [Camunda 8 Credentials from Environment](https://github.com/camunda-community-hub/camunda-8-credentials-from-env)
|
|
17
|
+
- [Camunda SaaS OAuth](https://github.com/camunda-community-hub/camunda-saas-oauth-nodejs)
|
|
18
|
+
|
|
19
|
+
The full API documentation is hosted [here](https://camunda-community-hub.github.io/camunda-8-sdk-node-js/).
|
|
20
|
+
|
|
21
|
+
Watch a seven-minute speedrun demo video here:
|
|
22
|
+
|
|
23
|
+
[](https://www.youtube.com/watch?v=A-P6upPCQWA)
|
|
24
|
+
|
|
25
|
+
## API Coverage
|
|
26
|
+
|
|
27
|
+
| Component | Tested Environment |
|
|
28
|
+
|---|---|
|
|
29
|
+
| Zeebe | SaaS, Self-hosted |
|
|
30
|
+
| Operate | SaaS |
|
|
31
|
+
| Optimize | SaaS |
|
|
32
|
+
| Tasklist | SaaS |
|
|
33
|
+
| Console | SaaS |
|
|
34
|
+
|
|
35
|
+
## Installation
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
npm i camunda-8-sdk
|
|
39
|
+
```
|
|
40
|
+
|
|
41
|
+
## Usage
|
|
42
|
+
|
|
43
|
+
Set your Camunda SaaS credentials in the environment (at the moment, only Camunda SaaS is fully supported).
|
|
44
|
+
|
|
45
|
+
```typescript
|
|
46
|
+
import { C8 } from 'camunda-8-sdk'
|
|
47
|
+
|
|
48
|
+
const zbc = new C8.ZBClient()
|
|
49
|
+
const console = new C8.ConsoleApiClient()
|
|
50
|
+
const operate = new C8.OperateApiClient()
|
|
51
|
+
const optimize = new C8.OptimizeApiClient()
|
|
52
|
+
const tasklist = new C8.TasklistApiClient()
|
|
53
|
+
```
|
|
54
|
+
|
|
55
|
+
Refer to the API docs [here](https://camunda-community-hub.github.io/camunda-8-sdk-node-js/) for full documentation of each component.
|
package/dist/index.d.ts
ADDED
|
@@ -0,0 +1,15 @@
|
|
|
1
|
+
import * as Console from '@camunda8/console';
|
|
2
|
+
import * as Modeler from '@camunda8/modeler';
|
|
3
|
+
import * as Operate from '@camunda8/operate';
|
|
4
|
+
import * as Optimize from '@camunda8/optimize';
|
|
5
|
+
import * as Tasklist from '@camunda8/tasklist';
|
|
6
|
+
import * as Zeebe from '@camunda8/zeebe';
|
|
7
|
+
export declare const C8: {
|
|
8
|
+
ZBClient: typeof Zeebe.ZBClient;
|
|
9
|
+
OptimizeApiClient: typeof Optimize.OptimizeApiClient;
|
|
10
|
+
OperateApiClient: typeof Operate.OperateApiClient;
|
|
11
|
+
TasklistApiClient: typeof Tasklist.TasklistApiClient;
|
|
12
|
+
ConsoleApiClient: typeof Console.ConsoleApiClient;
|
|
13
|
+
ModelerApiClient: typeof Modeler.ModelerApiClient;
|
|
14
|
+
};
|
|
15
|
+
export { Console, Modeler, Operate, Optimize, Tasklist, Zeebe };
|
package/dist/index.js
ADDED
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
26
|
+
exports.Zeebe = exports.Tasklist = exports.Optimize = exports.Operate = exports.Modeler = exports.Console = exports.C8 = void 0;
|
|
27
|
+
const Console = __importStar(require("@camunda8/console"));
|
|
28
|
+
exports.Console = Console;
|
|
29
|
+
const Modeler = __importStar(require("@camunda8/modeler"));
|
|
30
|
+
exports.Modeler = Modeler;
|
|
31
|
+
const Operate = __importStar(require("@camunda8/operate"));
|
|
32
|
+
exports.Operate = Operate;
|
|
33
|
+
const Optimize = __importStar(require("@camunda8/optimize"));
|
|
34
|
+
exports.Optimize = Optimize;
|
|
35
|
+
const Tasklist = __importStar(require("@camunda8/tasklist"));
|
|
36
|
+
exports.Tasklist = Tasklist;
|
|
37
|
+
const Zeebe = __importStar(require("@camunda8/zeebe"));
|
|
38
|
+
exports.Zeebe = Zeebe;
|
|
39
|
+
exports.C8 = {
|
|
40
|
+
ZBClient: Zeebe.ZBClient,
|
|
41
|
+
OptimizeApiClient: Optimize.OptimizeApiClient,
|
|
42
|
+
OperateApiClient: Operate.OperateApiClient,
|
|
43
|
+
TasklistApiClient: Tasklist.TasklistApiClient,
|
|
44
|
+
ConsoleApiClient: Console.ConsoleApiClient,
|
|
45
|
+
ModelerApiClient: Modeler.ModelerApiClient,
|
|
46
|
+
};
|
|
47
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,2DAA4C;AAgBnC,0BAAO;AAfhB,2DAA4C;AAe1B,0BAAO;AAdzB,2DAA4C;AAcjB,0BAAO;AAblC,6DAA8C;AAaV,4BAAQ;AAZ5C,6DAA8C;AAYA,4BAAQ;AAXtD,uDAAwC;AAWgB,sBAAK;AAThD,QAAA,EAAE,GAAG;IACjB,QAAQ,EAAE,KAAK,CAAC,QAAQ;IACxB,iBAAiB,EAAE,QAAQ,CAAC,iBAAiB;IAC7C,gBAAgB,EAAE,OAAO,CAAC,gBAAgB;IAC1C,iBAAiB,EAAE,QAAQ,CAAC,iBAAiB;IAC7C,gBAAgB,EAAE,OAAO,CAAC,gBAAgB;IAC1C,gBAAgB,EAAE,OAAO,CAAC,gBAAgB;CAC1C,CAAA"}
|
package/img/video.png
ADDED
|
Binary file
|
package/jest.config.js
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,45 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@camunda8/sdk",
|
|
3
|
+
"version": "8.4.0",
|
|
4
|
+
"description": "The Camunda Platform 8 SDK for Node.js",
|
|
5
|
+
"main": "dist/index.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"test": "jest --detectOpenHandles",
|
|
8
|
+
"build": "npm run clean && npm run compile",
|
|
9
|
+
"clean": "rm -rf ./dist && rm -f ./tsconfig.tsbuildinfo",
|
|
10
|
+
"compile": "tsc",
|
|
11
|
+
"docs": "typedoc --options typedoc.json src/index.ts",
|
|
12
|
+
"prettify": "prettier --write 'src/**/*.ts'",
|
|
13
|
+
"lint": "eslint . --ext .ts,.tsx"
|
|
14
|
+
},
|
|
15
|
+
"repository": {
|
|
16
|
+
"type": "git",
|
|
17
|
+
"url": "git+https://github.com/camunda-community-hub/camunda-8-js-sdk.git"
|
|
18
|
+
},
|
|
19
|
+
"private": false,
|
|
20
|
+
"publishConfig": {
|
|
21
|
+
"access": "public"
|
|
22
|
+
},
|
|
23
|
+
"keywords": [
|
|
24
|
+
"camunda",
|
|
25
|
+
"zeebe"
|
|
26
|
+
],
|
|
27
|
+
"author": "Josh Wulf <josh.wulf@camunda.com>",
|
|
28
|
+
"license": "ISC",
|
|
29
|
+
"bugs": {
|
|
30
|
+
"url": "https://github.com/camunda-community-hub/camunda-8-sdk-node-js/issues"
|
|
31
|
+
},
|
|
32
|
+
"homepage": "https://camunda-community-hub.github.io/camunda-8-sdk-node-js/",
|
|
33
|
+
"devDependencies": {
|
|
34
|
+
"typedoc": "^0.23.24"
|
|
35
|
+
},
|
|
36
|
+
"dependencies": {
|
|
37
|
+
"@camunda8/console": "^8.4.0",
|
|
38
|
+
"@camunda8/modeler": "^8.4.0",
|
|
39
|
+
"@camunda8/operate": "^8.4.0",
|
|
40
|
+
"@camunda8/optimize": "^8.4.0",
|
|
41
|
+
"@camunda8/tasklist": "^8.4.0",
|
|
42
|
+
"@camunda8/zeebe": "^8.4.0"
|
|
43
|
+
},
|
|
44
|
+
"gitHead": "45b1f93347bbe930d5782287d6821efec95e9a63"
|
|
45
|
+
}
|
package/src/index.ts
ADDED
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
import * as Console from '@camunda8/console'
|
|
2
|
+
import * as Modeler from '@camunda8/modeler'
|
|
3
|
+
import * as Operate from '@camunda8/operate'
|
|
4
|
+
import * as Optimize from '@camunda8/optimize'
|
|
5
|
+
import * as Tasklist from '@camunda8/tasklist'
|
|
6
|
+
import * as Zeebe from '@camunda8/zeebe'
|
|
7
|
+
|
|
8
|
+
export const C8 = {
|
|
9
|
+
ZBClient: Zeebe.ZBClient,
|
|
10
|
+
OptimizeApiClient: Optimize.OptimizeApiClient,
|
|
11
|
+
OperateApiClient: Operate.OperateApiClient,
|
|
12
|
+
TasklistApiClient: Tasklist.TasklistApiClient,
|
|
13
|
+
ConsoleApiClient: Console.ConsoleApiClient,
|
|
14
|
+
ModelerApiClient: Modeler.ModelerApiClient,
|
|
15
|
+
}
|
|
16
|
+
|
|
17
|
+
export { Console, Modeler, Operate, Optimize, Tasklist, Zeebe }
|
package/tsconfig.json
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["./node_modules/typescript/lib/lib.es5.d.ts","./node_modules/typescript/lib/lib.es2015.d.ts","./node_modules/typescript/lib/lib.es2016.d.ts","./node_modules/typescript/lib/lib.es2017.d.ts","./node_modules/typescript/lib/lib.es2018.d.ts","./node_modules/typescript/lib/lib.es2019.d.ts","./node_modules/typescript/lib/lib.es2020.d.ts","./node_modules/typescript/lib/lib.es2015.core.d.ts","./node_modules/typescript/lib/lib.es2015.collection.d.ts","./node_modules/typescript/lib/lib.es2015.generator.d.ts","./node_modules/typescript/lib/lib.es2015.iterable.d.ts","./node_modules/typescript/lib/lib.es2015.promise.d.ts","./node_modules/typescript/lib/lib.es2015.proxy.d.ts","./node_modules/typescript/lib/lib.es2015.reflect.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.d.ts","./node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2016.array.include.d.ts","./node_modules/typescript/lib/lib.es2017.object.d.ts","./node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2017.string.d.ts","./node_modules/typescript/lib/lib.es2017.intl.d.ts","./node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","./node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","./node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","./node_modules/typescript/lib/lib.es2018.intl.d.ts","./node_modules/typescript/lib/lib.es2018.promise.d.ts","./node_modules/typescript/lib/lib.es2018.regexp.d.ts","./node_modules/typescript/lib/lib.es2019.array.d.ts","./node_modules/typescript/lib/lib.es2019.object.d.ts","./node_modules/typescript/lib/lib.es2019.string.d.ts","./node_modules/typescript/lib/lib.es2019.symbol.d.ts","./node_modules/typescript/lib/lib.es2019.intl.d.ts","./node_modules/typescript/lib/lib.es2020.bigint.d.ts","./node_modules/typescript/lib/lib.es2020.date.d.ts","./node_modules/typescript/lib/lib.es2020.promise.d.ts","./node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","./node_modules/typescript/lib/lib.es2020.string.d.ts","./node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","./node_modules/typescript/lib/lib.es2020.intl.d.ts","./node_modules/typescript/lib/lib.es2020.number.d.ts","./node_modules/typescript/lib/lib.esnext.intl.d.ts","../console/dist/lib/apiobjects.d.ts","../console/dist/lib/consoleapiclient.d.ts","../console/dist/index.d.ts","../../node_modules/@types/isomorphic-fetch/index.d.ts","../modeler/dist/lib/dto.d.ts","../modeler/dist/lib/modelerapiclient.d.ts","../modeler/dist/index.d.ts","../oauth/dist/lib/oauthproviderimpl.d.ts","../oauth/dist/lib/oauthprovider.d.ts","../oauth/dist/lib/operate.d.ts","../oauth/dist/lib/optimize.d.ts","../oauth/dist/lib/tasklist.d.ts","../oauth/dist/lib/zeebe.d.ts","../oauth/dist/lib/console.d.ts","../oauth/dist/lib/creds/index.d.ts","../oauth/dist/index.d.ts","../operate/dist/lib/apiobjects.d.ts","../operate/dist/lib/operateapiclient.d.ts","../operate/dist/index.d.ts","../optimize/dist/lib/apiobjects.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/buffer/index.d.ts","../../node_modules/undici-types/header.d.ts","../../node_modules/undici-types/readable.d.ts","../../node_modules/undici-types/file.d.ts","../../node_modules/undici-types/fetch.d.ts","../../node_modules/undici-types/formdata.d.ts","../../node_modules/undici-types/connector.d.ts","../../node_modules/undici-types/client.d.ts","../../node_modules/undici-types/errors.d.ts","../../node_modules/undici-types/dispatcher.d.ts","../../node_modules/undici-types/global-dispatcher.d.ts","../../node_modules/undici-types/global-origin.d.ts","../../node_modules/undici-types/pool-stats.d.ts","../../node_modules/undici-types/pool.d.ts","../../node_modules/undici-types/handlers.d.ts","../../node_modules/undici-types/balanced-pool.d.ts","../../node_modules/undici-types/agent.d.ts","../../node_modules/undici-types/mock-interceptor.d.ts","../../node_modules/undici-types/mock-agent.d.ts","../../node_modules/undici-types/mock-client.d.ts","../../node_modules/undici-types/mock-pool.d.ts","../../node_modules/undici-types/mock-errors.d.ts","../../node_modules/undici-types/proxy-agent.d.ts","../../node_modules/undici-types/api.d.ts","../../node_modules/undici-types/cookies.d.ts","../../node_modules/undici-types/patch.d.ts","../../node_modules/undici-types/filereader.d.ts","../../node_modules/undici-types/diagnostics-channel.d.ts","../../node_modules/undici-types/websocket.d.ts","../../node_modules/undici-types/content-type.d.ts","../../node_modules/undici-types/cache.d.ts","../../node_modules/undici-types/interceptors.d.ts","../../node_modules/undici-types/index.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostics_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/dom-events.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/readline/promises.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/stream/consumers.d.ts","../../node_modules/@types/node/stream/web.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/test.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/p-cancelable/index.d.ts","../../node_modules/@szmarczak/http-timer/dist/source/index.d.ts","../../node_modules/cacheable-lookup/index.d.ts","../../node_modules/keyv/src/index.d.ts","../../node_modules/@types/http-cache-semantics/index.d.ts","../../node_modules/@types/responselike/index.d.ts","../../node_modules/@types/cacheable-request/index.d.ts","../../node_modules/got/dist/source/core/utils/timed-out.d.ts","../../node_modules/got/dist/source/core/utils/options-to-url.d.ts","../../node_modules/got/dist/source/core/utils/dns-ip-version.d.ts","../../node_modules/got/dist/source/core/index.d.ts","../../node_modules/got/dist/source/as-promise/types.d.ts","../../node_modules/got/dist/source/as-promise/index.d.ts","../../node_modules/got/dist/source/types.d.ts","../../node_modules/got/dist/source/create.d.ts","../../node_modules/got/dist/source/index.d.ts","../optimize/dist/lib/optimizeapiclient.d.ts","../optimize/dist/index.d.ts","../tasklist/dist/lib/utils.d.ts","../tasklist/dist/lib/types.d.ts","../tasklist/dist/lib/tasklistapiclient.d.ts","../tasklist/dist/index.d.ts","../zeebe/dist/lib/zbjsonlogger.d.ts","../zeebe/dist/lib/bpmnparser.d.ts","../../node_modules/@grpc/grpc-js/build/src/metadata.d.ts","../../node_modules/@grpc/grpc-js/build/src/call-credentials.d.ts","../../node_modules/@grpc/grpc-js/build/src/constants.d.ts","../../node_modules/@grpc/grpc-js/build/src/deadline.d.ts","../../node_modules/@grpc/grpc-js/build/src/channel-credentials.d.ts","../../node_modules/@grpc/grpc-js/build/src/compression-algorithms.d.ts","../../node_modules/@grpc/grpc-js/build/src/channel-options.d.ts","../../node_modules/@grpc/grpc-js/build/src/connectivity-state.d.ts","../../node_modules/protobufjs/index.d.ts","../../node_modules/protobufjs/ext/descriptor/index.d.ts","../../node_modules/@grpc/proto-loader/build/src/util.d.ts","../../node_modules/@grpc/proto-loader/node_modules/long/index.d.ts","../../node_modules/@grpc/proto-loader/node_modules/long/umd/index.d.ts","../../node_modules/@grpc/proto-loader/build/src/index.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/timestamp.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/channelref.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/subchannelref.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/channeltraceevent.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/channeltrace.d.ts","../../node_modules/@grpc/grpc-js/build/src/subchannel-address.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/getchannelrequest.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/channelconnectivitystate.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/channeldata.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/socketref.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/channel.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/getchannelresponse.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/getserverrequest.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/serverref.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/serverdata.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/server.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/getserverresponse.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/getserversocketsrequest.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/getserversocketsresponse.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/getserversrequest.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/getserversresponse.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/getsocketrequest.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/int64value.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/google/protobuf/any.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/socketoption.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/socketdata.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/address.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/security.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/socket.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/getsocketresponse.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/getsubchannelrequest.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/subchannel.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/getsubchannelresponse.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/gettopchannelsrequest.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/gettopchannelsresponse.d.ts","../../node_modules/@grpc/grpc-js/build/src/generated/grpc/channelz/v1/channelz.d.ts","../../node_modules/@grpc/grpc-js/build/src/channelz.d.ts","../../node_modules/@grpc/grpc-js/build/src/channel.d.ts","../../node_modules/@grpc/grpc-js/build/src/client-interceptors.d.ts","../../node_modules/@grpc/grpc-js/build/src/client.d.ts","../../node_modules/@grpc/grpc-js/build/src/server-credentials.d.ts","../../node_modules/@grpc/grpc-js/build/src/server.d.ts","../../node_modules/@grpc/grpc-js/build/src/make-client.d.ts","../../node_modules/@grpc/grpc-js/build/src/events.d.ts","../../node_modules/@grpc/grpc-js/build/src/object-stream.d.ts","../../node_modules/@grpc/grpc-js/build/src/server-call.d.ts","../../node_modules/@grpc/grpc-js/build/src/call-interface.d.ts","../../node_modules/@grpc/grpc-js/build/src/call.d.ts","../../node_modules/@grpc/grpc-js/build/src/status-builder.d.ts","../../node_modules/@grpc/grpc-js/build/src/admin.d.ts","../../node_modules/@grpc/grpc-js/build/src/logging.d.ts","../../node_modules/@grpc/grpc-js/build/src/duration.d.ts","../../node_modules/@grpc/grpc-js/build/src/uri-parser.d.ts","../../node_modules/@grpc/grpc-js/build/src/transport.d.ts","../../node_modules/@grpc/grpc-js/build/src/subchannel-call.d.ts","../../node_modules/@grpc/grpc-js/build/src/subchannel.d.ts","../../node_modules/@grpc/grpc-js/build/src/subchannel-interface.d.ts","../../node_modules/@grpc/grpc-js/build/src/picker.d.ts","../../node_modules/@grpc/grpc-js/build/src/load-balancer.d.ts","../../node_modules/@grpc/grpc-js/build/src/service-config.d.ts","../../node_modules/@grpc/grpc-js/build/src/filter.d.ts","../../node_modules/@grpc/grpc-js/build/src/resolver.d.ts","../../node_modules/@grpc/grpc-js/build/src/backoff-timeout.d.ts","../../node_modules/@grpc/grpc-js/build/src/load-balancer-child-handler.d.ts","../../node_modules/@grpc/grpc-js/build/src/filter-stack.d.ts","../../node_modules/@grpc/grpc-js/build/src/load-balancer-outlier-detection.d.ts","../../node_modules/@grpc/grpc-js/build/src/experimental.d.ts","../../node_modules/@grpc/grpc-js/build/src/index.d.ts","../../node_modules/chalk/types/index.d.ts","../../node_modules/typed-duration/dist/lib/index.d.ts","../../node_modules/typed-duration/dist/index.d.ts","../zeebe/dist/lib/typedemitter.d.ts","../zeebe/dist/lib/interfaces-grpc-1.0.d.ts","../zeebe/dist/lib/oauthprovider.d.ts","../zeebe/dist/lib/grpcclient.d.ts","../zeebe/dist/lib/interfaces-published-contract.d.ts","../zeebe/dist/zb/zbworker.d.ts","../zeebe/dist/zb/zbclient.d.ts","../zeebe/dist/lib/connectionfactory.d.ts","../zeebe/dist/lib/zblogger.d.ts","../zeebe/dist/lib/statefulloginterceptor.d.ts","../zeebe/dist/lib/zbworkerbase.d.ts","../zeebe/dist/zb/zbbatchworker.d.ts","../zeebe/dist/lib/interfaces-1.0.d.ts","../zeebe/dist/lib/simplelogger.d.ts","../zeebe/dist/index.d.ts","./src/index.ts","../../node_modules/@jest/expect-utils/build/index.d.ts","../../node_modules/jest-matcher-utils/node_modules/chalk/index.d.ts","../../node_modules/@sinclair/typebox/typebox.d.ts","../../node_modules/@jest/schemas/build/index.d.ts","../../node_modules/pretty-format/build/index.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/jest-matcher-utils/build/index.d.ts","../../node_modules/expect/build/index.d.ts","../../node_modules/@types/jest/index.d.ts"],"fileInfos":[{"version":"8730f4bf322026ff5229336391a18bcaa1f94d4f82416c8b2f3954e2ccaae2ba","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","4b421cbfb3a38a27c279dec1e9112c3d1da296f77a1a85ddadf7e7a425d45d18","1fc5ab7a764205c68fa10d381b08417795fc73111d6dd16b5b1ed36badb743d9",{"version":"adb996790133eb33b33aadb9c09f15c2c575e71fb57a62de8bf74dbf59ec7dfb","affectsGlobalScope":true},{"version":"8cc8c5a3bac513368b0157f3d8b31cfdcfe78b56d3724f30f80ed9715e404af8","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"5f406584aef28a331c36523df688ca3650288d14f39c5d2e555c95f0d2ff8f6f","affectsGlobalScope":true},{"version":"22f230e544b35349cfb3bd9110b6ef37b41c6d6c43c3314a31bd0d9652fcec72","affectsGlobalScope":true},{"version":"7ea0b55f6b315cf9ac2ad622b0a7813315bb6e97bf4bb3fbf8f8affbca7dc695","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"eb26de841c52236d8222f87e9e6a235332e0788af8c87a71e9e210314300410a","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"81cac4cbc92c0c839c70f8ffb94eb61e2d32dc1c3cf6d95844ca099463cf37ea","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"5e5e095c4470c8bab227dbbc61374878ecead104c74ab9960d3adcccfee23205","affectsGlobalScope":true},{"version":"09aa50414b80c023553090e2f53827f007a301bc34b0495bfb2c3c08ab9ad1eb","affectsGlobalScope":true},{"version":"d7f680a43f8cd12a6b6122c07c54ba40952b0c8aa140dcfcf32eb9e6cb028596","affectsGlobalScope":true},{"version":"3787b83e297de7c315d55d4a7c546ae28e5f6c0a361b7a1dcec1f1f50a54ef11","affectsGlobalScope":true},{"version":"e7e8e1d368290e9295ef18ca23f405cf40d5456fa9f20db6373a61ca45f75f40","affectsGlobalScope":true},{"version":"faf0221ae0465363c842ce6aa8a0cbda5d9296940a8e26c86e04cc4081eea21e","affectsGlobalScope":true},{"version":"06393d13ea207a1bfe08ec8d7be562549c5e2da8983f2ee074e00002629d1871","affectsGlobalScope":true},{"version":"2768ef564cfc0689a1b76106c421a2909bdff0acbe87da010785adab80efdd5c","affectsGlobalScope":true},{"version":"b248e32ca52e8f5571390a4142558ae4f203ae2f94d5bac38a3084d529ef4e58","affectsGlobalScope":true},{"version":"52d1bb7ab7a3306fd0375c8bff560feed26ed676a5b0457fa8027b563aecb9a4","affectsGlobalScope":true},"94476781f77ebc5dcc33fa32cd5fd6e60fe8f832095016ab115e91bde75ddf8b","71e6d1235c29d6a6ade36f7c431be494f606173faeb31d7405e5c35500cc9588","5906ce01f32e6074cf6a88067d280a484a395e3a66f64010a000813b1d07e433","24958028cf16c62befcb8d0055ed7f081b4079ddefd659b6eda342700083630b","f70b4db31112f7b9c39a9f44eb953e0786d8e82c543f56cba60fa237ef44be16","8a12ced6d774f1fbf44a822ca14e47c8b8ef78ce38c0ca859293b33be2cef413","4814ce3266f9fa817c8bdc651dd9bec54c4811ff889f2236215f361b3f396786","17b032fb9339c68fa645124db86cf6dd5df99d3775253afabd82c3eb33aacba0","3e164f598306a6de97b5a510be3429a0254da46863e09e86506b35bc1d1a94f2","d65f25249c130ae501e098198ca0b1fd88a155cecf83476ebc52f6101af7f8fd","40e5b41e8dded31049f1b2ad2078eefa58292da46bd13bbe248e9d06f03a13e7","3aaeb657fa102b267e27c0eba6c20214a5996e9bdbdb80451662488307e04853","af37abc3d42fa82f2625f5b4439e7dbe2e0aa7b99d75b9ac6f4ba9419ea21e3e","233d79f8264475356aba4c481c51557ea4393a6c29e31f798dc49d5fef1847ee","93fd816a6675b22379c0451ee2d516470cde574dd2d4939f6440e42e354c856d","853f19deeca14cd77ae9d20f7b6d49a012ec0cd41cda6eeae92c841c1b8d813e","8c78446c432de94143296f333dfbe8c1bb2fcd250f6a925ef31c6cc91166229b","422c7598754c7772743392d27169c76d2a2b3bd384177bac9f44c0fc8bfa7b69","88acf644a77f92469d7466785b08ea2691996135549bb145d6d64ecf388dbef0","08c86f16b9963c55ddd79a92f777bb10313315e16adb938b4807e4508d5711ae","efc7d584a33fe3422847783d228f315c4cd1afe74bd7cf8e3f0e4c1125129fef","7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","8e9c23ba78aabc2e0a27033f18737a6df754067731e69dc5f52823957d60a4b6","5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","7180c03fd3cb6e22f911ce9ba0f8a7008b1a6ddbe88ccf16a9c8140ef9ac1686","25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","54cb85a47d760da1c13c00add10d26b5118280d44d58e6908d8e89abbd9d7725","3e4825171442666d31c845aeb47fcd34b62e14041bb353ae2b874285d78482aa","c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","a967bfe3ad4e62243eb604bf956101e4c740f5921277c60debaf325c1320bf88","e9775e97ac4877aebf963a0289c81abe76d1ec9a2a7778dbe637e5151f25c5f3","471e1da5a78350bc55ef8cef24eb3aca6174143c281b8b214ca2beda51f5e04a","cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","db3435f3525cd785bf21ec6769bf8da7e8a776be1a99e2e7efb5f244a2ef5fee","c3b170c45fc031db31f782e612adf7314b167e60439d304b49e704010e7bafe5","40383ebef22b943d503c6ce2cb2e060282936b952a01bea5f9f493d5fb487cc7","4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","3a84b7cb891141824bd00ef8a50b6a44596aded4075da937f180c90e362fe5f6","13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","33203609eba548914dc83ddf6cadbc0bcb6e8ef89f6d648ca0908ae887f9fcc5","0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","9f0a92164925aa37d4a5d9dd3e0134cff8177208dba55fd2310cd74beea40ee2","8bfdb79bf1a9d435ec48d9372dc93291161f152c0865b81fc0b2694aedb4578d","2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","d32275be3546f252e3ad33976caf8c5e842c09cb87d468cb40d5f4cf092d1acc","4a0c3504813a3289f7fb1115db13967c8e004aa8e4f8a9021b95285502221bd1",{"version":"cc5e65fb1729463665074b9d7163e78a4225b7af7f3a6b3c74492f415166612f","affectsGlobalScope":true},"cce1f5f86974c1e916ec4a8cab6eec9aa8e31e8148845bf07fbaa8e1d97b1a2c",{"version":"185282b122cbca820c297a02a57b89cf5967ab43e220e3e174d872d3f9a94d2c","affectsGlobalScope":true},"16d74fe4d8e183344d3beb15d48b123c5980ff32ff0cc8c3b96614ddcdf9b239","7b43160a49cf2c6082da0465876c4a0b164e160b81187caeb0a6ca7a281e85ba",{"version":"41fb2a1c108fbf46609ce5a451b7ec78eb9b5ada95fd5b94643e4b26397de0b3","affectsGlobalScope":true},"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","e8968b394e4365588f8f89cfff86435258cf10062585c1d2224627ab92acda22","285e512c7a0db217a0599e18c462d565fa35be4a5153dd7b80bee88c83e83ddf","b5b719a47968cd61a6f83f437236bb6fe22a39223b6620da81ef89f5d7a78fb7","8806ae97308ef26363bd7ec8071bca4d07fb575f905ee3d8a91aff226df6d618","af5bf1db6f1804fb0069039ae77a05d60133c77a2158d9635ea27b6bb2828a8f","b7fe70be794e13d1b7940e318b8770cd1fb3eced7707805318a2e3aaac2c3e9e",{"version":"2c71199d1fc83bf17636ad5bf63a945633406b7b94887612bba4ef027c662b3e","affectsGlobalScope":true},{"version":"7ae9dc7dbb58cd843065639707815df85c044babaa0947116f97bdb824d07204","affectsGlobalScope":true},"7aae1df2053572c2cfc2089a77847aadbb38eedbaa837a846c6a49fb37c6e5bd","313a0b063f5188037db113509de1b934a0e286f14e9479af24fada241435e707","1f758340b027b18ae8773ac3d33a60648a2af49eaae9e4fde18d0a0dd608642c","87ef1a23caa071b07157c72077fa42b86d30568f9dc9e31eed24d5d14fc30ba8","396a8939b5e177542bdf9b5262b4eee85d29851b2d57681fa9d7eae30e225830","21773f5ac69ddf5a05636ba1f50b5239f4f2d27e4420db147fc2f76a5ae598ac",{"version":"dea4c00820d4fac5e530d4842aed2fb20d6744d75a674b95502cbd433f88bcb0","affectsGlobalScope":true},"a5fe4cc622c3bf8e09ababde5f4096ceac53163eefcd95e9cd53f062ff9bb67a","45b1053e691c5af9bfe85060a3e1542835f8d84a7e6e2e77ca305251eda0cb3c","0f05c06ff6196958d76b865ae17245b52d8fe01773626ac3c43214a2458ea7b7",{"version":"0d832a0650a74aafc276cb3f7bb26bde2e2270a6f87e6c871a64122e9203079b","affectsGlobalScope":true},{"version":"c6f3869f12bb5c3bb8ecd0b050ea20342b89b944eae18d313cde6b0ccc0925d7","affectsGlobalScope":true},"8abd0566d2854c4bd1c5e48e05df5c74927187f1541e6770001d9637ac41542e","d742ed2db6d5425b3b6ac5fb1f2e4b1ed2ae74fbeee8d0030d852121a4b05d2f","d8dba11dc34d50cb4202de5effa9a1b296d7a2f4a029eec871f894bddfb6430d","8b71dd18e7e63b6f991b511a201fad7c3bf8d1e0dd98acb5e3d844f335a73634","01d8e1419c84affad359cc240b2b551fb9812b450b4d3d456b64cda8102d4f60","458b216959c231df388a5de9dcbcafd4b4ca563bc3784d706d0455467d7d4942","269929a24b2816343a178008ac9ae9248304d92a8ba8e233055e0ed6dbe6ef71","93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","f8c87b19eae111f8720b0345ab301af8d81add39621b63614dfc2d15fd6f140a","831c22d257717bf2cbb03afe9c4bcffc5ccb8a2074344d4238bf16d3a857bb12",{"version":"2225100373ca3d63bcc7f206e1177152d2e2161285a0bd83c8374db1503a0d1f","affectsGlobalScope":true},{"version":"7052b7b0c3829df3b4985bab2fd74531074b4835d5a7b263b75c82f0916ad62f","affectsGlobalScope":true},"aa34c3aa493d1c699601027c441b9664547c3024f9dbab1639df7701d63d18fa","eefcdf86cefff36e5d87de36a3638ab5f7d16c2b68932be4a72c14bb924e43c1","7c651f8dce91a927ab62925e73f190763574c46098f2b11fb8ddc1b147a6709a","7440ab60f4cb031812940cc38166b8bb6fbf2540cfe599f87c41c08011f0c1df",{"version":"4d0405568cf6e0ff36a4861c4a77e641366feaefa751600b0a4d12a5e8f730a8","affectsGlobalScope":true},{"version":"f5b5dc128973498b75f52b1b8c2d5f8629869104899733ae485100c2309b4c12","affectsGlobalScope":true},"e393915d3dc385e69c0e2390739c87b2d296a610662eb0b1cb85224e55992250","79bad8541d5779c85e82a9fb119c1fe06af77a71cc40f869d62ad379473d4b75","4a34b074b11c3597fb2ff890bc8f1484375b3b80793ab01f974534808d5777c7",{"version":"629d20681ca284d9e38c0a019f647108f5fe02f9c59ac164d56f5694fc3faf4d","affectsGlobalScope":true},"e7dbf5716d76846c7522e910896c5747b6df1abd538fee8f5291bdc843461795",{"version":"ab9b9a36e5284fd8d3bf2f7d5fcbc60052f25f27e4d20954782099282c60d23e","affectsGlobalScope":true},"b510d0a18e3db42ac9765d26711083ec1e8b4e21caaca6dc4d25ae6e8623f447","6bc64e37d72e60ec298911f260518ad11a875b236c237a4b4319a2c8f76a6467","7ab735672492614a1af2098219bd191642e2bbd126e0631e13ed15e947238a51","c77e2a25b0b7e23ad5b5087e16db5aeec6741dcc8e99b8aae1a6b58659083b6d","42baf4ca38c38deaf411ea73f37bc39ff56c6e5c761a968b64ac1b25c92b5cd8","d7dbe0ad36bdca8a6ecf143422a48e72cc8927bab7b23a1a2485c2f78a7022c6","8718fa41d7cf4aa91de4e8f164c90f88e0bf343aa92a1b9b725a9c675c64e16b","f992cd6cc0bcbaa4e6c810468c90f2d8595f8c6c3cf050c806397d3de8585562","e40f22ef14ca35f5019e16f852366d0880e42e955c03cc25da2abe689eef679c","8d12345aee8dedececa587bb31701273a3088ba4f83e866cdfa26a05b3f36a13","01856d31c900d93d280293d98ec9ca9be4991ab3acd3216bf985513eba3544b8","eca6a6c1e2da298c7127f52674f041e79be1755fbac98f5796887ed793818d74","2c0d8c9cdea4f41f395b91f722ea0a18451c173ead39df01e4d4e82b80d26cff","576ec53c444adac3b7725ced6240de54a04183791fe9d7cc880de11411114ff2","2a170864cc9f4e859e5d89c78b87758f431a9a0bb2d544207fc80cedaa0cd318","b3e3394b5ffa583518ace1099d5df14cb887ec1578a023116fac4a35480d2b38","ac3459d91154275b1cd916f265d0151fc4a4a3b3701b1c58cb7c32ea48a7aaec","2b7105cb8317ad8dd08ff5c021fc8753259241e9992dbcd4a4d107973b7888c9","da3e23543c37779a2cdd008bf22835489c0f1db6f4b590e1bb54fc86d44e4204","113262fa4f217ffba29d8512a2da25b73a48334a12700ccca969a1b6e4a6a612","1603f1ae5a4128bc48714f0151835a09aef79d4eb3abe01d4f8dd3bee5f936c4","43d4123d9f0fbc47ece0089d3dfff415045686431ca32246de2f635d3c9ff2a3","dfb04e24ec3b1a351933adb03d839a48153ae46b27a01a8dee2d81da2d402a3c","ba77104387d3b1f31c166662c696c534534f10bb66180ae2ba5afe7cc86be752","af4cfd7d3bfa387b0a011ed4fbdc1314897f12965bb6c23f4039fb076dbeed2c","c6b23a1629bdb5f694f59fe6f7ab1d5d3fb065a81e793a04687b1c0c4c18cc29","3d9b6574d545031d5a81185737938625b11029e7add4028b00373c290757c048","181694d1f7a579e57c55efb1418904efc513ebce0b08601e94f288674104359e","934afd20b0dcaab7841bd89262bda9ecd2c827edb60b4fcccdcd8b2680b7971d","b7b92b4a7b90cdfef8b8dd04f9f5596d37808cee9b00d4085c8a3f7112395315","eed0cfbd238f0f9def37d26d793393c8cfb59afe28ecd1a4639a58905abdadf1","7f19addc796efa6f8b22503f880fd7a8742d1e50347e792654f9f8e3ec0e162f","416eec23b202526964d0f5ebf0ca9e0d8c08e4260bc0946143b66f1a1e17b787","688c9dfd2b7114f5f01022abb5b179659f990d5af5924f185c2644ca99fe7b77","f17c007d95f666ecf664ff13ca8efc196980597c4ca152a0baaa82b2525e2328","02ff761f690163463a4e7594d666e4c73995c4f72746a5967b3477d9ecf62c4e","54fee7d009c1e7b95a9cd151cff895742b036e25972e95a90ae503d613406e8c","c1eedeccaf93904fd835f40b8cbd0456c356151ab0455391453e0a60df53c9e2","473d9269f1f277be1e222b80b5912b26f924efe13c1f418e569617ec34342720","f5b284ceadf71472a8fbf555dbd91079cce0ce7ba54f65dd63d18deec84cd11d","11f848107bc2f7535adccd37b55f018a0f18abbf5a1cd276f5776779618c37ed","8f47ed340254a8ccdf37035d9cba70f53a4d899804da840b47f4c3b07a7b2063","dfdfc935e9c67294aba4c4225b80f41f6fae35a769981906a78480e28e0cd703","50b54f6dac82c34e8c12b35eac220ccc178f51e84813179826da0e3e96283af9","5d21e7bc9dfa62a5ef87c2a2d39636ea936b9f2f1b2dd754993c8c9cab203532","6fd6fcadeab3b973ea52c2dbfcc960f23e086ea3bc07aaa0e1c6d0d690f8e776","7eed214004cc8d86022792c07075758fe61847c70c6c360235f3960492fd6155","a59fdd5525468b9afe1fef2238f5b990c640723bd430c589b4c963d576209be8","23c0f554c1fab508370678aca41cf9b1d6a6a00069e499d803d43387067fea9d","016f140691ab5fea3357a89c6a254ff8ada91173d22d36921bb8295fe5d828ab","ee219b4332439451cbf9ee34584e8a7e67be35d8ed3d1b292769a09483a102ce","305c2373ff739ceca5780a204766c76617e74b551f6fc646a358b5f687a77333","61c5821b70e113b15f24593e7061e6302635448ae700d813f06560ca5f140727","1e127052ae269b7f278b828978b962eb93bbc6134c0bda8b03e3f39df5c3865d","716cb84b8b410c52de9e7b310b2125cbc390a7c59e929a5c0a29514345b9ba9f","edabf50cfd2310b9af7214ecb821e0af6c43f66d8b5fb297d532f27bba242088","1687d528ca6c51a635f9a4022973f472221700464be83810788238a595cb588c","32162214c3f25748f784283a3f6059ad3d09d845faccc52b5c2cf521eace6bd6","4a13f78f265e7deb260bd0cc9063b9927a39f99f7cc8bb62b0310aa3a1df3efd","c04c509a58cc86b654326592aca64d7ceab81a208735c391dd171ca438114ea9","74c6a2352b00e41d352cc23e98e8d6313d5631738a5ea734f1c7bff0192b0f47","fc94bcfb823846ba8b4c1727520a3d509c9f517d4e803dfb45e6a71b41000eb8","b8b1b9330d78f4544e1224d5e16d1223a6b1c1505ef96c17dd08de2519dd8779","e4c09f8a818679f80931fae1d0ca3dec192708c510c9f33fe56d71abe8337c59","b1cc0dfdc0455283ccf003185dbbc51e2c15299aff343413310eaf45c4572323","196f3c5da872983f8f0d2242c2cecc4fae85684d887ae1eef6be6b13b4138233","970c9e6d3c4184ca0c36d86dc29cc3e7b151d6aa4c1f2185fb97650b05a07055","af4beeac0e879b673f8b874e5fe013bdebfb17f0213142e5037ac90aea86d636","c620ccd98c18e71d7e39a79bea47b4f4724c3a1f30f78d2cdd03cf707ae64e4d","150f375c7f5c01a15d531c961468f1a04a1c21dc4e4a372ca4661700d66cc9c2","8aabc7d8676ba6098fc30c95eca03a331df41ac4c08213207a9329998f32d1b0","9d8464e1c6b7f30c4121d28b11c112da81c496c65e65948fbc7d5b5f23b50cdc","6b88a632af960a4140730527eb670c3d3e6eae0da573f0df2849909d9bb3e5f3","ab2f4f2d874d18918f0abb55e5a89a36ab875e01e3e9efa6e19efbd65295800b","2212906ab48ae8891080a68a19ba3ab53a4927d360feb34120051aff4ae980ae","3a9f919d416fc93980f716c44482d97a97c016bdc798ff044e6a5700ad7e3119","81a0ad19fcbd10a0652056c53d7914beaf329c8256e2ae1eee8a71d50f7b3099","cf6bbb6d0fa5fd968bed4428fb7185e941858bd58c40a52f29e6de486fc86036","0e8a156ae510f4cb5012c1daf7fb0b1d0b2207a7af4e069831d5236e8648c869","9a7a72c4c13b166e980bcc538ffb67b9b9d0ef02f6a7a4fd5045435e2a2dab73","a315b65c06651d1075746b7ac7543da4428010859a168e86b58aee3361c50fde","4aee50d73be34729affea3590111c093a8952c9accd9b3ee939aeb7331594225","df4b5e6fe2a91140a1ed2f8f94e01d4c836a069cee23a2d0a83a00cf649f8505","dd6273b4dbd75493f71fbe03b4f7c2091514d5fa2f688f62d3372a5f0dc865e9","8f7f69fe31927aa55084ef1b7e507d299373ed4916a6cb1b38e97363c26136cb","9047b17c9803b39de3d537696d8bf04f0ccd97e1814bad41589e8417cfd0bf75","3ca6d1c1cd7e39a18ca650310c3573737e26879ae4f8c4587e73c9d8d2a3354d","fb0d83c2e2dc390a2a0f5c55834a301fe1cbc1021062d75a27059893f307bcc5","17aadaec93ee74b8c244050bd3a8c671c2968307fbef3f375483a185a2462681","401fa7edce893a618c09a1bbf3828e688057e4e46ffe020113ce9552cb6bc2d0","baef294f6ea8cfd7e45932669b7cbc6aa1621d3ae6d2c9515acc3ea484fb4be0","9bbcda8e62203eae2ff2f7ff61fb443222974c125f6e0e8a280ab8765d55b5f3","80526006e1bd587c231b329aed669f7b6ec27914a9dc584fb6429b1ab2592458","3d7400439bc24011d5b3813db31f5dbf96bafc0552417ec17ddb4d82b6062c9c","88eab4a47491ffb70c381ddf1751afbb9d7d0bc6641f1187ff9bf1a451446fe8","48549e97a6d573058f13af0aa1e5e1ad6cb68be5beec4f13e2fbb6d75cd7ad1e","5ca424023e19b50a1dd3929225d1a22e9622909de5931766b40f4b86b4e28d79","c97e0165511e0fa9e4da49681b649c9b846200811da3101d41876c1df166287a","0aa78e5eb141797539cceb07781ce247115ac93997024ca4f27096313161fbfb","67ebbe06bae6819c3d2abee9d3efc1a85cbc679ab47191ef2550afa3f83be390","1feef20cadcc3de3a1e008f8fbfcc5738edf3365abebf46f3bd709ccd2d2fcfe","3aeffd98651ed8bf9d8fb3fc2e12b114a9b295d4c41f37bb0cae1d177dce3820","93e9c3251a3277ae547da45b6f3fe3668b130d4c8d548543923d3813cee20419","cb42bb5910401cb6734da885ed03a5d96d4ff7d6db73c3d4b28d8915ceac04e7","7b03c922ed4b148fc74142210bc695d54516801ea511b34aaa37aa6f2122760b","be6c40be2950277e9fcc8a2330d8ede540664a79d8fa0fd294f891984b42cea1","90fcc1bead925aeee0dedab578721f9f047273fd13e0cd9d0309b15f6c6cc784","091f417275a51ab3c47b949723e9e8a193012157ecc64a96e2d7b1505e82f395","66d5d9afc4e529d3dde0a6a2e333728ff7fe4dc033b67c2d222f17809e70adcc","9d83ada3fc4272487fe297c0f764466a6a7241a5b258209b3c7f7bd68a22405d","4bca98a3333dcf4841e798d4c4578c64985f708d6d45e6cda52d74095f8a068d","efe037ee4ee24a81a3e38604efd02ef02b181bdd156546a8d3de7f7ad9c04720","1068d0b0565cbe6eb893ed471ad1ca73c796f0b2343086da028686fc0e3883c4","56657942ea79c1a7e14a987a6b55829ec81db64bfa0943520a048c5b241cd37d","4747663ada3f658cd70c0c4aee6f0e4d34a0cce76b7a0cf31309185b4cacfd34","78a08a550552a4486bb5ee92a59cecd3f46e20d096079fbf1090ea3f448fe6cf","75462f91aa1fd16c339600522bccce270912deb5215aaac8e565f61810ef6cb1","00ca4756fe3602ffade85f948ffeacb20b4ac13a0f3cb47e04a64b8d3b86a9e7","9e72ed42596dba8dfaa6aa36aebc0c6bb6fc3e48f9dd74df884b8e45a98f829a","436ed81e50892b797e818e40d1e140249068b5dbb0a2d33dc06605312c5c44a8","22f5afc45b0be065b0fa23475993eb3065cb1c8c8aa688b23002d602f03ff4f2","382a7341532d29fad62a0635d4f8883276ac18d05d3101dfb8c526e97b2a94f9","f913f2963998e10fe5a83b46f59ff1e914b62f91e8a7e94f64957875c0220831","a1823922666297f66575249487f32a8435b4d189f7343c677ad18918479922ae","e01e38aa2ccf94a9a5ba2ca6686325b75529357ce03c51fa3657de5a652ca965",{"version":"86790b6963d1cb96d24efdcf4df4001d81e02a3e60d230dea5d76d0fb62f824f","signature":"fa2ff18fb163e0ae2eff1eac2523dfd2d0734a30c60ef505047cd2c36e323968"},"cdcc132f207d097d7d3aa75615ab9a2e71d6a478162dde8b67f88ea19f3e54de","0d14fa22c41fdc7277e6f71473b20ebc07f40f00e38875142335d5b63cdfc9d2","c085e9aa62d1ae1375794c1fb927a445fa105fed891a7e24edbb1c3300f7384a","f315e1e65a1f80992f0509e84e4ae2df15ecd9ef73df975f7c98813b71e4c8da","5b9586e9b0b6322e5bfbd2c29bd3b8e21ab9d871f82346cb71020e3d84bae73e","3e70a7e67c2cb16f8cd49097360c0309fe9d1e3210ff9222e9dac1f8df9d4fb6","ab68d2a3e3e8767c3fba8f80de099a1cfc18c0de79e42cb02ae66e22dfe14a66","d96cc6598148bf1a98fb2e8dcf01c63a4b3558bdaec6ef35e087fd0562eb40ec",{"version":"46894b2a21a60f8449ca6b2b7223b7179bba846a61b1434bed77b34b2902c306","affectsGlobalScope":true}],"options":{"composite":true,"declaration":true,"esModuleInterop":true,"experimentalDecorators":true,"module":1,"noImplicitAny":false,"noImplicitReturns":true,"noUnusedLocals":true,"noUnusedParameters":true,"outDir":"./dist","rootDir":"./src","sourceMap":true,"strict":true,"strictNullChecks":true,"target":5},"fileIdsList":[[228,229],[173],[148,173,174,175,176,232],[111,129,148,173,225,230,231,233],[137,148,174],[178],[176,177,179,180,223,232,233],[148,180,191,192,222],[173,175,224,226,229,233],[148,173,174,176,177,179,224,225,229,232,234],[192,233,236,237,238,239,243,244,245,246,247,248,249,250,251,252],[148,173,233,247],[148,173,233],[148,186],[186],[148,210],[188,189,195,196],[186,187,191,194],[186,187,190],[187,188,189],[186,193,198,199,203,204,205,206,207,208,216,217,219,220,221,254],[197],[202],[196],[215],[218],[196,200,201],[186,187,191],[196,212,213,214],[186,187,209,211],[210],[173,174,175,176,177,178,179,180,223,224,225,226,227,228,229,232,233,234,235,236,253],[192,245],[192,245,253],[179,180,192,223,243,244],[175],[148,177,179,226,228],[115,148],[129,148,230],[173,175,233,243,245],[173,175,179,192,233,239,246,247],[111,115,129,148,173,176,179,229,231,233],[179,223,227,229,232],[175,238,245],[173,175,233],[115,148,175,233,240],[180,223,242],[173,177,179,180,192,223,239,240,241,243],[115,148,173,177,179,192,223,233,239,241],[148,181,182,183,185,186],[181,186],[184],[276],[114,148,156],[111,114,140,148,152,153,154,156],[278,281],[62],[98],[99,104,132],[100,111,112,119,129,140],[100,101,111,119],[102,141],[103,104,112,120],[104,129,137],[105,107,111,119],[106],[107,108],[111],[109,111],[98,111],[111,112,113,129,140],[111,112,113,126,129,132],[96,99,145],[107,111,114,119,129,140,156],[111,112,114,115,119,129,137,140],[114,116,129,137,140],[62,63,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147],[111,117],[118,140,145],[107,111,119,129],[120],[121],[98,122],[123,139,145],[124],[125],[111,126,127],[126,128,141,143],[99,111,129,130,131,132],[99,129,131],[129,130],[132],[133],[98,129],[111,135,136],[135,136],[104,119,129,137],[138],[119,139],[99,114,125,140],[104,141],[129,142],[118,143],[144],[99,104,111,113,122,129,140,143,145],[129,146],[114,129,148,156],[107,114,156],[274,280],[160],[148,149,159],[114,116,119,129,137,140,148,150,151,154,155,156,157,158,160],[140],[114,156],[162],[161,162,163],[140,148,149,159,161],[278],[275,279],[277],[256],[257],[73,77,140],[73,129,140],[68],[70,73,137,140],[119,137],[148],[68,148],[70,73,119,140],[65,66,69,72,99,111,129,140],[65,71],[69,73,99,132,140,148],[99,148],[89,99,148],[67,68,148],[73],[67,68,69,70,71,72,73,74,75,77,78,79,80,81,82,83,84,85,86,87,88,90,91,92,93,94,95],[73,80,81],[71,73,81,82],[72],[65,68,73],[73,77,81,82],[77],[71,73,76,140],[65,70,71,73,77,80],[99,129],[68,73,89,99,145,148],[42,43],[42],[47],[45,46],[49,50,51,52,53,54,55,56],[49],[45,57],[58,59],[57,58],[61,165],[57,61,164],[44,48,60,166,170,272],[168,169],[57,167,168],[167],[171,172,257,259,262,263,264,266,270,271],[261,267,270],[111,148,177,186,254,257,260,262,270],[148,254,255,257,259,261,262,263,269],[148,257,270],[257,260,261],[265,266,270],[262,270],[255,257,258,262,264,267,270],[268,270],[148,257,258,259,262,263,269,270]],"referencedMap":[[236,1],[174,2],[233,3],[234,4],[177,5],[179,6],[224,7],[223,8],[225,9],[226,10],[253,11],[251,12],[247,13],[210,14],[209,15],[187,15],[213,16],[197,17],[195,18],[188,15],[191,19],[190,20],[222,21],[193,15],[198,22],[199,15],[203,23],[204,15],[205,24],[206,15],[207,23],[208,15],[216,25],[217,15],[219,26],[220,15],[221,22],[214,16],[202,27],[201,28],[200,15],[215,29],[212,30],[211,31],[196,15],[218,17],[189,15],[254,32],[250,33],[252,34],[245,35],[237,36],[229,37],[173,38],[231,39],[244,40],[248,41],[232,42],[227,38],[228,43],[246,44],[235,45],[241,46],[243,47],[242,48],[240,49],[186,50],[183,51],[185,52],[277,53],[150,54],[155,55],[282,56],[62,57],[63,57],[98,58],[99,59],[100,60],[101,61],[102,62],[103,63],[104,64],[105,65],[106,66],[107,67],[108,67],[110,68],[109,69],[111,70],[112,71],[113,72],[97,73],[114,74],[115,75],[116,76],[148,77],[117,78],[118,79],[119,80],[120,81],[121,82],[122,83],[123,84],[124,85],[125,86],[126,87],[127,87],[128,88],[129,89],[131,90],[130,91],[132,92],[133,93],[134,94],[135,95],[136,96],[137,97],[138,98],[139,99],[140,100],[141,101],[142,102],[143,103],[144,104],[145,105],[146,106],[154,107],[151,108],[281,109],[161,110],[160,111],[159,112],[157,113],[156,114],[163,115],[164,116],[162,117],[279,118],[280,119],[152,68],[278,120],[182,51],[257,121],[256,122],[80,123],[87,124],[79,123],[94,125],[71,126],[70,127],[93,128],[88,129],[91,130],[73,131],[72,132],[68,133],[67,134],[90,135],[69,136],[74,137],[78,137],[96,138],[95,137],[82,139],[83,140],[85,141],[81,142],[84,143],[89,128],[76,144],[77,145],[86,146],[66,147],[92,148],[44,149],[43,150],[48,151],[47,152],[57,153],[50,154],[49,155],[60,156],[59,157],[166,158],[165,159],[273,160],[170,161],[169,162],[168,163],[272,164],[265,165],[261,166],[270,167],[259,168],[262,169],[260,128],[267,170],[266,171],[268,172],[269,173],[264,174],[263,173]],"exportedModulesMap":[[236,1],[174,2],[233,3],[234,4],[177,5],[179,6],[224,7],[223,8],[225,9],[226,10],[253,11],[251,12],[247,13],[210,14],[209,15],[187,15],[213,16],[197,17],[195,18],[188,15],[191,19],[190,20],[222,21],[193,15],[198,22],[199,15],[203,23],[204,15],[205,24],[206,15],[207,23],[208,15],[216,25],[217,15],[219,26],[220,15],[221,22],[214,16],[202,27],[201,28],[200,15],[215,29],[212,30],[211,31],[196,15],[218,17],[189,15],[254,32],[250,33],[252,34],[245,35],[237,36],[229,37],[173,38],[231,39],[244,40],[248,41],[232,42],[227,38],[228,43],[246,44],[235,45],[241,46],[243,47],[242,48],[240,49],[186,50],[183,51],[185,52],[277,53],[150,54],[155,55],[282,56],[62,57],[63,57],[98,58],[99,59],[100,60],[101,61],[102,62],[103,63],[104,64],[105,65],[106,66],[107,67],[108,67],[110,68],[109,69],[111,70],[112,71],[113,72],[97,73],[114,74],[115,75],[116,76],[148,77],[117,78],[118,79],[119,80],[120,81],[121,82],[122,83],[123,84],[124,85],[125,86],[126,87],[127,87],[128,88],[129,89],[131,90],[130,91],[132,92],[133,93],[134,94],[135,95],[136,96],[137,97],[138,98],[139,99],[140,100],[141,101],[142,102],[143,103],[144,104],[145,105],[146,106],[154,107],[151,108],[281,109],[161,110],[160,111],[159,112],[157,113],[156,114],[163,115],[164,116],[162,117],[279,118],[280,119],[152,68],[278,120],[182,51],[257,121],[256,122],[80,123],[87,124],[79,123],[94,125],[71,126],[70,127],[93,128],[88,129],[91,130],[73,131],[72,132],[68,133],[67,134],[90,135],[69,136],[74,137],[78,137],[96,138],[95,137],[82,139],[83,140],[85,141],[81,142],[84,143],[89,128],[76,144],[77,145],[86,146],[66,147],[92,148],[44,149],[43,150],[48,151],[47,152],[57,153],[50,154],[49,155],[60,156],[59,157],[166,158],[165,159],[273,160],[170,161],[169,162],[168,163],[272,164],[265,165],[261,166],[270,167],[259,168],[262,169],[260,128],[267,170],[266,171],[268,172],[269,173],[264,174],[263,173]],"semanticDiagnosticsPerFile":[236,249,174,233,234,177,179,224,223,225,226,178,180,175,176,238,230,253,251,247,210,209,187,213,197,194,195,188,191,190,222,193,198,199,203,204,205,206,207,208,216,217,219,220,221,214,202,201,200,215,212,211,196,218,189,254,250,252,245,237,229,173,231,244,248,232,227,228,246,235,192,241,243,242,240,239,186,183,184,185,274,277,276,150,155,153,45,282,62,63,98,99,100,101,102,103,104,105,106,107,108,110,109,111,112,113,97,147,114,115,116,148,117,118,119,120,121,122,123,124,125,126,127,128,129,131,130,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,154,64,151,255,281,161,160,159,158,157,156,163,164,162,279,280,275,152,149,278,182,181,257,256,80,87,79,94,71,70,93,88,91,73,72,68,67,90,69,74,75,78,65,96,95,82,83,85,81,84,89,76,77,86,66,92,44,42,43,48,46,47,57,55,56,50,49,51,52,53,54,60,58,59,166,61,165,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,32,29,30,31,33,7,34,39,40,35,36,37,38,1,41,273,170,169,168,167,272,172,265,261,270,259,262,260,271,267,258,171,266,268,269,264,263],"latestChangedDtsFile":"./dist/index.d.ts"},"version":"4.9.5"}
|