@restatedev/restatectl 1.5.6 → 1.6.0-rc.4
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 +3 -3
- package/lib/index.js +1 -1
- package/package.json +5 -5
- package/src/index.ts +1 -1
package/README.md
CHANGED
|
@@ -8,9 +8,9 @@
|
|
|
8
8
|
|
|
9
9
|
<p align="center">
|
|
10
10
|
<picture>
|
|
11
|
-
<source media="(prefers-color-scheme: dark)" srcset="https://restate.dev/
|
|
12
|
-
<source media="(prefers-color-scheme: light)" srcset="https://restate.dev/
|
|
13
|
-
<img alt="Restate overview" src="https://restate.dev/
|
|
11
|
+
<source media="(prefers-color-scheme: dark)" srcset="https://restate.dev/use-cases-dark.png">
|
|
12
|
+
<source media="(prefers-color-scheme: light)" srcset="https://restate.dev/use-cases-light.png">
|
|
13
|
+
<img alt="Restate overview" src="https://restate.dev/use-cases-light.png" width="100%">
|
|
14
14
|
</picture>
|
|
15
15
|
</p>
|
|
16
16
|
|
package/lib/index.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
#!/usr/bin/env node
|
|
2
2
|
"use strict";
|
|
3
3
|
/*
|
|
4
|
-
* Copyright (c) 2023 -
|
|
4
|
+
* Copyright (c) 2023 - 2026 Restate Software, Inc., Restate GmbH.
|
|
5
5
|
* All rights reserved.
|
|
6
6
|
*
|
|
7
7
|
* Use of this software is governed by the Business Source License
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@restatedev/restatectl",
|
|
3
3
|
"description": "Restate administration tools",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.6.0-rc.4",
|
|
5
5
|
"bin": "lib/index.js",
|
|
6
6
|
"repository": {
|
|
7
7
|
"type": "git",
|
|
@@ -35,9 +35,9 @@
|
|
|
35
35
|
"typescript": "^5.9.2"
|
|
36
36
|
},
|
|
37
37
|
"optionalDependencies": {
|
|
38
|
-
"@restatedev/restatectl-linux-x64": "1.
|
|
39
|
-
"@restatedev/restatectl-linux-arm64": "1.
|
|
40
|
-
"@restatedev/restatectl-darwin-x64": "1.
|
|
41
|
-
"@restatedev/restatectl-darwin-arm64": "1.
|
|
38
|
+
"@restatedev/restatectl-linux-x64": "1.6.0-rc.4",
|
|
39
|
+
"@restatedev/restatectl-linux-arm64": "1.6.0-rc.4",
|
|
40
|
+
"@restatedev/restatectl-darwin-x64": "1.6.0-rc.4",
|
|
41
|
+
"@restatedev/restatectl-darwin-arm64": "1.6.0-rc.4"
|
|
42
42
|
}
|
|
43
43
|
}
|
package/src/index.ts
CHANGED