@kumori/aurora-interfaces 1.0.17 → 1.0.19

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.
@@ -333,7 +333,7 @@ export const errors = {
333
333
  exceedsEnvironmentMax:
334
334
  "This number exceeds the maximum allowed for the environment.",
335
335
  minReplicasGtZero: "Minimum replicas must be greater than 0",
336
- hysteresisGtZero: "Hysteresis must be greater than 0",
336
+ hysteresisGtZero: "Cooling period must be greater than 0",
337
337
  },
338
338
  ui: {
339
339
  fillRequiredBeforeDeploy:
@@ -390,7 +390,7 @@ export const errors = {
390
390
  nameTooLong: "Service name must be {max} characters or less",
391
391
  nameInvalidFormat:
392
392
  "Service name must start with a lowercase letter and can only contain lowercase letters, numbers and hyphens (-).",
393
- nameDuplicate: "A service with this name already exists",
393
+ nameDuplicate: "The service name is already in use in this environment. Choose a different name to continue.",
394
394
  pathMustStartWithSlash: "Path must start with /",
395
395
  },
396
396
  },
@@ -59,8 +59,8 @@ export interface Service {
59
59
  lastDeployed?: string;
60
60
  project: string;
61
61
  registry: string;
62
+ registryCredentialSecret?: string;
62
63
  imageName: string;
63
- imageCredentialSecret?: string;
64
64
  entrypoint: string;
65
65
  cmd: string;
66
66
  serverChannels: Channel[];
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kumori/aurora-interfaces",
3
- "version": "1.0.17",
3
+ "version": "1.0.19",
4
4
  "description": "aurora interfaces",
5
5
  "main": "export-interfaces.ts",
6
6
  "repository": {