@rizom/ops 0.2.0-alpha.65 → 0.2.0-alpha.67
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/dist/brains-ops.js +131 -181
- package/dist/cert-bootstrap.d.ts +1 -1
- package/dist/deploy.js +3 -170
- package/dist/entries/deploy.d.ts +2 -2
- package/dist/index.js +112 -162
- package/dist/observed-status.d.ts +1 -1
- package/dist/origin-ca.d.ts +1 -1
- package/dist/run-command.d.ts +1 -1
- package/dist/schema.d.ts +6 -6
- package/dist/ssh-key-bootstrap.d.ts +1 -1
- package/package.json +2 -2
package/dist/origin-ca.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export { createOriginCertificateRequest, generateOriginKeyPair, issueCloudflareOriginCertificate, setCloudflareZoneSslStrict, type CloudflareOriginCaResult, type FetchLike, type OriginCertificateRequest, type OriginKeyPair, } from "@brains/
|
|
1
|
+
export { createOriginCertificateRequest, generateOriginKeyPair, issueCloudflareOriginCertificate, setCloudflareZoneSslStrict, type CloudflareOriginCaResult, type FetchLike, type OriginCertificateRequest, type OriginKeyPair, } from "@brains/deploy-support/origin-ca";
|
package/dist/run-command.d.ts
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import type { FetchLike } from "@brains/
|
|
1
|
+
import type { FetchLike } from "@brains/deploy-support/origin-ca";
|
|
2
2
|
import type { LoadPilotRegistryOptions } from "./load-registry";
|
|
3
3
|
import { type LookupHost } from "./observed-status";
|
|
4
4
|
import type { ParsedArgs } from "./parse-args";
|
package/dist/schema.d.ts
CHANGED
|
@@ -70,12 +70,12 @@ export declare const userSchema: z.ZodObject<{
|
|
|
70
70
|
url: z.ZodString;
|
|
71
71
|
label: z.ZodOptional<z.ZodString>;
|
|
72
72
|
}, "strict", z.ZodTypeAny, {
|
|
73
|
-
url: string;
|
|
74
73
|
platform: "github" | "instagram" | "linkedin" | "email" | "website";
|
|
74
|
+
url: string;
|
|
75
75
|
label?: string | undefined;
|
|
76
76
|
}, {
|
|
77
|
-
url: string;
|
|
78
77
|
platform: "github" | "instagram" | "linkedin" | "email" | "website";
|
|
78
|
+
url: string;
|
|
79
79
|
label?: string | undefined;
|
|
80
80
|
}>, "many">>;
|
|
81
81
|
}, "strict", z.ZodTypeAny, {
|
|
@@ -85,8 +85,8 @@ export declare const userSchema: z.ZodObject<{
|
|
|
85
85
|
description?: string | undefined;
|
|
86
86
|
story?: string | undefined;
|
|
87
87
|
socialLinks?: {
|
|
88
|
-
url: string;
|
|
89
88
|
platform: "github" | "instagram" | "linkedin" | "email" | "website";
|
|
89
|
+
url: string;
|
|
90
90
|
label?: string | undefined;
|
|
91
91
|
}[] | undefined;
|
|
92
92
|
}, {
|
|
@@ -96,8 +96,8 @@ export declare const userSchema: z.ZodObject<{
|
|
|
96
96
|
description?: string | undefined;
|
|
97
97
|
story?: string | undefined;
|
|
98
98
|
socialLinks?: {
|
|
99
|
-
url: string;
|
|
100
99
|
platform: "github" | "instagram" | "linkedin" | "email" | "website";
|
|
100
|
+
url: string;
|
|
101
101
|
label?: string | undefined;
|
|
102
102
|
}[] | undefined;
|
|
103
103
|
}>>;
|
|
@@ -117,8 +117,8 @@ export declare const userSchema: z.ZodObject<{
|
|
|
117
117
|
description?: string | undefined;
|
|
118
118
|
story?: string | undefined;
|
|
119
119
|
socialLinks?: {
|
|
120
|
-
url: string;
|
|
121
120
|
platform: "github" | "instagram" | "linkedin" | "email" | "website";
|
|
121
|
+
url: string;
|
|
122
122
|
label?: string | undefined;
|
|
123
123
|
}[] | undefined;
|
|
124
124
|
} | undefined;
|
|
@@ -138,8 +138,8 @@ export declare const userSchema: z.ZodObject<{
|
|
|
138
138
|
description?: string | undefined;
|
|
139
139
|
story?: string | undefined;
|
|
140
140
|
socialLinks?: {
|
|
141
|
-
url: string;
|
|
142
141
|
platform: "github" | "instagram" | "linkedin" | "email" | "website";
|
|
142
|
+
url: string;
|
|
143
143
|
label?: string | undefined;
|
|
144
144
|
}[] | undefined;
|
|
145
145
|
} | undefined;
|
package/package.json
CHANGED
|
@@ -4,7 +4,7 @@
|
|
|
4
4
|
"publishConfig": {
|
|
5
5
|
"access": "public"
|
|
6
6
|
},
|
|
7
|
-
"version": "0.2.0-alpha.
|
|
7
|
+
"version": "0.2.0-alpha.67",
|
|
8
8
|
"type": "module",
|
|
9
9
|
"exports": {
|
|
10
10
|
".": {
|
|
@@ -39,7 +39,7 @@
|
|
|
39
39
|
"age-encryption": "^0.3.0"
|
|
40
40
|
},
|
|
41
41
|
"devDependencies": {
|
|
42
|
-
"@brains/deploy-
|
|
42
|
+
"@brains/deploy-support": "workspace:*",
|
|
43
43
|
"@brains/eslint-config": "workspace:*",
|
|
44
44
|
"@brains/typescript-config": "workspace:*",
|
|
45
45
|
"@brains/utils": "workspace:*",
|