kubernetesjs 0.7.0 → 0.7.1
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/index.d.ts +3 -3
- package/package.json +3 -3
package/index.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { APIClient, APIClientRequestOpts } from "./client";
|
|
1
|
+
import { APIClient, APIClientOptions, APIClientRequestOpts } from "./client";
|
|
2
2
|
export interface MutatingWebhook {
|
|
3
3
|
admissionReviewVersions: string[];
|
|
4
4
|
clientConfig: WebhookClientConfig;
|
|
@@ -2732,7 +2732,7 @@ export interface WatchEvent {
|
|
|
2732
2732
|
export type RawExtension = {
|
|
2733
2733
|
[key: string]: unknown;
|
|
2734
2734
|
};
|
|
2735
|
-
export type IntOrString = string;
|
|
2735
|
+
export type IntOrString = string | number;
|
|
2736
2736
|
export interface Info {
|
|
2737
2737
|
buildDate: string;
|
|
2738
2738
|
compiler: string;
|
|
@@ -10680,7 +10680,7 @@ export interface GetServiceAccountIssuerOpenIDKeysetRequest {
|
|
|
10680
10680
|
export interface GetCodeVersionRequest {
|
|
10681
10681
|
}
|
|
10682
10682
|
export declare class KubernetesClient extends APIClient {
|
|
10683
|
-
constructor(options:
|
|
10683
|
+
constructor(options: APIClientOptions);
|
|
10684
10684
|
getSwaggerJSON(): Promise<unknown>;
|
|
10685
10685
|
getServiceAccountIssuerOpenIDConfiguration(params: GetServiceAccountIssuerOpenIDConfigurationRequest, opts?: APIClientRequestOpts): Promise<string>;
|
|
10686
10686
|
getCoreAPIVersions(params: GetCoreAPIVersionsRequest, opts?: APIClientRequestOpts): Promise<APIVersions>;
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "kubernetesjs",
|
|
3
|
-
"version": "0.7.
|
|
3
|
+
"version": "0.7.1",
|
|
4
4
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
5
5
|
"description": "Fully Typed Kubernetes",
|
|
6
6
|
"keywords": [
|
|
@@ -50,7 +50,7 @@
|
|
|
50
50
|
"test:deploy": "ts-node scripts/deploy.ts"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"schema-sdk": "^0.
|
|
53
|
+
"schema-sdk": "^0.12.0"
|
|
54
54
|
},
|
|
55
|
-
"gitHead": "
|
|
55
|
+
"gitHead": "c467853beb8f3c493df8a6292227c9f192bfa27e"
|
|
56
56
|
}
|