@geek-fun/serverlessinsight 0.3.4 → 0.4.1
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/README.md +209 -21
- package/README.zh-CN.md +232 -0
- package/dist/package.json +33 -33
- package/dist/src/commands/index.js +50 -12
- package/dist/src/commands/local.js +6 -3
- package/dist/src/commands/template.js +3 -1
- package/dist/src/common/constants.js +3 -1
- package/dist/src/common/context.js +56 -30
- package/dist/src/common/credentials.js +15 -0
- package/dist/src/common/iacHelper.js +39 -4
- package/dist/src/common/index.d.ts +2 -1
- package/dist/src/common/index.js +2 -1
- package/dist/src/common/logger.js +6 -0
- package/dist/src/common/requestHelper.js +16 -0
- package/dist/src/common/rosClient.js +3 -0
- package/dist/src/parser/eventParser.js +1 -1
- package/dist/src/parser/index.d.ts +2 -1
- package/dist/src/parser/index.js +32 -1
- package/dist/src/stack/localStack/aliyunFc.js +145 -0
- package/dist/src/stack/localStack/bucket.js +226 -0
- package/dist/src/stack/localStack/event.js +133 -26
- package/dist/src/stack/localStack/function.js +120 -0
- package/dist/src/stack/localStack/functionRunner.js +270 -0
- package/dist/src/stack/localStack/index.d.ts +4 -1
- package/dist/src/stack/localStack/index.js +14 -4
- package/dist/src/stack/localStack/localServer.js +111 -0
- package/dist/src/stack/localStack/utils.js +36 -0
- package/dist/src/stack/rosStack/bootstrap.js +1 -1
- package/dist/src/types/localStack/index.d.ts +81 -0
- package/dist/src/types/localStack/index.js +10 -0
- package/dist/src/validator/iacSchema.js +17 -2
- package/dist/src/validator/rootSchema.js +46 -0
- package/dist/tsconfig.tsbuildinfo +1 -1
- package/layers/si-bootstrap-sdk/README.md +63 -0
- package/layers/si-bootstrap-sdk/package-lock.json +39 -33
- package/layers/si-bootstrap-sdk/package.json +5 -5
- package/layers/si-bootstrap-sdk/support/operation-collection/README.md +47 -0
- package/layers/si-bootstrap-sdk/support/operation-collection/package-lock.json +298 -0
- package/layers/si-bootstrap-sdk/support/operation-collection/package.json +18 -0
- package/layers/si-bootstrap-sdk/support/operation-collection/publish.js +257 -0
- package/package.json +33 -33
- package/samples/aliyun-poc-es.yml +16 -12
- package/dist/src/common/domainHelper.js +0 -10
|
@@ -1 +1,64 @@
|
|
|
1
1
|
# ServerlessInsight bootstrap SDK
|
|
2
|
+
|
|
3
|
+
This is the bootstrap SDK for ServerlessInsight, packaged as an Aliyun Function Compute layer.
|
|
4
|
+
|
|
5
|
+
## Automated Publishing
|
|
6
|
+
|
|
7
|
+
The layer is automatically published to Aliyun Function Compute using GitHub Actions whenever changes are pushed to the `layers/si-bootstrap-sdk/` directory on the master branch.
|
|
8
|
+
|
|
9
|
+
### Supported Regions
|
|
10
|
+
|
|
11
|
+
The layer is published to the following Aliyun regions:
|
|
12
|
+
- `cn-beijing` (Beijing)
|
|
13
|
+
- `cn-hangzhou` (Hangzhou)
|
|
14
|
+
- `cn-chengdu` (Chengdu)
|
|
15
|
+
- `ap-southeast-1` (Singapore)
|
|
16
|
+
|
|
17
|
+
### Version Alignment
|
|
18
|
+
|
|
19
|
+
The automation ensures that all regions have the same layer version. If regions have different versions, the script will publish additional versions to align all regions to the latest version.
|
|
20
|
+
|
|
21
|
+
### Manual Trigger
|
|
22
|
+
|
|
23
|
+
You can manually trigger the publishing workflow from the GitHub Actions tab using the "workflow_dispatch" event.
|
|
24
|
+
|
|
25
|
+
### Prerequisites
|
|
26
|
+
|
|
27
|
+
The following secrets must be configured in the repository:
|
|
28
|
+
- `ALIYUN_ACCESS_KEY_ID`: Aliyun access key ID
|
|
29
|
+
- `ALIYUN_ACCESS_KEY_SECRET`: Aliyun access key secret
|
|
30
|
+
|
|
31
|
+
## Local Development
|
|
32
|
+
|
|
33
|
+
### Building the Layer
|
|
34
|
+
|
|
35
|
+
To build the layer locally:
|
|
36
|
+
|
|
37
|
+
```bash
|
|
38
|
+
cd layers/si-bootstrap-sdk
|
|
39
|
+
./scripts/package.sh
|
|
40
|
+
```
|
|
41
|
+
|
|
42
|
+
This will create a packaged layer at `./artifacts/si-bootstrap-sdk.zip`.
|
|
43
|
+
|
|
44
|
+
### Publishing Manually
|
|
45
|
+
|
|
46
|
+
To publish the layer to all regions manually:
|
|
47
|
+
|
|
48
|
+
```bash
|
|
49
|
+
cd layers/si-bootstrap-sdk
|
|
50
|
+
export ALIYUN_ACCESS_KEY_ID="your-access-key-id"
|
|
51
|
+
export ALIYUN_ACCESS_KEY_SECRET="your-access-key-secret"
|
|
52
|
+
export ALIYUN_REGIONS="cn-beijing,cn-hangzhou,cn-chengdu,ap-southeast-1" # Optional, defaults shown
|
|
53
|
+
export ALIYUN_COMPATIBLE_RUNTIMES="nodejs20,nodejs18,nodejs16" # Optional, defaults shown
|
|
54
|
+
./scripts/publish-to-regions.sh
|
|
55
|
+
```
|
|
56
|
+
|
|
57
|
+
You can customize the target regions by setting the `ALIYUN_REGIONS` environment variable with a comma-separated list of region names.
|
|
58
|
+
|
|
59
|
+
You can customize the compatible runtimes by setting the `ALIYUN_COMPATIBLE_RUNTIMES` environment variable with a comma-separated list of runtime identifiers.
|
|
60
|
+
|
|
61
|
+
## Layer Information
|
|
62
|
+
|
|
63
|
+
- **Compatible Runtimes**: nodejs20, nodejs18, nodejs16
|
|
64
|
+
- **License**: Apache-2.0
|
|
@@ -1,24 +1,24 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geek-fun/si-bootstrap-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"lockfileVersion": 3,
|
|
5
5
|
"requires": true,
|
|
6
6
|
"packages": {
|
|
7
7
|
"": {
|
|
8
8
|
"name": "@geek-fun/si-bootstrap-sdk",
|
|
9
|
-
"version": "1.0.
|
|
9
|
+
"version": "1.0.2",
|
|
10
10
|
"license": "Apache-2.0",
|
|
11
11
|
"dependencies": {
|
|
12
12
|
"@alicloud/credentials": "^2.4.4",
|
|
13
13
|
"@alicloud/openapi-client": "^0.4.15",
|
|
14
14
|
"@alicloud/tablestore20201209": "^1.2.0",
|
|
15
|
-
"pino": "^
|
|
16
|
-
"pino-pretty": "^13.1.
|
|
17
|
-
"tablestore": "^5.6.
|
|
15
|
+
"pino": "^10.1.0",
|
|
16
|
+
"pino-pretty": "^13.1.3",
|
|
17
|
+
"tablestore": "^5.6.3"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
20
|
"@types/tablestore": "^5.1.3",
|
|
21
|
-
"typescript": "^5.9.
|
|
21
|
+
"typescript": "^5.9.3"
|
|
22
22
|
}
|
|
23
23
|
},
|
|
24
24
|
"node_modules/@alicloud/credentials": {
|
|
@@ -232,6 +232,12 @@
|
|
|
232
232
|
"xml2js": "^0.6.2"
|
|
233
233
|
}
|
|
234
234
|
},
|
|
235
|
+
"node_modules/@pinojs/redact": {
|
|
236
|
+
"version": "0.4.0",
|
|
237
|
+
"resolved": "https://registry.npmjs.org/@pinojs/redact/-/redact-0.4.0.tgz",
|
|
238
|
+
"integrity": "sha512-k2ENnmBugE/rzQfEcdWHcCY+/FM3VLzH9cYEsbdsoqrvzAKRhUZeRNhAZvB8OitQJ1TBed3yqWtdjzS6wJKBwg==",
|
|
239
|
+
"license": "MIT"
|
|
240
|
+
},
|
|
235
241
|
"node_modules/@protobufjs/aspromise": {
|
|
236
242
|
"version": "1.1.2",
|
|
237
243
|
"resolved": "https://registry.npmjs.org/@protobufjs/aspromise/-/aspromise-1.1.2.tgz",
|
|
@@ -410,20 +416,11 @@
|
|
|
410
416
|
}
|
|
411
417
|
},
|
|
412
418
|
"node_modules/fast-copy": {
|
|
413
|
-
"version": "
|
|
414
|
-
"resolved": "https://registry.npmjs.org/fast-copy/-/fast-copy-
|
|
415
|
-
"integrity": "sha512-
|
|
419
|
+
"version": "4.0.2",
|
|
420
|
+
"resolved": "https://registry.npmjs.org/fast-copy/-/fast-copy-4.0.2.tgz",
|
|
421
|
+
"integrity": "sha512-ybA6PDXIXOXivLJK/z9e+Otk7ve13I4ckBvGO5I2RRmBU1gMHLVDJYEuJYhGwez7YNlYji2M2DvVU+a9mSFDlw==",
|
|
416
422
|
"license": "MIT"
|
|
417
423
|
},
|
|
418
|
-
"node_modules/fast-redact": {
|
|
419
|
-
"version": "3.5.0",
|
|
420
|
-
"resolved": "https://registry.npmjs.org/fast-redact/-/fast-redact-3.5.0.tgz",
|
|
421
|
-
"integrity": "sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==",
|
|
422
|
-
"license": "MIT",
|
|
423
|
-
"engines": {
|
|
424
|
-
"node": ">=6"
|
|
425
|
-
}
|
|
426
|
-
},
|
|
427
424
|
"node_modules/fast-safe-stringify": {
|
|
428
425
|
"version": "2.1.1",
|
|
429
426
|
"resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz",
|
|
@@ -593,13 +590,13 @@
|
|
|
593
590
|
}
|
|
594
591
|
},
|
|
595
592
|
"node_modules/pino": {
|
|
596
|
-
"version": "
|
|
597
|
-
"resolved": "https://registry.npmjs.org/pino/-/pino-
|
|
598
|
-
"integrity": "sha512-
|
|
593
|
+
"version": "10.1.0",
|
|
594
|
+
"resolved": "https://registry.npmjs.org/pino/-/pino-10.1.0.tgz",
|
|
595
|
+
"integrity": "sha512-0zZC2ygfdqvqK8zJIr1e+wT1T/L+LF6qvqvbzEQ6tiMAoTqEVK9a1K3YRu8HEUvGEvNqZyPJTtb2sNIoTkB83w==",
|
|
599
596
|
"license": "MIT",
|
|
600
597
|
"dependencies": {
|
|
598
|
+
"@pinojs/redact": "^0.4.0",
|
|
601
599
|
"atomic-sleep": "^1.0.0",
|
|
602
|
-
"fast-redact": "^3.1.1",
|
|
603
600
|
"on-exit-leak-free": "^2.1.0",
|
|
604
601
|
"pino-abstract-transport": "^2.0.0",
|
|
605
602
|
"pino-std-serializers": "^7.0.0",
|
|
@@ -624,20 +621,20 @@
|
|
|
624
621
|
}
|
|
625
622
|
},
|
|
626
623
|
"node_modules/pino-pretty": {
|
|
627
|
-
"version": "13.1.
|
|
628
|
-
"resolved": "https://registry.npmjs.org/pino-pretty/-/pino-pretty-13.1.
|
|
629
|
-
"integrity": "sha512-
|
|
624
|
+
"version": "13.1.3",
|
|
625
|
+
"resolved": "https://registry.npmjs.org/pino-pretty/-/pino-pretty-13.1.3.tgz",
|
|
626
|
+
"integrity": "sha512-ttXRkkOz6WWC95KeY9+xxWL6AtImwbyMHrL1mSwqwW9u+vLp/WIElvHvCSDg0xO/Dzrggz1zv3rN5ovTRVowKg==",
|
|
630
627
|
"license": "MIT",
|
|
631
628
|
"dependencies": {
|
|
632
629
|
"colorette": "^2.0.7",
|
|
633
630
|
"dateformat": "^4.6.3",
|
|
634
|
-
"fast-copy": "^
|
|
631
|
+
"fast-copy": "^4.0.0",
|
|
635
632
|
"fast-safe-stringify": "^2.1.1",
|
|
636
633
|
"help-me": "^5.0.0",
|
|
637
634
|
"joycon": "^3.1.1",
|
|
638
635
|
"minimist": "^1.2.6",
|
|
639
636
|
"on-exit-leak-free": "^2.1.0",
|
|
640
|
-
"pino-abstract-transport": "^
|
|
637
|
+
"pino-abstract-transport": "^3.0.0",
|
|
641
638
|
"pump": "^3.0.0",
|
|
642
639
|
"secure-json-parse": "^4.0.0",
|
|
643
640
|
"sonic-boom": "^4.0.1",
|
|
@@ -647,6 +644,15 @@
|
|
|
647
644
|
"pino-pretty": "bin.js"
|
|
648
645
|
}
|
|
649
646
|
},
|
|
647
|
+
"node_modules/pino-pretty/node_modules/pino-abstract-transport": {
|
|
648
|
+
"version": "3.0.0",
|
|
649
|
+
"resolved": "https://registry.npmjs.org/pino-abstract-transport/-/pino-abstract-transport-3.0.0.tgz",
|
|
650
|
+
"integrity": "sha512-wlfUczU+n7Hy/Ha5j9a/gZNy7We5+cXp8YL+X+PG8S0KXxw7n/JXA3c46Y0zQznIJ83URJiwy7Lh56WLokNuxg==",
|
|
651
|
+
"license": "MIT",
|
|
652
|
+
"dependencies": {
|
|
653
|
+
"split2": "^4.0.0"
|
|
654
|
+
}
|
|
655
|
+
},
|
|
650
656
|
"node_modules/pino-std-serializers": {
|
|
651
657
|
"version": "7.0.0",
|
|
652
658
|
"resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-7.0.0.tgz",
|
|
@@ -803,9 +809,9 @@
|
|
|
803
809
|
}
|
|
804
810
|
},
|
|
805
811
|
"node_modules/tablestore": {
|
|
806
|
-
"version": "5.6.
|
|
807
|
-
"resolved": "https://registry.npmjs.org/tablestore/-/tablestore-5.6.
|
|
808
|
-
"integrity": "sha512-
|
|
812
|
+
"version": "5.6.3",
|
|
813
|
+
"resolved": "https://registry.npmjs.org/tablestore/-/tablestore-5.6.3.tgz",
|
|
814
|
+
"integrity": "sha512-9DrBbp/Pxaiua9pfyoGAzw+Xl20ZZhMVyoKvGgobJY5lIA6IEz+1tZUmfrrCvztXzKhuf2VF6LQLARhL1aol2w==",
|
|
809
815
|
"license": "Apache-2.0",
|
|
810
816
|
"dependencies": {
|
|
811
817
|
"buffer": "4.9.1",
|
|
@@ -824,9 +830,9 @@
|
|
|
824
830
|
}
|
|
825
831
|
},
|
|
826
832
|
"node_modules/typescript": {
|
|
827
|
-
"version": "5.9.
|
|
828
|
-
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.
|
|
829
|
-
"integrity": "sha512-
|
|
833
|
+
"version": "5.9.3",
|
|
834
|
+
"resolved": "https://registry.npmjs.org/typescript/-/typescript-5.9.3.tgz",
|
|
835
|
+
"integrity": "sha512-jl1vZzPDinLr9eUt3J/t7V6FgNEw9QjvBPdysz9KfQDD41fQrC2Y4vKQdiaUpFT4bXlb1RHhLpp8wtm6M5TgSw==",
|
|
830
836
|
"dev": true,
|
|
831
837
|
"license": "Apache-2.0",
|
|
832
838
|
"bin": {
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@geek-fun/si-bootstrap-sdk",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"main": "src/index.js",
|
|
5
5
|
"types": "src/index.d.ts",
|
|
6
6
|
"description": "Bootstrap SDK for Serverless Insight",
|
|
@@ -20,14 +20,14 @@
|
|
|
20
20
|
},
|
|
21
21
|
"devDependencies": {
|
|
22
22
|
"@types/tablestore": "^5.1.3",
|
|
23
|
-
"typescript": "^5.9.
|
|
23
|
+
"typescript": "^5.9.3"
|
|
24
24
|
},
|
|
25
25
|
"dependencies": {
|
|
26
26
|
"@alicloud/credentials": "^2.4.4",
|
|
27
27
|
"@alicloud/openapi-client": "^0.4.15",
|
|
28
28
|
"@alicloud/tablestore20201209": "^1.2.0",
|
|
29
|
-
"pino": "^
|
|
30
|
-
"pino-pretty": "^13.1.
|
|
31
|
-
"tablestore": "^5.6.
|
|
29
|
+
"pino": "^10.1.0",
|
|
30
|
+
"pino-pretty": "^13.1.3",
|
|
31
|
+
"tablestore": "^5.6.3"
|
|
32
32
|
}
|
|
33
33
|
}
|
|
@@ -0,0 +1,47 @@
|
|
|
1
|
+
# SI Operation Collection
|
|
2
|
+
|
|
3
|
+
Simple Node.js scripts for managing SI bootstrap SDK operations.
|
|
4
|
+
|
|
5
|
+
## Setup
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
npm install
|
|
9
|
+
```
|
|
10
|
+
|
|
11
|
+
## Usage
|
|
12
|
+
|
|
13
|
+
### Publish Layer to Multiple Regions
|
|
14
|
+
|
|
15
|
+
```bash
|
|
16
|
+
node publish.js \
|
|
17
|
+
--artifact ../../artifacts/si-bootstrap-sdk.zip \
|
|
18
|
+
--layer-name si-bootstrap-sdk \
|
|
19
|
+
--regions cn-beijing,cn-hangzhou,cn-chengdu \
|
|
20
|
+
--runtimes nodejs20,nodejs18,nodejs16 \
|
|
21
|
+
--delay 2
|
|
22
|
+
```
|
|
23
|
+
|
|
24
|
+
Or use environment variables:
|
|
25
|
+
|
|
26
|
+
```bash
|
|
27
|
+
export ALIYUN_ACCESS_KEY_ID=your-key-id
|
|
28
|
+
export ALIYUN_ACCESS_KEY_SECRET=your-key-secret
|
|
29
|
+
export ALIYUN_REGIONS=cn-beijing,cn-hangzhou,cn-chengdu
|
|
30
|
+
export ALIYUN_COMPATIBLE_RUNTIMES=nodejs20,nodejs18,nodejs16
|
|
31
|
+
export API_DELAY=2
|
|
32
|
+
|
|
33
|
+
node publish.js --artifact ../../artifacts/si-bootstrap-sdk.zip
|
|
34
|
+
```
|
|
35
|
+
|
|
36
|
+
## Required Environment Variables
|
|
37
|
+
|
|
38
|
+
- `ALIYUN_ACCESS_KEY_ID`: Aliyun access key ID
|
|
39
|
+
- `ALIYUN_ACCESS_KEY_SECRET`: Aliyun access key secret
|
|
40
|
+
|
|
41
|
+
## Optional Environment Variables
|
|
42
|
+
|
|
43
|
+
- `ALIYUN_SECURITY_TOKEN`: For STS temporary credentials
|
|
44
|
+
- `ALIYUN_ACCOUNT_ID`: Aliyun account ID (defaults to 1990893136649406)
|
|
45
|
+
- `ALIYUN_REGIONS`: Comma-separated list of regions
|
|
46
|
+
- `ALIYUN_COMPATIBLE_RUNTIMES`: Comma-separated list of compatible runtimes
|
|
47
|
+
- `API_DELAY`: Delay between API calls in seconds (default: 2)
|
|
@@ -0,0 +1,298 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@geek-fun/si-operation-collection",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"lockfileVersion": 3,
|
|
5
|
+
"requires": true,
|
|
6
|
+
"packages": {
|
|
7
|
+
"": {
|
|
8
|
+
"name": "@geek-fun/si-operation-collection",
|
|
9
|
+
"version": "1.0.0",
|
|
10
|
+
"hasInstallScript": true,
|
|
11
|
+
"license": "Apache-2.0",
|
|
12
|
+
"dependencies": {
|
|
13
|
+
"@alicloud/credentials": "^2.4.4",
|
|
14
|
+
"@alicloud/fc-open20210406": "^2.0.13",
|
|
15
|
+
"@alicloud/openapi-client": "^0.4.15",
|
|
16
|
+
"@alicloud/tea-util": "^1.4.11"
|
|
17
|
+
},
|
|
18
|
+
"engines": {
|
|
19
|
+
"node": ">=18"
|
|
20
|
+
}
|
|
21
|
+
},
|
|
22
|
+
"node_modules/@alicloud/credentials": {
|
|
23
|
+
"version": "2.4.4",
|
|
24
|
+
"resolved": "https://registry.npmjs.org/@alicloud/credentials/-/credentials-2.4.4.tgz",
|
|
25
|
+
"integrity": "sha512-/eRAGSKcniLIFQ1UCpDhB/IrHUZisQ1sc65ws/c2avxUMpXwH1rWAohb76SVAUJhiF4mwvLzLJM1Mn1XL4Xe/Q==",
|
|
26
|
+
"license": "MIT",
|
|
27
|
+
"dependencies": {
|
|
28
|
+
"@alicloud/tea-typescript": "^1.8.0",
|
|
29
|
+
"httpx": "^2.3.3",
|
|
30
|
+
"ini": "^1.3.5",
|
|
31
|
+
"kitx": "^2.0.0"
|
|
32
|
+
}
|
|
33
|
+
},
|
|
34
|
+
"node_modules/@alicloud/endpoint-util": {
|
|
35
|
+
"version": "0.0.1",
|
|
36
|
+
"resolved": "https://registry.npmjs.org/@alicloud/endpoint-util/-/endpoint-util-0.0.1.tgz",
|
|
37
|
+
"integrity": "sha512-+pH7/KEXup84cHzIL6UJAaPqETvln4yXlD9JzlrqioyCSaWxbug5FUobsiI6fuUOpw5WwoB3fWAtGbFnJ1K3Yg==",
|
|
38
|
+
"license": "Apache-2.0",
|
|
39
|
+
"dependencies": {
|
|
40
|
+
"@alicloud/tea-typescript": "^1.5.1",
|
|
41
|
+
"kitx": "^2.0.0"
|
|
42
|
+
}
|
|
43
|
+
},
|
|
44
|
+
"node_modules/@alicloud/fc-open20210406": {
|
|
45
|
+
"version": "2.0.13",
|
|
46
|
+
"resolved": "https://registry.npmjs.org/@alicloud/fc-open20210406/-/fc-open20210406-2.0.13.tgz",
|
|
47
|
+
"integrity": "sha512-H7DjUoNSPUp967Ir1VZtEFi+2n0q5P6qX5YXWNnHuBvAqASEEqrN6SwzuygMGxSo75j/d1CPzmgT5oREbecOOg==",
|
|
48
|
+
"license": "Apache-2.0",
|
|
49
|
+
"dependencies": {
|
|
50
|
+
"@alicloud/endpoint-util": "^0.0.1",
|
|
51
|
+
"@alicloud/openapi-client": "^0.4.7",
|
|
52
|
+
"@alicloud/openapi-util": "^0.3.2",
|
|
53
|
+
"@alicloud/tea-typescript": "^1.7.1",
|
|
54
|
+
"@alicloud/tea-util": "^1.4.7"
|
|
55
|
+
}
|
|
56
|
+
},
|
|
57
|
+
"node_modules/@alicloud/gateway-spi": {
|
|
58
|
+
"version": "0.0.8",
|
|
59
|
+
"resolved": "https://registry.npmjs.org/@alicloud/gateway-spi/-/gateway-spi-0.0.8.tgz",
|
|
60
|
+
"integrity": "sha512-KM7fu5asjxZPmrz9sJGHJeSU+cNQNOxW+SFmgmAIrITui5hXL2LB+KNRuzWmlwPjnuA2X3/keq9h6++S9jcV5g==",
|
|
61
|
+
"license": "ISC",
|
|
62
|
+
"dependencies": {
|
|
63
|
+
"@alicloud/credentials": "^2",
|
|
64
|
+
"@alicloud/tea-typescript": "^1.7.1"
|
|
65
|
+
}
|
|
66
|
+
},
|
|
67
|
+
"node_modules/@alicloud/openapi-client": {
|
|
68
|
+
"version": "0.4.15",
|
|
69
|
+
"resolved": "https://registry.npmjs.org/@alicloud/openapi-client/-/openapi-client-0.4.15.tgz",
|
|
70
|
+
"integrity": "sha512-4VE0/k5ZdQbAhOSTqniVhuX1k5DUeUMZv74degn3wIWjLY6Bq+hxjaGsaHYlLZ2gA5wUrs8NcI5TE+lIQS3iiA==",
|
|
71
|
+
"license": "ISC",
|
|
72
|
+
"dependencies": {
|
|
73
|
+
"@alicloud/credentials": "^2.4.2",
|
|
74
|
+
"@alicloud/gateway-spi": "^0.0.8",
|
|
75
|
+
"@alicloud/openapi-util": "^0.3.2",
|
|
76
|
+
"@alicloud/tea-typescript": "^1.7.1",
|
|
77
|
+
"@alicloud/tea-util": "1.4.9",
|
|
78
|
+
"@alicloud/tea-xml": "0.0.3"
|
|
79
|
+
}
|
|
80
|
+
},
|
|
81
|
+
"node_modules/@alicloud/openapi-client/node_modules/@alicloud/tea-util": {
|
|
82
|
+
"version": "1.4.9",
|
|
83
|
+
"resolved": "https://registry.npmjs.org/@alicloud/tea-util/-/tea-util-1.4.9.tgz",
|
|
84
|
+
"integrity": "sha512-S0wz76rGtoPKskQtRTGqeuqBHFj8BqUn0Vh+glXKun2/9UpaaaWmuJwcmtImk6bJZfLYEShDF/kxDmDJoNYiTw==",
|
|
85
|
+
"license": "Apache-2.0",
|
|
86
|
+
"dependencies": {
|
|
87
|
+
"@alicloud/tea-typescript": "^1.5.1",
|
|
88
|
+
"kitx": "^2.0.0"
|
|
89
|
+
}
|
|
90
|
+
},
|
|
91
|
+
"node_modules/@alicloud/openapi-util": {
|
|
92
|
+
"version": "0.3.2",
|
|
93
|
+
"resolved": "https://registry.npmjs.org/@alicloud/openapi-util/-/openapi-util-0.3.2.tgz",
|
|
94
|
+
"integrity": "sha512-EC2JvxdcOgMlBAEG0+joOh2IB1um8CPz9EdYuRfTfd1uP8Yc9D8QRUWVGjP6scnj6fWSOaHFlit9H6PrJSyFow==",
|
|
95
|
+
"license": "ISC",
|
|
96
|
+
"dependencies": {
|
|
97
|
+
"@alicloud/tea-typescript": "^1.7.1",
|
|
98
|
+
"@alicloud/tea-util": "^1.3.0",
|
|
99
|
+
"kitx": "^2.1.0",
|
|
100
|
+
"sm3": "^1.0.3"
|
|
101
|
+
}
|
|
102
|
+
},
|
|
103
|
+
"node_modules/@alicloud/tea-typescript": {
|
|
104
|
+
"version": "1.8.0",
|
|
105
|
+
"resolved": "https://registry.npmjs.org/@alicloud/tea-typescript/-/tea-typescript-1.8.0.tgz",
|
|
106
|
+
"integrity": "sha512-CWXWaquauJf0sW30mgJRVu9aaXyBth5uMBCUc+5vKTK1zlgf3hIqRUjJZbjlwHwQ5y9anwcu18r48nOZb7l2QQ==",
|
|
107
|
+
"license": "ISC",
|
|
108
|
+
"dependencies": {
|
|
109
|
+
"@types/node": "^12.0.2",
|
|
110
|
+
"httpx": "^2.2.6"
|
|
111
|
+
}
|
|
112
|
+
},
|
|
113
|
+
"node_modules/@alicloud/tea-util": {
|
|
114
|
+
"version": "1.4.11",
|
|
115
|
+
"resolved": "https://registry.npmjs.org/@alicloud/tea-util/-/tea-util-1.4.11.tgz",
|
|
116
|
+
"integrity": "sha512-HyPEEQ8F0WoZegiCp7sVdrdm6eBOB+GCvGl4182u69LDFktxfirGLcAx3WExUr1zFWkq2OSmBroTwKQ4w/+Yww==",
|
|
117
|
+
"license": "Apache-2.0",
|
|
118
|
+
"dependencies": {
|
|
119
|
+
"@alicloud/tea-typescript": "^1.5.1",
|
|
120
|
+
"@darabonba/typescript": "^1.0.0",
|
|
121
|
+
"kitx": "^2.0.0"
|
|
122
|
+
}
|
|
123
|
+
},
|
|
124
|
+
"node_modules/@alicloud/tea-xml": {
|
|
125
|
+
"version": "0.0.3",
|
|
126
|
+
"resolved": "https://registry.npmjs.org/@alicloud/tea-xml/-/tea-xml-0.0.3.tgz",
|
|
127
|
+
"integrity": "sha512-+/9GliugjrLglsXVrd1D80EqqKgGpyA0eQ6+1ZdUOYCaRguaSwz44trX3PaxPu/HhIPJg9PsGQQ3cSLXWZjbAA==",
|
|
128
|
+
"license": "Apache-2.0",
|
|
129
|
+
"dependencies": {
|
|
130
|
+
"@alicloud/tea-typescript": "^1",
|
|
131
|
+
"@types/xml2js": "^0.4.5",
|
|
132
|
+
"xml2js": "^0.6.0"
|
|
133
|
+
}
|
|
134
|
+
},
|
|
135
|
+
"node_modules/@darabonba/typescript": {
|
|
136
|
+
"version": "1.0.3",
|
|
137
|
+
"resolved": "https://registry.npmjs.org/@darabonba/typescript/-/typescript-1.0.3.tgz",
|
|
138
|
+
"integrity": "sha512-/y2y6wf5TsxD7pCPIm0OvTC+5qV0Tk7HQYxwpIuWRLXQLB0CRDvr6qk4bR6rTLO/JglJa8z2uCGZsaLYpQNqFQ==",
|
|
139
|
+
"license": "Apache License 2.0",
|
|
140
|
+
"dependencies": {
|
|
141
|
+
"@alicloud/tea-typescript": "^1.5.1",
|
|
142
|
+
"httpx": "^2.3.2",
|
|
143
|
+
"lodash": "^4.17.21",
|
|
144
|
+
"moment": "^2.30.1",
|
|
145
|
+
"moment-timezone": "^0.5.45",
|
|
146
|
+
"xml2js": "^0.6.2"
|
|
147
|
+
}
|
|
148
|
+
},
|
|
149
|
+
"node_modules/@types/node": {
|
|
150
|
+
"version": "12.20.55",
|
|
151
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz",
|
|
152
|
+
"integrity": "sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==",
|
|
153
|
+
"license": "MIT"
|
|
154
|
+
},
|
|
155
|
+
"node_modules/@types/xml2js": {
|
|
156
|
+
"version": "0.4.14",
|
|
157
|
+
"resolved": "https://registry.npmjs.org/@types/xml2js/-/xml2js-0.4.14.tgz",
|
|
158
|
+
"integrity": "sha512-4YnrRemBShWRO2QjvUin8ESA41rH+9nQGLUGZV/1IDhi3SL9OhdpNC/MrulTWuptXKwhx/aDxE7toV0f/ypIXQ==",
|
|
159
|
+
"license": "MIT",
|
|
160
|
+
"dependencies": {
|
|
161
|
+
"@types/node": "*"
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
"node_modules/debug": {
|
|
165
|
+
"version": "4.4.3",
|
|
166
|
+
"resolved": "https://registry.npmjs.org/debug/-/debug-4.4.3.tgz",
|
|
167
|
+
"integrity": "sha512-RGwwWnwQvkVfavKVt22FGLw+xYSdzARwm0ru6DhTVA3umU5hZc28V3kO4stgYryrTlLpuvgI9GiijltAjNbcqA==",
|
|
168
|
+
"license": "MIT",
|
|
169
|
+
"dependencies": {
|
|
170
|
+
"ms": "^2.1.3"
|
|
171
|
+
},
|
|
172
|
+
"engines": {
|
|
173
|
+
"node": ">=6.0"
|
|
174
|
+
},
|
|
175
|
+
"peerDependenciesMeta": {
|
|
176
|
+
"supports-color": {
|
|
177
|
+
"optional": true
|
|
178
|
+
}
|
|
179
|
+
}
|
|
180
|
+
},
|
|
181
|
+
"node_modules/httpx": {
|
|
182
|
+
"version": "2.3.3",
|
|
183
|
+
"resolved": "https://registry.npmjs.org/httpx/-/httpx-2.3.3.tgz",
|
|
184
|
+
"integrity": "sha512-k1qv94u1b6e+XKCxVbLgYlOypVP9MPGpnN5G/vxFf6tDO4V3xpz3d6FUOY/s8NtPgaq5RBVVgSB+7IHpVxMYzw==",
|
|
185
|
+
"license": "MIT",
|
|
186
|
+
"dependencies": {
|
|
187
|
+
"@types/node": "^20",
|
|
188
|
+
"debug": "^4.1.1"
|
|
189
|
+
}
|
|
190
|
+
},
|
|
191
|
+
"node_modules/httpx/node_modules/@types/node": {
|
|
192
|
+
"version": "20.19.27",
|
|
193
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-20.19.27.tgz",
|
|
194
|
+
"integrity": "sha512-N2clP5pJhB2YnZJ3PIHFk5RkygRX5WO/5f0WC08tp0wd+sv0rsJk3MqWn3CbNmT2J505a5336jaQj4ph1AdMug==",
|
|
195
|
+
"license": "MIT",
|
|
196
|
+
"dependencies": {
|
|
197
|
+
"undici-types": "~6.21.0"
|
|
198
|
+
}
|
|
199
|
+
},
|
|
200
|
+
"node_modules/ini": {
|
|
201
|
+
"version": "1.3.8",
|
|
202
|
+
"resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz",
|
|
203
|
+
"integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==",
|
|
204
|
+
"license": "ISC"
|
|
205
|
+
},
|
|
206
|
+
"node_modules/kitx": {
|
|
207
|
+
"version": "2.2.0",
|
|
208
|
+
"resolved": "https://registry.npmjs.org/kitx/-/kitx-2.2.0.tgz",
|
|
209
|
+
"integrity": "sha512-tBMwe6AALTBQJb0woQDD40734NKzb0Kzi3k7wQj9ar3AbP9oqhoVrdXPh7rk2r00/glIgd0YbToIUJsnxWMiIg==",
|
|
210
|
+
"license": "MIT",
|
|
211
|
+
"dependencies": {
|
|
212
|
+
"@types/node": "^22.5.4"
|
|
213
|
+
}
|
|
214
|
+
},
|
|
215
|
+
"node_modules/kitx/node_modules/@types/node": {
|
|
216
|
+
"version": "22.19.3",
|
|
217
|
+
"resolved": "https://registry.npmjs.org/@types/node/-/node-22.19.3.tgz",
|
|
218
|
+
"integrity": "sha512-1N9SBnWYOJTrNZCdh/yJE+t910Y128BoyY+zBLWhL3r0TYzlTmFdXrPwHL9DyFZmlEXNQQolTZh3KHV31QDhyA==",
|
|
219
|
+
"license": "MIT",
|
|
220
|
+
"dependencies": {
|
|
221
|
+
"undici-types": "~6.21.0"
|
|
222
|
+
}
|
|
223
|
+
},
|
|
224
|
+
"node_modules/lodash": {
|
|
225
|
+
"version": "4.17.21",
|
|
226
|
+
"resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz",
|
|
227
|
+
"integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==",
|
|
228
|
+
"license": "MIT"
|
|
229
|
+
},
|
|
230
|
+
"node_modules/moment": {
|
|
231
|
+
"version": "2.30.1",
|
|
232
|
+
"resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz",
|
|
233
|
+
"integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==",
|
|
234
|
+
"license": "MIT",
|
|
235
|
+
"engines": {
|
|
236
|
+
"node": "*"
|
|
237
|
+
}
|
|
238
|
+
},
|
|
239
|
+
"node_modules/moment-timezone": {
|
|
240
|
+
"version": "0.5.48",
|
|
241
|
+
"resolved": "https://registry.npmjs.org/moment-timezone/-/moment-timezone-0.5.48.tgz",
|
|
242
|
+
"integrity": "sha512-f22b8LV1gbTO2ms2j2z13MuPogNoh5UzxL3nzNAYKGraILnbGc9NEE6dyiiiLv46DGRb8A4kg8UKWLjPthxBHw==",
|
|
243
|
+
"license": "MIT",
|
|
244
|
+
"dependencies": {
|
|
245
|
+
"moment": "^2.29.4"
|
|
246
|
+
},
|
|
247
|
+
"engines": {
|
|
248
|
+
"node": "*"
|
|
249
|
+
}
|
|
250
|
+
},
|
|
251
|
+
"node_modules/ms": {
|
|
252
|
+
"version": "2.1.3",
|
|
253
|
+
"resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz",
|
|
254
|
+
"integrity": "sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==",
|
|
255
|
+
"license": "MIT"
|
|
256
|
+
},
|
|
257
|
+
"node_modules/sax": {
|
|
258
|
+
"version": "1.4.3",
|
|
259
|
+
"resolved": "https://registry.npmjs.org/sax/-/sax-1.4.3.tgz",
|
|
260
|
+
"integrity": "sha512-yqYn1JhPczigF94DMS+shiDMjDowYO6y9+wB/4WgO0Y19jWYk0lQ4tuG5KI7kj4FTp1wxPj5IFfcrz/s1c3jjQ==",
|
|
261
|
+
"license": "BlueOak-1.0.0"
|
|
262
|
+
},
|
|
263
|
+
"node_modules/sm3": {
|
|
264
|
+
"version": "1.0.3",
|
|
265
|
+
"resolved": "https://registry.npmjs.org/sm3/-/sm3-1.0.3.tgz",
|
|
266
|
+
"integrity": "sha512-KyFkIfr8QBlFG3uc3NaljaXdYcsbRy1KrSfc4tsQV8jW68jAktGeOcifu530Vx/5LC+PULHT0Rv8LiI8Gw+c1g==",
|
|
267
|
+
"license": "MIT"
|
|
268
|
+
},
|
|
269
|
+
"node_modules/undici-types": {
|
|
270
|
+
"version": "6.21.0",
|
|
271
|
+
"resolved": "https://registry.npmjs.org/undici-types/-/undici-types-6.21.0.tgz",
|
|
272
|
+
"integrity": "sha512-iwDZqg0QAGrg9Rav5H4n0M64c3mkR59cJ6wQp+7C4nI0gsmExaedaYLNO44eT4AtBBwjbTiGPMlt2Md0T9H9JQ==",
|
|
273
|
+
"license": "MIT"
|
|
274
|
+
},
|
|
275
|
+
"node_modules/xml2js": {
|
|
276
|
+
"version": "0.6.2",
|
|
277
|
+
"resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.2.tgz",
|
|
278
|
+
"integrity": "sha512-T4rieHaC1EXcES0Kxxj4JWgaUQHDk+qwHcYOCFHfiwKz7tOVPLq7Hjq9dM1WCMhylqMEfP7hMcOIChvotiZegA==",
|
|
279
|
+
"license": "MIT",
|
|
280
|
+
"dependencies": {
|
|
281
|
+
"sax": ">=0.6.0",
|
|
282
|
+
"xmlbuilder": "~11.0.0"
|
|
283
|
+
},
|
|
284
|
+
"engines": {
|
|
285
|
+
"node": ">=4.0.0"
|
|
286
|
+
}
|
|
287
|
+
},
|
|
288
|
+
"node_modules/xmlbuilder": {
|
|
289
|
+
"version": "11.0.1",
|
|
290
|
+
"resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-11.0.1.tgz",
|
|
291
|
+
"integrity": "sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==",
|
|
292
|
+
"license": "MIT",
|
|
293
|
+
"engines": {
|
|
294
|
+
"node": ">=4.0"
|
|
295
|
+
}
|
|
296
|
+
}
|
|
297
|
+
}
|
|
298
|
+
}
|
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@geek-fun/si-operation-collection",
|
|
3
|
+
"version": "1.0.0",
|
|
4
|
+
"description": "Operation collection for SI bootstrap SDK management",
|
|
5
|
+
"main": "publish.js",
|
|
6
|
+
"scripts": {
|
|
7
|
+
},
|
|
8
|
+
"dependencies": {
|
|
9
|
+
"@alicloud/credentials": "^2.4.4",
|
|
10
|
+
"@alicloud/fc-open20210406": "^2.0.13",
|
|
11
|
+
"@alicloud/openapi-client": "^0.4.15",
|
|
12
|
+
"@alicloud/tea-util": "^1.4.11"
|
|
13
|
+
},
|
|
14
|
+
"engines": {
|
|
15
|
+
"node": ">=18"
|
|
16
|
+
},
|
|
17
|
+
"license": "Apache-2.0"
|
|
18
|
+
}
|