@daocloud-proto/kpanda 0.49.0-dev-b9fa9c7d → 0.49.0-dev-e92b27c9

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.
@@ -16,12 +16,6 @@ type OneOf<T> =
16
16
  : never)
17
17
  : never);
18
18
 
19
- export enum RepoType {
20
- REPO_TYPE_UNSPECIFIED = "REPO_TYPE_UNSPECIFIED",
21
- Helm = "Helm",
22
- OCI = "OCI",
23
- }
24
-
25
19
  export enum RepoPhase {
26
20
  REPOSITORY_PHASE_UNSPECIFIED = "REPOSITORY_PHASE_UNSPECIFIED",
27
21
  UNKNOWN = "UNKNOWN",
@@ -49,7 +43,6 @@ export type RepoSpec = {
49
43
  url?: string
50
44
  clientSecret?: RepoSpecSecretReference
51
45
  insecureSkipTLSVerify?: boolean
52
- type?: RepoType
53
46
  }
54
47
 
55
48
  export type RepoStatus = {
@@ -69,7 +62,6 @@ export type ValidateHelmRepoRequest = {
69
62
  userName?: string
70
63
  password?: string
71
64
  insecureSkipTLSVerify?: boolean
72
- type?: RepoType
73
65
  }
74
66
 
75
67
 
@@ -92,7 +84,6 @@ export type CreateHelmRepoRequest = {
92
84
  labels?: {[key: string]: string}
93
85
  annotations?: {[key: string]: string}
94
86
  insecureSkipTLSVerify?: boolean
95
- type?: RepoType
96
87
  }
97
88
 
98
89
  export type ListHelmReposRequest = {
@@ -139,7 +130,6 @@ export type UpdateHelmRepoRequest = {
139
130
  labels?: {[key: string]: string}
140
131
  annotations?: {[key: string]: string}
141
132
  insecureSkipTLSVerify?: boolean
142
- type?: RepoType
143
133
  }
144
134
 
145
135
  export type RefreshHelmRepoRequest = {
@@ -85,6 +85,7 @@ export type S3Config = {
85
85
  secretAccessKey?: string
86
86
  bucket?: string
87
87
  endpoint?: string
88
+ insecureSkipVerify?: boolean
88
89
  storePrefix?: string
89
90
  consoleAddress?: string
90
91
  }
@@ -195,6 +196,7 @@ export type VerifySnapStoreConfigRequest = {
195
196
  bucket?: string
196
197
  endpoint?: string
197
198
  region?: string
199
+ insecureSkipVerify?: boolean
198
200
  }
199
201
 
200
202
  export type VerifySnapStoreConfigResponse = {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name":"@daocloud-proto/kpanda",
3
- "version":"v0.49.0-dev-b9fa9c7d",
3
+ "version":"v0.49.0-dev-e92b27c9",
4
4
  "description": "",
5
5
  "main": "index.js",
6
6
  "scripts": {