@rizom/ops 0.2.0-alpha.127 → 0.2.0-alpha.129
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 +33 -33
- package/dist/index.js +38 -38
- package/dist/load-registry.d.ts +4 -0
- package/dist/schema.d.ts +13 -0
- package/package.json +1 -1
package/dist/load-registry.d.ts
CHANGED
|
@@ -35,6 +35,9 @@ export interface ResolvedSetupDelivery {
|
|
|
35
35
|
export interface ResolvedAtprotoConfig {
|
|
36
36
|
identifier: string;
|
|
37
37
|
}
|
|
38
|
+
export interface ResolvedPlaybooksConfig {
|
|
39
|
+
onboarding?: boolean | undefined;
|
|
40
|
+
}
|
|
38
41
|
export interface ResolvedUserIdentity {
|
|
39
42
|
handle: string;
|
|
40
43
|
cohort: string;
|
|
@@ -49,6 +52,7 @@ export interface ResolvedUserIdentity {
|
|
|
49
52
|
effectiveGitSyncToken: string;
|
|
50
53
|
setup?: ResolvedSetupDelivery;
|
|
51
54
|
atproto?: ResolvedAtprotoConfig;
|
|
55
|
+
playbooks?: ResolvedPlaybooksConfig;
|
|
52
56
|
anchorProfile: ResolvedAnchorProfile;
|
|
53
57
|
snapshotStatus: SnapshotStatus;
|
|
54
58
|
}
|
package/dist/schema.d.ts
CHANGED
|
@@ -72,6 +72,13 @@ export declare const userSchema: z.ZodObject<{
|
|
|
72
72
|
}, {
|
|
73
73
|
identifier: string;
|
|
74
74
|
}>>;
|
|
75
|
+
playbooks: z.ZodOptional<z.ZodObject<{
|
|
76
|
+
onboarding: z.ZodOptional<z.ZodBoolean>;
|
|
77
|
+
}, "strict", z.ZodTypeAny, {
|
|
78
|
+
onboarding?: boolean | undefined;
|
|
79
|
+
}, {
|
|
80
|
+
onboarding?: boolean | undefined;
|
|
81
|
+
}>>;
|
|
75
82
|
anchorProfile: z.ZodOptional<z.ZodObject<{
|
|
76
83
|
name: z.ZodOptional<z.ZodString>;
|
|
77
84
|
description: z.ZodOptional<z.ZodString>;
|
|
@@ -129,6 +136,9 @@ export declare const userSchema: z.ZodObject<{
|
|
|
129
136
|
atproto?: {
|
|
130
137
|
identifier: string;
|
|
131
138
|
} | undefined;
|
|
139
|
+
playbooks?: {
|
|
140
|
+
onboarding?: boolean | undefined;
|
|
141
|
+
} | undefined;
|
|
132
142
|
anchorProfile?: {
|
|
133
143
|
name?: string | undefined;
|
|
134
144
|
email?: string | undefined;
|
|
@@ -156,6 +166,9 @@ export declare const userSchema: z.ZodObject<{
|
|
|
156
166
|
atproto?: {
|
|
157
167
|
identifier: string;
|
|
158
168
|
} | undefined;
|
|
169
|
+
playbooks?: {
|
|
170
|
+
onboarding?: boolean | undefined;
|
|
171
|
+
} | undefined;
|
|
159
172
|
anchorProfile?: {
|
|
160
173
|
name?: string | undefined;
|
|
161
174
|
email?: string | undefined;
|