Skip to content

Commit

Permalink
Merge branch 'w/129.0/improvement/use-new-getToken' into tmp/octopus/…
Browse files Browse the repository at this point in the history
…q/129.0
  • Loading branch information
bert-e committed Sep 11, 2024
2 parents 385f7c8 + e92247b commit 61cc071
Show file tree
Hide file tree
Showing 31 changed files with 153 additions and 95 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export type V1alpha1DataServiceList = {
};

export class V1alpha1DataServiceClient {
constructor(private customObjects: CustomObjectsApi) {}
constructor(public customObjects: CustomObjectsApi) {}
async getV1alpha1DataServiceList(
namespace: string,
): Promise<Result<V1alpha1DataServiceList>> {
Expand Down Expand Up @@ -229,7 +229,7 @@ export type V1beta1DataServiceList = {
};

export class V1beta1DataServiceClient {
constructor(private customObjects: CustomObjectsApi) {}
constructor(public customObjects: CustomObjectsApi) {}
async getV1beta1DataServiceList(
namespace: string,
): Promise<Result<V1beta1DataServiceList>> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ export type V1alpha1DataServiceList = {
};

export class V1alpha1DataServiceClient {
constructor(private customObjects: CustomObjectsApi) {}
constructor(public customObjects: CustomObjectsApi) {}
async getV1alpha1DataServiceList(
namespace: string,
): Promise<Result<V1alpha1DataServiceList>> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export type Metalk8sV1alpha1VolumeList = {
};

export class Metalk8sV1alpha1VolumeClient {
constructor(private customObjects: CustomObjectsApi) {}
constructor(public customObjects: CustomObjectsApi) {}
async getMetalk8sV1alpha1VolumeList(): Promise<
Result<Metalk8sV1alpha1VolumeList>
> {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ export type V1alpha1VolumeList = {
};

export class V1alpha1VolumeClient {
constructor(private customObjects: CustomObjectsApi) {}
constructor(public customObjects: CustomObjectsApi) {}
async getV1alpha1VolumeList(
namespace: string,
): Promise<Result<V1alpha1VolumeList>> {
Expand Down
2 changes: 1 addition & 1 deletion tools/crd-client-generator-js/src/generateClient.ts
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ export function generateClient(
${listType}
export class ${singleName}Client {
constructor(private customObjects: CustomObjectsApi) {}
constructor(public customObjects: CustomObjectsApi) {}
async get${listName}(${
isNamespacedScoped ? "namespace: string" : ""
}): Promise<Result<${listName}>> {
Expand Down
3 changes: 0 additions & 3 deletions ui/@mf-types/shell/apis.d.ts

This file was deleted.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

4 changes: 2 additions & 2 deletions ui/@mf-types/shell/node_modules/@scality/core-ui/package.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 61cc071

Please sign in to comment.