@shipfox/client-projects 7.0.0 → 9.0.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/.turbo/turbo-build.log +1 -1
- package/CHANGELOG.md +24 -0
- package/dist/pages/create-project-page.stories.js +6 -0
- package/dist/pages/create-project-page.stories.js.map +1 -1
- package/dist/tsconfig.test.tsbuildinfo +1 -1
- package/package.json +6 -6
- package/src/pages/create-project-page.stories.tsx +6 -0
- package/tsconfig.build.tsbuildinfo +1 -1
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@shipfox/client-projects",
|
|
3
3
|
"license": "MIT",
|
|
4
|
-
"version": "
|
|
4
|
+
"version": "9.0.0",
|
|
5
5
|
"repository": {
|
|
6
6
|
"type": "git",
|
|
7
7
|
"url": "git+https://github.com/ShipfoxHQ/shipfox.git",
|
|
@@ -28,13 +28,13 @@
|
|
|
28
28
|
"@swc/helpers": "^0.5.17",
|
|
29
29
|
"@tanstack/react-form": "^1.32.0",
|
|
30
30
|
"@shipfox/api-definitions-dto": "9.0.2",
|
|
31
|
-
"@shipfox/api-projects-dto": "9.0.2",
|
|
32
31
|
"@shipfox/api-integration-core-dto": "9.0.2",
|
|
32
|
+
"@shipfox/api-projects-dto": "9.0.2",
|
|
33
|
+
"@shipfox/client-agent": "9.0.0",
|
|
33
34
|
"@shipfox/client-api": "6.0.1",
|
|
34
|
-
"@shipfox/client-
|
|
35
|
-
"@shipfox/client-
|
|
36
|
-
"@shipfox/client-shell": "
|
|
37
|
-
"@shipfox/client-integrations": "7.0.0",
|
|
35
|
+
"@shipfox/client-auth": "9.0.0",
|
|
36
|
+
"@shipfox/client-integrations": "9.0.0",
|
|
37
|
+
"@shipfox/client-shell": "9.0.0",
|
|
38
38
|
"@shipfox/client-ui": "6.0.2",
|
|
39
39
|
"@shipfox/react-ui": "0.3.7"
|
|
40
40
|
},
|
|
@@ -245,6 +245,12 @@ function repositoriesForScenario(scenario: Scenario): RepositoryDto[] {
|
|
|
245
245
|
full_name: 'acme-solutions/customer-deployment-pipelines',
|
|
246
246
|
default_branch: 'release',
|
|
247
247
|
}),
|
|
248
|
+
repository({
|
|
249
|
+
external_repository_id: 'observability-and-deployment-automation',
|
|
250
|
+
name: 'observability-and-deployment-automation',
|
|
251
|
+
full_name: 'acme-platform/observability-and-deployment-automation',
|
|
252
|
+
default_branch: 'main',
|
|
253
|
+
}),
|
|
248
254
|
];
|
|
249
255
|
}
|
|
250
256
|
|