@awiki/dsh-plugin 0.3.3 → 0.3.4
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/README.md +37 -31
- package/README.zh.md +30 -27
- package/cordis.patch.yml +17 -0
- package/lib/client.js +1269 -272
- package/lib/client.js.map +1 -1
- package/lib/index.js +874 -314
- package/lib/provider.js +52 -16
- package/lib/{sdk-adapter-CDLTgHJA.mjs → sdk-adapter-BeJakxLP.mjs} +142 -4
- package/lib/typert.host.js +419 -89
- package/lib/typert.remote-client.d.ts +19 -3
- package/lib/typert.remote-client.d.ts.map +1 -1
- package/lib/typert.remote-client.js +419 -89
- package/lib/types/client/AwikiDevices.d.ts +28 -0
- package/lib/types/client/AwikiDevices.d.ts.map +1 -0
- package/lib/types/client/AwikiDevices.js +85 -0
- package/lib/types/client/AwikiDevices.js.map +1 -0
- package/lib/types/client/AwikiIdentityAccess.d.ts +6 -5
- package/lib/types/client/AwikiIdentityAccess.d.ts.map +1 -1
- package/lib/types/client/AwikiIdentityAccess.js +88 -27
- package/lib/types/client/AwikiIdentityAccess.js.map +1 -1
- package/lib/types/client/AwikiOverlay.d.ts.map +1 -1
- package/lib/types/client/AwikiOverlay.js +4 -3
- package/lib/types/client/AwikiOverlay.js.map +1 -1
- package/lib/types/client/controller.d.ts +20 -5
- package/lib/types/client/controller.d.ts.map +1 -1
- package/lib/types/client/controller.js +38 -7
- package/lib/types/client/controller.js.map +1 -1
- package/lib/types/client/index.d.ts.map +1 -1
- package/lib/types/client/index.js +8 -0
- package/lib/types/client/index.js.map +1 -1
- package/lib/types/client/slots.d.ts +10 -2
- package/lib/types/client/slots.d.ts.map +1 -1
- package/lib/types/index.d.ts +51 -10
- package/lib/types/index.d.ts.map +1 -1
- package/lib/types/index.js +675 -174
- package/lib/types/index.js.map +1 -1
- package/lib/types/listener-state.d.ts +5 -3
- package/lib/types/listener-state.d.ts.map +1 -1
- package/lib/types/listener-state.js +28 -13
- package/lib/types/listener-state.js.map +1 -1
- package/lib/types/listener.d.ts +9 -32
- package/lib/types/listener.d.ts.map +1 -1
- package/lib/types/listener.js +11 -127
- package/lib/types/listener.js.map +1 -1
- package/lib/types/provider-api.d.ts +96 -4
- package/lib/types/provider-api.d.ts.map +1 -1
- package/lib/types/provider.d.ts +7 -1
- package/lib/types/provider.d.ts.map +1 -1
- package/lib/types/provider.js +53 -15
- package/lib/types/provider.js.map +1 -1
- package/lib/types/realtime-supervisor.d.ts +43 -0
- package/lib/types/realtime-supervisor.d.ts.map +1 -0
- package/lib/types/realtime-supervisor.js +166 -0
- package/lib/types/realtime-supervisor.js.map +1 -0
- package/lib/types/sdk-adapter.d.ts +28 -2
- package/lib/types/sdk-adapter.d.ts.map +1 -1
- package/lib/types/sdk-adapter.js +132 -3
- package/lib/types/sdk-adapter.js.map +1 -1
- package/lib/types/types.d.ts +76 -6
- package/lib/types/types.d.ts.map +1 -1
- package/lib/types/types.js.map +1 -1
- package/package.json +18 -18
- package/lib/types/profile-state.d.ts +0 -11
- package/lib/types/profile-state.d.ts.map +0 -1
- package/lib/types/profile-state.js +0 -48
- package/lib/types/profile-state.js.map +0 -1
|
@@ -7,7 +7,7 @@ const _awiki_dsh_plugin_awiki_activateRecovery_parameter_0$schema = z.object({
|
|
|
7
7
|
const _awiki_dsh_plugin_awiki_activateRecovery_result$schema = z.union([z.object({
|
|
8
8
|
'ok': z.literal(false).readonly(),
|
|
9
9
|
'error': z.object({
|
|
10
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
10
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
11
11
|
'message': z.string().readonly(),
|
|
12
12
|
}).readonly(),
|
|
13
13
|
}), z.object({
|
|
@@ -28,13 +28,13 @@ const _awiki_dsh_plugin_awiki_activateRecovery_result$schema = z.union([z.object
|
|
|
28
28
|
})])
|
|
29
29
|
const _awiki_dsh_plugin_awiki_addGroupMember_parameter_0$schema = z.object({
|
|
30
30
|
'member': z.string().readonly(),
|
|
31
|
-
'role': z.union([z.literal("
|
|
31
|
+
'role': z.union([z.literal("member"), z.literal("admin")]).readonly().optional(),
|
|
32
32
|
'groupDid': z.intersection(z.string(), z.unknown()).readonly(),
|
|
33
33
|
})
|
|
34
34
|
const _awiki_dsh_plugin_awiki_addGroupMember_result$schema = z.union([z.object({
|
|
35
35
|
'ok': z.literal(false).readonly(),
|
|
36
36
|
'error': z.object({
|
|
37
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
37
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
38
38
|
'message': z.string().readonly(),
|
|
39
39
|
}).readonly(),
|
|
40
40
|
}), z.object({
|
|
@@ -44,13 +44,60 @@ const _awiki_dsh_plugin_awiki_addGroupMember_result$schema = z.union([z.object({
|
|
|
44
44
|
'handle': z.intersection(z.string(), z.unknown()).readonly().optional(),
|
|
45
45
|
}).readonly(),
|
|
46
46
|
})])
|
|
47
|
+
const _awiki_dsh_plugin_awiki_approveDeviceJoin_parameter_0$schema = z.object({
|
|
48
|
+
'enteredSas': z.string().readonly(),
|
|
49
|
+
'confirmation': z.string().readonly(),
|
|
50
|
+
'requestRef': z.string().readonly(),
|
|
51
|
+
})
|
|
52
|
+
const _awiki_dsh_plugin_awiki_approveDeviceJoin_result$schema = z.union([z.object({
|
|
53
|
+
'ok': z.literal(false).readonly(),
|
|
54
|
+
'error': z.object({
|
|
55
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
56
|
+
'message': z.string().readonly(),
|
|
57
|
+
}).readonly(),
|
|
58
|
+
}), z.object({
|
|
59
|
+
'ok': z.literal(true).readonly(),
|
|
60
|
+
'value': z.object({
|
|
61
|
+
'requestRef': z.string().readonly(),
|
|
62
|
+
'phase': z.union([z.literal("pending"), z.literal("verifying"), z.literal("sas-ready"), z.literal("authorized"), z.literal("cancelled"), z.literal("rejected"), z.literal("expired")]).readonly(),
|
|
63
|
+
'expiresAt': z.string().readonly(),
|
|
64
|
+
'sas': z.string().readonly().optional(),
|
|
65
|
+
}).readonly(),
|
|
66
|
+
})])
|
|
67
|
+
const _awiki_dsh_plugin_awiki_beginDeviceJoin_result$schema = z.union([z.object({
|
|
68
|
+
'ok': z.literal(false).readonly(),
|
|
69
|
+
'error': z.object({
|
|
70
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
71
|
+
'message': z.string().readonly(),
|
|
72
|
+
}).readonly(),
|
|
73
|
+
}), z.object({
|
|
74
|
+
'ok': z.literal(true).readonly(),
|
|
75
|
+
'value': z.object({
|
|
76
|
+
'phase': z.union([z.literal("pending"), z.literal("verifying"), z.literal("sas-ready"), z.literal("authorized"), z.literal("cancelled"), z.literal("rejected"), z.literal("expired")]).readonly(),
|
|
77
|
+
'expiresAt': z.string().readonly(),
|
|
78
|
+
'sas': z.string().readonly().optional(),
|
|
79
|
+
'completed': z.boolean().readonly(),
|
|
80
|
+
}).readonly(),
|
|
81
|
+
})])
|
|
82
|
+
const _awiki_dsh_plugin_awiki_cancelDeviceJoin_result$schema = z.union([z.object({
|
|
83
|
+
'ok': z.literal(false).readonly(),
|
|
84
|
+
'error': z.object({
|
|
85
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
86
|
+
'message': z.string().readonly(),
|
|
87
|
+
}).readonly(),
|
|
88
|
+
}), z.object({
|
|
89
|
+
'ok': z.literal(true).readonly(),
|
|
90
|
+
'value': z.object({
|
|
91
|
+
'completed': z.literal(true).readonly(),
|
|
92
|
+
}).readonly(),
|
|
93
|
+
})])
|
|
47
94
|
const _awiki_dsh_plugin_awiki_clearLocalData_parameter_0$schema = z.object({
|
|
48
95
|
'confirmation': z.string().readonly(),
|
|
49
96
|
})
|
|
50
97
|
const _awiki_dsh_plugin_awiki_clearLocalData_result$schema = z.union([z.object({
|
|
51
98
|
'ok': z.literal(false).readonly(),
|
|
52
99
|
'error': z.object({
|
|
53
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
100
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
54
101
|
'message': z.string().readonly(),
|
|
55
102
|
}).readonly(),
|
|
56
103
|
}), z.object({
|
|
@@ -66,7 +113,7 @@ const _awiki_dsh_plugin_awiki_createGroup_parameter_0$schema = z.object({
|
|
|
66
113
|
const _awiki_dsh_plugin_awiki_createGroup_result$schema = z.union([z.object({
|
|
67
114
|
'ok': z.literal(false).readonly(),
|
|
68
115
|
'error': z.object({
|
|
69
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
116
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
70
117
|
'message': z.string().readonly(),
|
|
71
118
|
}).readonly(),
|
|
72
119
|
}), z.object({
|
|
@@ -88,7 +135,7 @@ const _awiki_dsh_plugin_awiki_createGroup_result$schema = z.union([z.object({
|
|
|
88
135
|
'failedMembers': z.array(z.object({
|
|
89
136
|
'member': z.string().readonly(),
|
|
90
137
|
'error': z.object({
|
|
91
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
138
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
92
139
|
'message': z.string().readonly(),
|
|
93
140
|
}).readonly(),
|
|
94
141
|
})).readonly(),
|
|
@@ -100,7 +147,7 @@ const _awiki_dsh_plugin_awiki_discardRecovery_parameter_0$schema = z.object({
|
|
|
100
147
|
const _awiki_dsh_plugin_awiki_discardRecovery_result$schema = z.union([z.object({
|
|
101
148
|
'ok': z.literal(false).readonly(),
|
|
102
149
|
'error': z.object({
|
|
103
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
150
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
104
151
|
'message': z.string().readonly(),
|
|
105
152
|
}).readonly(),
|
|
106
153
|
}), z.object({
|
|
@@ -116,7 +163,7 @@ const _awiki_dsh_plugin_awiki_downloadAttachment_parameter_0$schema = z.object({
|
|
|
116
163
|
const _awiki_dsh_plugin_awiki_downloadAttachment_result$schema = z.union([z.object({
|
|
117
164
|
'ok': z.literal(false).readonly(),
|
|
118
165
|
'error': z.object({
|
|
119
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
166
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
120
167
|
'message': z.string().readonly(),
|
|
121
168
|
}).readonly(),
|
|
122
169
|
}), z.object({
|
|
@@ -135,7 +182,7 @@ const _awiki_dsh_plugin_awiki_downloadAttachment_result$schema = z.union([z.obje
|
|
|
135
182
|
const _awiki_dsh_plugin_awiki_getConfig_result$schema = z.union([z.object({
|
|
136
183
|
'ok': z.literal(false).readonly(),
|
|
137
184
|
'error': z.object({
|
|
138
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
185
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
139
186
|
'message': z.string().readonly(),
|
|
140
187
|
}).readonly(),
|
|
141
188
|
}), z.object({
|
|
@@ -143,14 +190,13 @@ const _awiki_dsh_plugin_awiki_getConfig_result$schema = z.union([z.object({
|
|
|
143
190
|
'value': z.object({
|
|
144
191
|
'pollIntervalMs': z.number().readonly(),
|
|
145
192
|
'attachmentMaxBytes': z.number().readonly(),
|
|
146
|
-
'
|
|
147
|
-
'legacySharedStateDetected': z.boolean().readonly().optional(),
|
|
193
|
+
'handleRecoveryPhoneEnabled': z.boolean().readonly(),
|
|
148
194
|
}).readonly(),
|
|
149
195
|
})])
|
|
150
196
|
const _awiki_dsh_plugin_awiki_getConversationPreferences_result$schema = z.union([z.object({
|
|
151
197
|
'ok': z.literal(false).readonly(),
|
|
152
198
|
'error': z.object({
|
|
153
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
199
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
154
200
|
'message': z.string().readonly(),
|
|
155
201
|
}).readonly(),
|
|
156
202
|
}), z.object({
|
|
@@ -181,13 +227,28 @@ const _awiki_dsh_plugin_awiki_getConversationPreferences_result$schema = z.union
|
|
|
181
227
|
'dismissedGroupRecoverySignature': z.string().readonly().optional(),
|
|
182
228
|
}).readonly(),
|
|
183
229
|
})])
|
|
230
|
+
const _awiki_dsh_plugin_awiki_getDeviceJoinStatus_result$schema = z.union([z.object({
|
|
231
|
+
'ok': z.literal(false).readonly(),
|
|
232
|
+
'error': z.object({
|
|
233
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
234
|
+
'message': z.string().readonly(),
|
|
235
|
+
}).readonly(),
|
|
236
|
+
}), z.object({
|
|
237
|
+
'ok': z.literal(true).readonly(),
|
|
238
|
+
'value': z.union([z.literal(null), z.object({
|
|
239
|
+
'phase': z.union([z.literal("pending"), z.literal("verifying"), z.literal("sas-ready"), z.literal("authorized"), z.literal("cancelled"), z.literal("rejected"), z.literal("expired")]).readonly(),
|
|
240
|
+
'expiresAt': z.string().readonly(),
|
|
241
|
+
'sas': z.string().readonly().optional(),
|
|
242
|
+
'completed': z.boolean().readonly(),
|
|
243
|
+
})]).readonly(),
|
|
244
|
+
})])
|
|
184
245
|
const _awiki_dsh_plugin_awiki_getGroup_parameter_0$schema = z.object({
|
|
185
246
|
'groupDid': z.intersection(z.string(), z.unknown()).readonly(),
|
|
186
247
|
})
|
|
187
248
|
const _awiki_dsh_plugin_awiki_getGroup_result$schema = z.union([z.object({
|
|
188
249
|
'ok': z.literal(false).readonly(),
|
|
189
250
|
'error': z.object({
|
|
190
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
251
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
191
252
|
'message': z.string().readonly(),
|
|
192
253
|
}).readonly(),
|
|
193
254
|
}), z.object({
|
|
@@ -210,7 +271,7 @@ const _awiki_dsh_plugin_awiki_getHistory_parameter_0$schema = z.object({
|
|
|
210
271
|
const _awiki_dsh_plugin_awiki_getHistory_result$schema = z.union([z.object({
|
|
211
272
|
'ok': z.literal(false).readonly(),
|
|
212
273
|
'error': z.object({
|
|
213
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
274
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
214
275
|
'message': z.string().readonly(),
|
|
215
276
|
}).readonly(),
|
|
216
277
|
}), z.object({
|
|
@@ -254,7 +315,7 @@ const _awiki_dsh_plugin_awiki_getHistory_result$schema = z.union([z.object({
|
|
|
254
315
|
const _awiki_dsh_plugin_awiki_getIdentity_result$schema = z.union([z.object({
|
|
255
316
|
'ok': z.literal(false).readonly(),
|
|
256
317
|
'error': z.object({
|
|
257
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
318
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
258
319
|
'message': z.string().readonly(),
|
|
259
320
|
}).readonly(),
|
|
260
321
|
}), z.object({
|
|
@@ -274,7 +335,7 @@ const _awiki_dsh_plugin_awiki_getLocalHistory_parameter_0$schema = z.object({
|
|
|
274
335
|
const _awiki_dsh_plugin_awiki_getLocalHistory_result$schema = z.union([z.object({
|
|
275
336
|
'ok': z.literal(false).readonly(),
|
|
276
337
|
'error': z.object({
|
|
277
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
338
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
278
339
|
'message': z.string().readonly(),
|
|
279
340
|
}).readonly(),
|
|
280
341
|
}), z.object({
|
|
@@ -318,7 +379,7 @@ const _awiki_dsh_plugin_awiki_getLocalHistory_result$schema = z.union([z.object(
|
|
|
318
379
|
const _awiki_dsh_plugin_awiki_getMailAccount_result$schema = z.union([z.object({
|
|
319
380
|
'ok': z.literal(false).readonly(),
|
|
320
381
|
'error': z.object({
|
|
321
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
382
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
322
383
|
'message': z.string().readonly(),
|
|
323
384
|
}).readonly(),
|
|
324
385
|
}), z.object({
|
|
@@ -332,7 +393,7 @@ const _awiki_dsh_plugin_awiki_getMailAccount_result$schema = z.union([z.object({
|
|
|
332
393
|
const _awiki_dsh_plugin_awiki_getProfile_result$schema = z.union([z.object({
|
|
333
394
|
'ok': z.literal(false).readonly(),
|
|
334
395
|
'error': z.object({
|
|
335
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
396
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
336
397
|
'message': z.string().readonly(),
|
|
337
398
|
}).readonly(),
|
|
338
399
|
}), z.object({
|
|
@@ -352,7 +413,7 @@ const _awiki_dsh_plugin_awiki_getRecoveryStatus_parameter_0$schema = z.object({
|
|
|
352
413
|
const _awiki_dsh_plugin_awiki_getRecoveryStatus_result$schema = z.union([z.object({
|
|
353
414
|
'ok': z.literal(false).readonly(),
|
|
354
415
|
'error': z.object({
|
|
355
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
416
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
356
417
|
'message': z.string().readonly(),
|
|
357
418
|
}).readonly(),
|
|
358
419
|
}), z.object({
|
|
@@ -374,7 +435,7 @@ const _awiki_dsh_plugin_awiki_getRecoveryStatus_result$schema = z.union([z.objec
|
|
|
374
435
|
const _awiki_dsh_plugin_awiki_getSession_result$schema = z.union([z.object({
|
|
375
436
|
'ok': z.literal(false).readonly(),
|
|
376
437
|
'error': z.object({
|
|
377
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
438
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
378
439
|
'message': z.string().readonly(),
|
|
379
440
|
}).readonly(),
|
|
380
441
|
}), z.object({
|
|
@@ -399,7 +460,7 @@ const _awiki_dsh_plugin_awiki_inspectIdentityAccess_parameter_0$schema = z.objec
|
|
|
399
460
|
const _awiki_dsh_plugin_awiki_inspectIdentityAccess_result$schema = z.union([z.object({
|
|
400
461
|
'ok': z.literal(false).readonly(),
|
|
401
462
|
'error': z.object({
|
|
402
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
463
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
403
464
|
'message': z.string().readonly(),
|
|
404
465
|
}).readonly(),
|
|
405
466
|
}), z.object({
|
|
@@ -415,7 +476,7 @@ const _awiki_dsh_plugin_awiki_joinGroup_parameter_0$schema = z.object({
|
|
|
415
476
|
const _awiki_dsh_plugin_awiki_joinGroup_result$schema = z.union([z.object({
|
|
416
477
|
'ok': z.literal(false).readonly(),
|
|
417
478
|
'error': z.object({
|
|
418
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
479
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
419
480
|
'message': z.string().readonly(),
|
|
420
481
|
}).readonly(),
|
|
421
482
|
}), z.object({
|
|
@@ -436,7 +497,7 @@ const _awiki_dsh_plugin_awiki_leaveGroup_parameter_0$schema = z.object({
|
|
|
436
497
|
const _awiki_dsh_plugin_awiki_leaveGroup_result$schema = z.union([z.object({
|
|
437
498
|
'ok': z.literal(false).readonly(),
|
|
438
499
|
'error': z.object({
|
|
439
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
500
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
440
501
|
'message': z.string().readonly(),
|
|
441
502
|
}).readonly(),
|
|
442
503
|
}), z.object({
|
|
@@ -452,7 +513,7 @@ const _awiki_dsh_plugin_awiki_listConversations_parameter_0$schema = z.union([z.
|
|
|
452
513
|
const _awiki_dsh_plugin_awiki_listConversations_result$schema = z.union([z.object({
|
|
453
514
|
'ok': z.literal(false).readonly(),
|
|
454
515
|
'error': z.object({
|
|
455
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
516
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
456
517
|
'message': z.string().readonly(),
|
|
457
518
|
}).readonly(),
|
|
458
519
|
}), z.object({
|
|
@@ -489,7 +550,7 @@ const _awiki_dsh_plugin_awiki_listGroupMembers_parameter_0$schema = z.object({
|
|
|
489
550
|
const _awiki_dsh_plugin_awiki_listGroupMembers_result$schema = z.union([z.object({
|
|
490
551
|
'ok': z.literal(false).readonly(),
|
|
491
552
|
'error': z.object({
|
|
492
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
553
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
493
554
|
'message': z.string().readonly(),
|
|
494
555
|
}).readonly(),
|
|
495
556
|
}), z.object({
|
|
@@ -524,7 +585,7 @@ const _awiki_dsh_plugin_awiki_listMailInbox_parameter_0$schema = z.union([z.unde
|
|
|
524
585
|
const _awiki_dsh_plugin_awiki_listMailInbox_result$schema = z.union([z.object({
|
|
525
586
|
'ok': z.literal(false).readonly(),
|
|
526
587
|
'error': z.object({
|
|
527
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
588
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
528
589
|
'message': z.string().readonly(),
|
|
529
590
|
}).readonly(),
|
|
530
591
|
}), z.object({
|
|
@@ -553,7 +614,7 @@ const _awiki_dsh_plugin_awiki_listMailInbox_result$schema = z.union([z.object({
|
|
|
553
614
|
const _awiki_dsh_plugin_awiki_login_result$schema = z.union([z.object({
|
|
554
615
|
'ok': z.literal(false).readonly(),
|
|
555
616
|
'error': z.object({
|
|
556
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
617
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
557
618
|
'message': z.string().readonly(),
|
|
558
619
|
}).readonly(),
|
|
559
620
|
}), z.object({
|
|
@@ -578,7 +639,7 @@ const _awiki_dsh_plugin_awiki_logout_parameter_0$schema = z.object({
|
|
|
578
639
|
const _awiki_dsh_plugin_awiki_logout_result$schema = z.union([z.object({
|
|
579
640
|
'ok': z.literal(false).readonly(),
|
|
580
641
|
'error': z.object({
|
|
581
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
642
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
582
643
|
'message': z.string().readonly(),
|
|
583
644
|
}).readonly(),
|
|
584
645
|
}), z.object({
|
|
@@ -603,7 +664,7 @@ const _awiki_dsh_plugin_awiki_markConversationRead_parameter_0$schema = z.object
|
|
|
603
664
|
const _awiki_dsh_plugin_awiki_markConversationRead_result$schema = z.union([z.object({
|
|
604
665
|
'ok': z.literal(false).readonly(),
|
|
605
666
|
'error': z.object({
|
|
606
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
667
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
607
668
|
'message': z.string().readonly(),
|
|
608
669
|
}).readonly(),
|
|
609
670
|
}), z.object({
|
|
@@ -616,7 +677,7 @@ const _awiki_dsh_plugin_awiki_markMailRead_parameter_0$schema = z.object({
|
|
|
616
677
|
const _awiki_dsh_plugin_awiki_markMailRead_result$schema = z.union([z.object({
|
|
617
678
|
'ok': z.literal(false).readonly(),
|
|
618
679
|
'error': z.object({
|
|
619
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
680
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
620
681
|
'message': z.string().readonly(),
|
|
621
682
|
}).readonly(),
|
|
622
683
|
}), z.object({
|
|
@@ -633,7 +694,7 @@ const _awiki_dsh_plugin_awiki_prepareRecovery_parameter_0$schema = z.object({
|
|
|
633
694
|
const _awiki_dsh_plugin_awiki_prepareRecovery_result$schema = z.union([z.object({
|
|
634
695
|
'ok': z.literal(false).readonly(),
|
|
635
696
|
'error': z.object({
|
|
636
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
697
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
637
698
|
'message': z.string().readonly(),
|
|
638
699
|
}).readonly(),
|
|
639
700
|
}), z.object({
|
|
@@ -658,7 +719,7 @@ const _awiki_dsh_plugin_awiki_readMail_parameter_0$schema = z.object({
|
|
|
658
719
|
const _awiki_dsh_plugin_awiki_readMail_result$schema = z.union([z.object({
|
|
659
720
|
'ok': z.literal(false).readonly(),
|
|
660
721
|
'error': z.object({
|
|
661
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
722
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
662
723
|
'message': z.string().readonly(),
|
|
663
724
|
}).readonly(),
|
|
664
725
|
}), z.object({
|
|
@@ -691,6 +752,36 @@ const _awiki_dsh_plugin_awiki_readMail_result$schema = z.union([z.object({
|
|
|
691
752
|
})).readonly(),
|
|
692
753
|
}).readonly(),
|
|
693
754
|
})])
|
|
755
|
+
const _awiki_dsh_plugin_awiki_refreshDeviceManagement_result$schema = z.union([z.object({
|
|
756
|
+
'ok': z.literal(false).readonly(),
|
|
757
|
+
'error': z.object({
|
|
758
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
759
|
+
'message': z.string().readonly(),
|
|
760
|
+
}).readonly(),
|
|
761
|
+
}), z.object({
|
|
762
|
+
'ok': z.literal(true).readonly(),
|
|
763
|
+
'value': z.object({
|
|
764
|
+
'canManage': z.boolean().readonly(),
|
|
765
|
+
'role': z.union([z.literal("member"), z.literal("admin")]).readonly().optional(),
|
|
766
|
+
'readiness': z.union([z.literal("legacy"), z.literal("member_ready"), z.literal("admin_awaiting_root"), z.literal("admin_ready"), z.literal("blocked")]).readonly(),
|
|
767
|
+
'devices': z.array(z.object({
|
|
768
|
+
'deviceRef': z.string().readonly(),
|
|
769
|
+
'status': z.union([z.literal("active"), z.literal("revoked")]).readonly(),
|
|
770
|
+
'role': z.union([z.literal("member"), z.literal("admin")]).readonly(),
|
|
771
|
+
'managementReady': z.boolean().readonly(),
|
|
772
|
+
'isCurrent': z.boolean().readonly(),
|
|
773
|
+
})).readonly(),
|
|
774
|
+
'requests': z.array(z.object({
|
|
775
|
+
'requestRef': z.string().readonly(),
|
|
776
|
+
'candidateKeyFingerprint': z.string().readonly(),
|
|
777
|
+
'issuedAt': z.string().readonly(),
|
|
778
|
+
'expiresAt': z.string().readonly(),
|
|
779
|
+
'state': z.union([z.literal("pending"), z.literal("verifying"), z.literal("sas-ready"), z.literal("authorized"), z.literal("cancelled"), z.literal("rejected"), z.literal("expired")]).readonly(),
|
|
780
|
+
'claimedByCurrentDevice': z.boolean().readonly(),
|
|
781
|
+
'canStartVerification': z.boolean().readonly(),
|
|
782
|
+
})).readonly(),
|
|
783
|
+
}).readonly(),
|
|
784
|
+
})])
|
|
694
785
|
const _awiki_dsh_plugin_awiki_registerIdentity_parameter_0$schema = z.object({
|
|
695
786
|
'handle': z.string().readonly(),
|
|
696
787
|
'phone': z.string().readonly(),
|
|
@@ -699,17 +790,44 @@ const _awiki_dsh_plugin_awiki_registerIdentity_parameter_0$schema = z.object({
|
|
|
699
790
|
const _awiki_dsh_plugin_awiki_registerIdentity_result$schema = z.union([z.object({
|
|
700
791
|
'ok': z.literal(false).readonly(),
|
|
701
792
|
'error': z.object({
|
|
702
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
793
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
703
794
|
'message': z.string().readonly(),
|
|
704
795
|
}).readonly(),
|
|
705
796
|
}), z.object({
|
|
706
797
|
'ok': z.literal(true).readonly(),
|
|
707
|
-
'value': z.object({
|
|
798
|
+
'value': z.union([z.object({
|
|
799
|
+
'status': z.literal("registered").readonly(),
|
|
800
|
+
'identity': z.object({
|
|
708
801
|
'handle': z.intersection(z.string(), z.unknown()).readonly(),
|
|
709
802
|
'did': z.intersection(z.string(), z.unknown()).readonly(),
|
|
710
803
|
'displayName': z.string().readonly().optional(),
|
|
711
804
|
'registeredAt': z.number().readonly(),
|
|
712
805
|
}).readonly(),
|
|
806
|
+
}), z.object({
|
|
807
|
+
'status': z.literal("join-required").readonly(),
|
|
808
|
+
'fullHandle': z.intersection(z.string(), z.unknown()).readonly(),
|
|
809
|
+
'mode': z.union([z.literal("ordinary"), z.literal("handle-recovery-rebind")]).readonly(),
|
|
810
|
+
'requiresUserPresence': z.boolean().readonly(),
|
|
811
|
+
})]).readonly(),
|
|
812
|
+
})])
|
|
813
|
+
const _awiki_dsh_plugin_awiki_rejectDeviceJoin_parameter_0$schema = z.object({
|
|
814
|
+
'reason': z.union([z.literal("user_rejected"), z.literal("sas_mismatch")]).readonly(),
|
|
815
|
+
'requestRef': z.string().readonly(),
|
|
816
|
+
})
|
|
817
|
+
const _awiki_dsh_plugin_awiki_rejectDeviceJoin_result$schema = z.union([z.object({
|
|
818
|
+
'ok': z.literal(false).readonly(),
|
|
819
|
+
'error': z.object({
|
|
820
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
821
|
+
'message': z.string().readonly(),
|
|
822
|
+
}).readonly(),
|
|
823
|
+
}), z.object({
|
|
824
|
+
'ok': z.literal(true).readonly(),
|
|
825
|
+
'value': z.object({
|
|
826
|
+
'requestRef': z.string().readonly(),
|
|
827
|
+
'phase': z.union([z.literal("pending"), z.literal("verifying"), z.literal("sas-ready"), z.literal("authorized"), z.literal("cancelled"), z.literal("rejected"), z.literal("expired")]).readonly(),
|
|
828
|
+
'expiresAt': z.string().readonly(),
|
|
829
|
+
'sas': z.string().readonly().optional(),
|
|
830
|
+
}).readonly(),
|
|
713
831
|
})])
|
|
714
832
|
const _awiki_dsh_plugin_awiki_removeGroupMember_parameter_0$schema = z.object({
|
|
715
833
|
'member': z.string().readonly(),
|
|
@@ -718,7 +836,7 @@ const _awiki_dsh_plugin_awiki_removeGroupMember_parameter_0$schema = z.object({
|
|
|
718
836
|
const _awiki_dsh_plugin_awiki_removeGroupMember_result$schema = z.union([z.object({
|
|
719
837
|
'ok': z.literal(false).readonly(),
|
|
720
838
|
'error': z.object({
|
|
721
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
839
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
722
840
|
'message': z.string().readonly(),
|
|
723
841
|
}).readonly(),
|
|
724
842
|
}), z.object({
|
|
@@ -734,7 +852,7 @@ const _awiki_dsh_plugin_awiki_resolvePeer_parameter_0$schema = z.object({
|
|
|
734
852
|
const _awiki_dsh_plugin_awiki_resolvePeer_result$schema = z.union([z.object({
|
|
735
853
|
'ok': z.literal(false).readonly(),
|
|
736
854
|
'error': z.object({
|
|
737
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
855
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
738
856
|
'message': z.string().readonly(),
|
|
739
857
|
}).readonly(),
|
|
740
858
|
}), z.object({
|
|
@@ -749,7 +867,7 @@ const _awiki_dsh_plugin_awiki_resolvePeer_result$schema = z.union([z.object({
|
|
|
749
867
|
const _awiki_dsh_plugin_awiki_resumeGroupRebindRecovery_result$schema = z.union([z.object({
|
|
750
868
|
'ok': z.literal(false).readonly(),
|
|
751
869
|
'error': z.object({
|
|
752
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
870
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
753
871
|
'message': z.string().readonly(),
|
|
754
872
|
}).readonly(),
|
|
755
873
|
}), z.object({
|
|
@@ -771,7 +889,7 @@ const _awiki_dsh_plugin_awiki_resumeRecovery_parameter_0$schema = z.object({
|
|
|
771
889
|
const _awiki_dsh_plugin_awiki_resumeRecovery_result$schema = z.union([z.object({
|
|
772
890
|
'ok': z.literal(false).readonly(),
|
|
773
891
|
'error': z.object({
|
|
774
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
892
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
775
893
|
'message': z.string().readonly(),
|
|
776
894
|
}).readonly(),
|
|
777
895
|
}), z.object({
|
|
@@ -790,6 +908,40 @@ const _awiki_dsh_plugin_awiki_resumeRecovery_result$schema = z.union([z.object({
|
|
|
790
908
|
'unsupportedDidOnlyGroupCount': z.number().readonly(),
|
|
791
909
|
}).readonly(),
|
|
792
910
|
})])
|
|
911
|
+
const _awiki_dsh_plugin_awiki_revokeDevice_parameter_0$schema = z.object({
|
|
912
|
+
'deviceRef': z.string().readonly(),
|
|
913
|
+
'confirmation': z.string().readonly(),
|
|
914
|
+
})
|
|
915
|
+
const _awiki_dsh_plugin_awiki_revokeDevice_result$schema = z.union([z.object({
|
|
916
|
+
'ok': z.literal(false).readonly(),
|
|
917
|
+
'error': z.object({
|
|
918
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
919
|
+
'message': z.string().readonly(),
|
|
920
|
+
}).readonly(),
|
|
921
|
+
}), z.object({
|
|
922
|
+
'ok': z.literal(true).readonly(),
|
|
923
|
+
'value': z.object({
|
|
924
|
+
'canManage': z.boolean().readonly(),
|
|
925
|
+
'role': z.union([z.literal("member"), z.literal("admin")]).readonly().optional(),
|
|
926
|
+
'readiness': z.union([z.literal("legacy"), z.literal("member_ready"), z.literal("admin_awaiting_root"), z.literal("admin_ready"), z.literal("blocked")]).readonly(),
|
|
927
|
+
'devices': z.array(z.object({
|
|
928
|
+
'deviceRef': z.string().readonly(),
|
|
929
|
+
'status': z.union([z.literal("active"), z.literal("revoked")]).readonly(),
|
|
930
|
+
'role': z.union([z.literal("member"), z.literal("admin")]).readonly(),
|
|
931
|
+
'managementReady': z.boolean().readonly(),
|
|
932
|
+
'isCurrent': z.boolean().readonly(),
|
|
933
|
+
})).readonly(),
|
|
934
|
+
'requests': z.array(z.object({
|
|
935
|
+
'requestRef': z.string().readonly(),
|
|
936
|
+
'candidateKeyFingerprint': z.string().readonly(),
|
|
937
|
+
'issuedAt': z.string().readonly(),
|
|
938
|
+
'expiresAt': z.string().readonly(),
|
|
939
|
+
'state': z.union([z.literal("pending"), z.literal("verifying"), z.literal("sas-ready"), z.literal("authorized"), z.literal("cancelled"), z.literal("rejected"), z.literal("expired")]).readonly(),
|
|
940
|
+
'claimedByCurrentDevice': z.boolean().readonly(),
|
|
941
|
+
'canStartVerification': z.boolean().readonly(),
|
|
942
|
+
})).readonly(),
|
|
943
|
+
}).readonly(),
|
|
944
|
+
})])
|
|
793
945
|
const _awiki_dsh_plugin_awiki_sendAttachment_parameter_0$schema = z.object({
|
|
794
946
|
'target': z.union([z.object({
|
|
795
947
|
'kind': z.literal("direct").readonly(),
|
|
@@ -807,7 +959,7 @@ const _awiki_dsh_plugin_awiki_sendAttachment_parameter_0$schema = z.object({
|
|
|
807
959
|
const _awiki_dsh_plugin_awiki_sendAttachment_result$schema = z.union([z.object({
|
|
808
960
|
'ok': z.literal(false).readonly(),
|
|
809
961
|
'error': z.object({
|
|
810
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
962
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
811
963
|
'message': z.string().readonly(),
|
|
812
964
|
}).readonly(),
|
|
813
965
|
}), z.object({
|
|
@@ -853,7 +1005,7 @@ const _awiki_dsh_plugin_awiki_sendMail_parameter_0$schema = z.object({
|
|
|
853
1005
|
const _awiki_dsh_plugin_awiki_sendMail_result$schema = z.union([z.object({
|
|
854
1006
|
'ok': z.literal(false).readonly(),
|
|
855
1007
|
'error': z.object({
|
|
856
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
1008
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
857
1009
|
'message': z.string().readonly(),
|
|
858
1010
|
}).readonly(),
|
|
859
1011
|
}), z.object({
|
|
@@ -871,7 +1023,7 @@ const _awiki_dsh_plugin_awiki_sendRecoveryOtp_parameter_0$schema = z.object({
|
|
|
871
1023
|
const _awiki_dsh_plugin_awiki_sendRecoveryOtp_result$schema = z.union([z.object({
|
|
872
1024
|
'ok': z.literal(false).readonly(),
|
|
873
1025
|
'error': z.object({
|
|
874
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
1026
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
875
1027
|
'message': z.string().readonly(),
|
|
876
1028
|
}).readonly(),
|
|
877
1029
|
}), z.object({
|
|
@@ -890,7 +1042,7 @@ const _awiki_dsh_plugin_awiki_sendRegistrationOtp_parameter_0$schema = z.object(
|
|
|
890
1042
|
const _awiki_dsh_plugin_awiki_sendRegistrationOtp_result$schema = z.union([z.object({
|
|
891
1043
|
'ok': z.literal(false).readonly(),
|
|
892
1044
|
'error': z.object({
|
|
893
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
1045
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
894
1046
|
'message': z.string().readonly(),
|
|
895
1047
|
}).readonly(),
|
|
896
1048
|
}), z.object({
|
|
@@ -921,7 +1073,7 @@ const _awiki_dsh_plugin_awiki_sendText_parameter_0$schema = z.object({
|
|
|
921
1073
|
const _awiki_dsh_plugin_awiki_sendText_result$schema = z.union([z.object({
|
|
922
1074
|
'ok': z.literal(false).readonly(),
|
|
923
1075
|
'error': z.object({
|
|
924
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
1076
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
925
1077
|
'message': z.string().readonly(),
|
|
926
1078
|
}).readonly(),
|
|
927
1079
|
}), z.object({
|
|
@@ -958,6 +1110,24 @@ const _awiki_dsh_plugin_awiki_sendText_result$schema = z.union([z.object({
|
|
|
958
1110
|
})]).readonly(),
|
|
959
1111
|
}).readonly(),
|
|
960
1112
|
})])
|
|
1113
|
+
const _awiki_dsh_plugin_awiki_startDeviceJoinVerification_parameter_0$schema = z.object({
|
|
1114
|
+
'requestRef': z.string().readonly(),
|
|
1115
|
+
})
|
|
1116
|
+
const _awiki_dsh_plugin_awiki_startDeviceJoinVerification_result$schema = z.union([z.object({
|
|
1117
|
+
'ok': z.literal(false).readonly(),
|
|
1118
|
+
'error': z.object({
|
|
1119
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
1120
|
+
'message': z.string().readonly(),
|
|
1121
|
+
}).readonly(),
|
|
1122
|
+
}), z.object({
|
|
1123
|
+
'ok': z.literal(true).readonly(),
|
|
1124
|
+
'value': z.object({
|
|
1125
|
+
'requestRef': z.string().readonly(),
|
|
1126
|
+
'phase': z.union([z.literal("pending"), z.literal("verifying"), z.literal("sas-ready"), z.literal("authorized"), z.literal("cancelled"), z.literal("rejected"), z.literal("expired")]).readonly(),
|
|
1127
|
+
'expiresAt': z.string().readonly(),
|
|
1128
|
+
'sas': z.string().readonly().optional(),
|
|
1129
|
+
}).readonly(),
|
|
1130
|
+
})])
|
|
961
1131
|
const _awiki_dsh_plugin_awiki_summarizeConversation_parameter_0$schema = z.object({
|
|
962
1132
|
'conversationId': z.intersection(z.string(), z.unknown()).readonly(),
|
|
963
1133
|
'unreadCountAtOpen': z.number().readonly().optional(),
|
|
@@ -965,7 +1135,7 @@ const _awiki_dsh_plugin_awiki_summarizeConversation_parameter_0$schema = z.objec
|
|
|
965
1135
|
const _awiki_dsh_plugin_awiki_summarizeConversation_result$schema = z.union([z.object({
|
|
966
1136
|
'ok': z.literal(false).readonly(),
|
|
967
1137
|
'error': z.object({
|
|
968
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
1138
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
969
1139
|
'message': z.string().readonly(),
|
|
970
1140
|
}).readonly(),
|
|
971
1141
|
}), z.object({
|
|
@@ -1019,7 +1189,7 @@ const _awiki_dsh_plugin_awiki_updateConversationPreference_parameter_0$schema =
|
|
|
1019
1189
|
const _awiki_dsh_plugin_awiki_updateConversationPreference_result$schema = z.union([z.object({
|
|
1020
1190
|
'ok': z.literal(false).readonly(),
|
|
1021
1191
|
'error': z.object({
|
|
1022
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
1192
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
1023
1193
|
'message': z.string().readonly(),
|
|
1024
1194
|
}).readonly(),
|
|
1025
1195
|
}), z.object({
|
|
@@ -1056,7 +1226,7 @@ const _awiki_dsh_plugin_awiki_updateDisplayName_parameter_0$schema = z.object({
|
|
|
1056
1226
|
const _awiki_dsh_plugin_awiki_updateDisplayName_result$schema = z.union([z.object({
|
|
1057
1227
|
'ok': z.literal(false).readonly(),
|
|
1058
1228
|
'error': z.object({
|
|
1059
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
1229
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
1060
1230
|
'message': z.string().readonly(),
|
|
1061
1231
|
}).readonly(),
|
|
1062
1232
|
}), z.object({
|
|
@@ -1076,7 +1246,7 @@ const _awiki_dsh_plugin_awiki_updateProfile_parameter_0$schema = z.object({
|
|
|
1076
1246
|
const _awiki_dsh_plugin_awiki_updateProfile_result$schema = z.union([z.object({
|
|
1077
1247
|
'ok': z.literal(false).readonly(),
|
|
1078
1248
|
'error': z.object({
|
|
1079
|
-
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("
|
|
1249
|
+
'code': z.union([z.literal("not-registered"), z.literal("signed-out"), z.literal("already-registered"), z.literal("invalid-request"), z.literal("invalid-otp"), z.literal("challenge-expired"), z.literal("handle-unavailable"), z.literal("not-found"), z.literal("forbidden"), z.literal("identity-recovery-required"), z.literal("conflict"), z.literal("rate-limited"), z.literal("group-membership-required"), z.literal("group-identity-stale"), z.literal("attachment-too-large"), z.literal("summary-unavailable"), z.literal("summary-timeout"), z.literal("summary-cancelled"), z.literal("summary-invalid-output"), z.literal("summary-failed"), z.literal("delivery-unknown"), z.literal("network"), z.literal("remote")]).readonly(),
|
|
1080
1250
|
'message': z.string().readonly(),
|
|
1081
1251
|
}).readonly(),
|
|
1082
1252
|
}), z.object({
|
|
@@ -1117,7 +1287,7 @@ export const TYPERT_REMOTE = {
|
|
|
1117
1287
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1118
1288
|
schema: _awiki_dsh_plugin_awiki_activateRecovery_result$schema,
|
|
1119
1289
|
},
|
|
1120
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1290
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":159,"column":9},
|
|
1121
1291
|
},
|
|
1122
1292
|
{
|
|
1123
1293
|
id: '@awiki/dsh-plugin#awiki/addGroupMember',
|
|
@@ -1142,7 +1312,62 @@ export const TYPERT_REMOTE = {
|
|
|
1142
1312
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1143
1313
|
schema: _awiki_dsh_plugin_awiki_addGroupMember_result$schema,
|
|
1144
1314
|
},
|
|
1145
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1315
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":189,"column":3},
|
|
1316
|
+
},
|
|
1317
|
+
{
|
|
1318
|
+
id: '@awiki/dsh-plugin#awiki/approveDeviceJoin',
|
|
1319
|
+
service: 'awiki',
|
|
1320
|
+
namespace: 'awiki',
|
|
1321
|
+
method: 'approveDeviceJoin',
|
|
1322
|
+
invocation: { kind: 'direct' },
|
|
1323
|
+
parameters: [
|
|
1324
|
+
{
|
|
1325
|
+
name: 'request',
|
|
1326
|
+
wire: 'request',
|
|
1327
|
+
source: 'json',
|
|
1328
|
+
codec: {
|
|
1329
|
+
mode: 'strict',
|
|
1330
|
+
typeSymbol: '@awiki/dsh-plugin/types#AwikiApproveDeviceJoinRequest',
|
|
1331
|
+
schema: _awiki_dsh_plugin_awiki_approveDeviceJoin_parameter_0$schema,
|
|
1332
|
+
},
|
|
1333
|
+
},
|
|
1334
|
+
],
|
|
1335
|
+
result: {
|
|
1336
|
+
mode: 'strict',
|
|
1337
|
+
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1338
|
+
schema: _awiki_dsh_plugin_awiki_approveDeviceJoin_result$schema,
|
|
1339
|
+
},
|
|
1340
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":129,"column":9},
|
|
1341
|
+
},
|
|
1342
|
+
{
|
|
1343
|
+
id: '@awiki/dsh-plugin#awiki/beginDeviceJoin',
|
|
1344
|
+
service: 'awiki',
|
|
1345
|
+
namespace: 'awiki',
|
|
1346
|
+
method: 'beginDeviceJoin',
|
|
1347
|
+
invocation: { kind: 'direct' },
|
|
1348
|
+
parameters: [
|
|
1349
|
+
],
|
|
1350
|
+
result: {
|
|
1351
|
+
mode: 'strict',
|
|
1352
|
+
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1353
|
+
schema: _awiki_dsh_plugin_awiki_beginDeviceJoin_result$schema,
|
|
1354
|
+
},
|
|
1355
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":112,"column":9},
|
|
1356
|
+
},
|
|
1357
|
+
{
|
|
1358
|
+
id: '@awiki/dsh-plugin#awiki/cancelDeviceJoin',
|
|
1359
|
+
service: 'awiki',
|
|
1360
|
+
namespace: 'awiki',
|
|
1361
|
+
method: 'cancelDeviceJoin',
|
|
1362
|
+
invocation: { kind: 'direct' },
|
|
1363
|
+
parameters: [
|
|
1364
|
+
],
|
|
1365
|
+
result: {
|
|
1366
|
+
mode: 'strict',
|
|
1367
|
+
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1368
|
+
schema: _awiki_dsh_plugin_awiki_cancelDeviceJoin_result$schema,
|
|
1369
|
+
},
|
|
1370
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":118,"column":9},
|
|
1146
1371
|
},
|
|
1147
1372
|
{
|
|
1148
1373
|
id: '@awiki/dsh-plugin#awiki/clearLocalData',
|
|
@@ -1167,7 +1392,7 @@ export const TYPERT_REMOTE = {
|
|
|
1167
1392
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1168
1393
|
schema: _awiki_dsh_plugin_awiki_clearLocalData_result$schema,
|
|
1169
1394
|
},
|
|
1170
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1395
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":247,"column":3},
|
|
1171
1396
|
},
|
|
1172
1397
|
{
|
|
1173
1398
|
id: '@awiki/dsh-plugin#awiki/createGroup',
|
|
@@ -1192,7 +1417,7 @@ export const TYPERT_REMOTE = {
|
|
|
1192
1417
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1193
1418
|
schema: _awiki_dsh_plugin_awiki_createGroup_result$schema,
|
|
1194
1419
|
},
|
|
1195
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1420
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":174,"column":9},
|
|
1196
1421
|
},
|
|
1197
1422
|
{
|
|
1198
1423
|
id: '@awiki/dsh-plugin#awiki/discardRecovery',
|
|
@@ -1217,7 +1442,7 @@ export const TYPERT_REMOTE = {
|
|
|
1217
1442
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1218
1443
|
schema: _awiki_dsh_plugin_awiki_discardRecovery_result$schema,
|
|
1219
1444
|
},
|
|
1220
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1445
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":168,"column":9},
|
|
1221
1446
|
},
|
|
1222
1447
|
{
|
|
1223
1448
|
id: '@awiki/dsh-plugin#awiki/downloadAttachment',
|
|
@@ -1242,7 +1467,7 @@ export const TYPERT_REMOTE = {
|
|
|
1242
1467
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1243
1468
|
schema: _awiki_dsh_plugin_awiki_downloadAttachment_result$schema,
|
|
1244
1469
|
},
|
|
1245
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1470
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":229,"column":9},
|
|
1246
1471
|
},
|
|
1247
1472
|
{
|
|
1248
1473
|
id: '@awiki/dsh-plugin#awiki/getConfig',
|
|
@@ -1257,7 +1482,7 @@ export const TYPERT_REMOTE = {
|
|
|
1257
1482
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1258
1483
|
schema: _awiki_dsh_plugin_awiki_getConfig_result$schema,
|
|
1259
1484
|
},
|
|
1260
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1485
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":86,"column":9},
|
|
1261
1486
|
},
|
|
1262
1487
|
{
|
|
1263
1488
|
id: '@awiki/dsh-plugin#awiki/getConversationPreferences',
|
|
@@ -1272,7 +1497,22 @@ export const TYPERT_REMOTE = {
|
|
|
1272
1497
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1273
1498
|
schema: _awiki_dsh_plugin_awiki_getConversationPreferences_result$schema,
|
|
1274
1499
|
},
|
|
1275
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1500
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":198,"column":3},
|
|
1501
|
+
},
|
|
1502
|
+
{
|
|
1503
|
+
id: '@awiki/dsh-plugin#awiki/getDeviceJoinStatus',
|
|
1504
|
+
service: 'awiki',
|
|
1505
|
+
namespace: 'awiki',
|
|
1506
|
+
method: 'getDeviceJoinStatus',
|
|
1507
|
+
invocation: { kind: 'direct' },
|
|
1508
|
+
parameters: [
|
|
1509
|
+
],
|
|
1510
|
+
result: {
|
|
1511
|
+
mode: 'strict',
|
|
1512
|
+
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1513
|
+
schema: _awiki_dsh_plugin_awiki_getDeviceJoinStatus_result$schema,
|
|
1514
|
+
},
|
|
1515
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":115,"column":9},
|
|
1276
1516
|
},
|
|
1277
1517
|
{
|
|
1278
1518
|
id: '@awiki/dsh-plugin#awiki/getGroup',
|
|
@@ -1297,7 +1537,7 @@ export const TYPERT_REMOTE = {
|
|
|
1297
1537
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1298
1538
|
schema: _awiki_dsh_plugin_awiki_getGroup_result$schema,
|
|
1299
1539
|
},
|
|
1300
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1540
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":177,"column":3},
|
|
1301
1541
|
},
|
|
1302
1542
|
{
|
|
1303
1543
|
id: '@awiki/dsh-plugin#awiki/getHistory',
|
|
@@ -1322,7 +1562,7 @@ export const TYPERT_REMOTE = {
|
|
|
1322
1562
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1323
1563
|
schema: _awiki_dsh_plugin_awiki_getHistory_result$schema,
|
|
1324
1564
|
},
|
|
1325
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1565
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":209,"column":3},
|
|
1326
1566
|
},
|
|
1327
1567
|
{
|
|
1328
1568
|
id: '@awiki/dsh-plugin#awiki/getIdentity',
|
|
@@ -1337,7 +1577,7 @@ export const TYPERT_REMOTE = {
|
|
|
1337
1577
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1338
1578
|
schema: _awiki_dsh_plugin_awiki_getIdentity_result$schema,
|
|
1339
1579
|
},
|
|
1340
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1580
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":89,"column":9},
|
|
1341
1581
|
},
|
|
1342
1582
|
{
|
|
1343
1583
|
id: '@awiki/dsh-plugin#awiki/getLocalHistory',
|
|
@@ -1362,7 +1602,7 @@ export const TYPERT_REMOTE = {
|
|
|
1362
1602
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1363
1603
|
schema: _awiki_dsh_plugin_awiki_getLocalHistory_result$schema,
|
|
1364
1604
|
},
|
|
1365
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1605
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":212,"column":3},
|
|
1366
1606
|
},
|
|
1367
1607
|
{
|
|
1368
1608
|
id: '@awiki/dsh-plugin#awiki/getMailAccount',
|
|
@@ -1377,7 +1617,7 @@ export const TYPERT_REMOTE = {
|
|
|
1377
1617
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1378
1618
|
schema: _awiki_dsh_plugin_awiki_getMailAccount_result$schema,
|
|
1379
1619
|
},
|
|
1380
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1620
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":232,"column":3},
|
|
1381
1621
|
},
|
|
1382
1622
|
{
|
|
1383
1623
|
id: '@awiki/dsh-plugin#awiki/getProfile',
|
|
@@ -1392,7 +1632,7 @@ export const TYPERT_REMOTE = {
|
|
|
1392
1632
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1393
1633
|
schema: _awiki_dsh_plugin_awiki_getProfile_result$schema,
|
|
1394
1634
|
},
|
|
1395
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1635
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":147,"column":3},
|
|
1396
1636
|
},
|
|
1397
1637
|
{
|
|
1398
1638
|
id: '@awiki/dsh-plugin#awiki/getRecoveryStatus',
|
|
@@ -1417,7 +1657,7 @@ export const TYPERT_REMOTE = {
|
|
|
1417
1657
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1418
1658
|
schema: _awiki_dsh_plugin_awiki_getRecoveryStatus_result$schema,
|
|
1419
1659
|
},
|
|
1420
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1660
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":162,"column":9},
|
|
1421
1661
|
},
|
|
1422
1662
|
{
|
|
1423
1663
|
id: '@awiki/dsh-plugin#awiki/getSession',
|
|
@@ -1432,7 +1672,7 @@ export const TYPERT_REMOTE = {
|
|
|
1432
1672
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1433
1673
|
schema: _awiki_dsh_plugin_awiki_getSession_result$schema,
|
|
1434
1674
|
},
|
|
1435
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1675
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":92,"column":9},
|
|
1436
1676
|
},
|
|
1437
1677
|
{
|
|
1438
1678
|
id: '@awiki/dsh-plugin#awiki/inspectIdentityAccess',
|
|
@@ -1457,7 +1697,7 @@ export const TYPERT_REMOTE = {
|
|
|
1457
1697
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1458
1698
|
schema: _awiki_dsh_plugin_awiki_inspectIdentityAccess_result$schema,
|
|
1459
1699
|
},
|
|
1460
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1700
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":101,"column":9},
|
|
1461
1701
|
},
|
|
1462
1702
|
{
|
|
1463
1703
|
id: '@awiki/dsh-plugin#awiki/joinGroup',
|
|
@@ -1482,7 +1722,7 @@ export const TYPERT_REMOTE = {
|
|
|
1482
1722
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1483
1723
|
schema: _awiki_dsh_plugin_awiki_joinGroup_result$schema,
|
|
1484
1724
|
},
|
|
1485
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1725
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":180,"column":3},
|
|
1486
1726
|
},
|
|
1487
1727
|
{
|
|
1488
1728
|
id: '@awiki/dsh-plugin#awiki/leaveGroup',
|
|
@@ -1507,7 +1747,7 @@ export const TYPERT_REMOTE = {
|
|
|
1507
1747
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1508
1748
|
schema: _awiki_dsh_plugin_awiki_leaveGroup_result$schema,
|
|
1509
1749
|
},
|
|
1510
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1750
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":183,"column":9},
|
|
1511
1751
|
},
|
|
1512
1752
|
{
|
|
1513
1753
|
id: '@awiki/dsh-plugin#awiki/listConversations',
|
|
@@ -1533,7 +1773,7 @@ export const TYPERT_REMOTE = {
|
|
|
1533
1773
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1534
1774
|
schema: _awiki_dsh_plugin_awiki_listConversations_result$schema,
|
|
1535
1775
|
},
|
|
1536
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1776
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":206,"column":3},
|
|
1537
1777
|
},
|
|
1538
1778
|
{
|
|
1539
1779
|
id: '@awiki/dsh-plugin#awiki/listGroupMembers',
|
|
@@ -1558,7 +1798,7 @@ export const TYPERT_REMOTE = {
|
|
|
1558
1798
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1559
1799
|
schema: _awiki_dsh_plugin_awiki_listGroupMembers_result$schema,
|
|
1560
1800
|
},
|
|
1561
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1801
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":186,"column":3},
|
|
1562
1802
|
},
|
|
1563
1803
|
{
|
|
1564
1804
|
id: '@awiki/dsh-plugin#awiki/listMailInbox',
|
|
@@ -1584,7 +1824,7 @@ export const TYPERT_REMOTE = {
|
|
|
1584
1824
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1585
1825
|
schema: _awiki_dsh_plugin_awiki_listMailInbox_result$schema,
|
|
1586
1826
|
},
|
|
1587
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1827
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":235,"column":9},
|
|
1588
1828
|
},
|
|
1589
1829
|
{
|
|
1590
1830
|
id: '@awiki/dsh-plugin#awiki/login',
|
|
@@ -1599,7 +1839,7 @@ export const TYPERT_REMOTE = {
|
|
|
1599
1839
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1600
1840
|
schema: _awiki_dsh_plugin_awiki_login_result$schema,
|
|
1601
1841
|
},
|
|
1602
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1842
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":98,"column":3},
|
|
1603
1843
|
},
|
|
1604
1844
|
{
|
|
1605
1845
|
id: '@awiki/dsh-plugin#awiki/logout',
|
|
@@ -1624,7 +1864,7 @@ export const TYPERT_REMOTE = {
|
|
|
1624
1864
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1625
1865
|
schema: _awiki_dsh_plugin_awiki_logout_result$schema,
|
|
1626
1866
|
},
|
|
1627
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1867
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":95,"column":3},
|
|
1628
1868
|
},
|
|
1629
1869
|
{
|
|
1630
1870
|
id: '@awiki/dsh-plugin#awiki/markConversationRead',
|
|
@@ -1649,7 +1889,7 @@ export const TYPERT_REMOTE = {
|
|
|
1649
1889
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1650
1890
|
schema: _awiki_dsh_plugin_awiki_markConversationRead_result$schema,
|
|
1651
1891
|
},
|
|
1652
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1892
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":220,"column":3},
|
|
1653
1893
|
},
|
|
1654
1894
|
{
|
|
1655
1895
|
id: '@awiki/dsh-plugin#awiki/markMailRead',
|
|
@@ -1674,7 +1914,7 @@ export const TYPERT_REMOTE = {
|
|
|
1674
1914
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1675
1915
|
schema: _awiki_dsh_plugin_awiki_markMailRead_result$schema,
|
|
1676
1916
|
},
|
|
1677
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1917
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":241,"column":3},
|
|
1678
1918
|
},
|
|
1679
1919
|
{
|
|
1680
1920
|
id: '@awiki/dsh-plugin#awiki/prepareRecovery',
|
|
@@ -1699,7 +1939,7 @@ export const TYPERT_REMOTE = {
|
|
|
1699
1939
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1700
1940
|
schema: _awiki_dsh_plugin_awiki_prepareRecovery_result$schema,
|
|
1701
1941
|
},
|
|
1702
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1942
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":156,"column":3},
|
|
1703
1943
|
},
|
|
1704
1944
|
{
|
|
1705
1945
|
id: '@awiki/dsh-plugin#awiki/readMail',
|
|
@@ -1724,7 +1964,22 @@ export const TYPERT_REMOTE = {
|
|
|
1724
1964
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1725
1965
|
schema: _awiki_dsh_plugin_awiki_readMail_result$schema,
|
|
1726
1966
|
},
|
|
1727
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1967
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":238,"column":9},
|
|
1968
|
+
},
|
|
1969
|
+
{
|
|
1970
|
+
id: '@awiki/dsh-plugin#awiki/refreshDeviceManagement',
|
|
1971
|
+
service: 'awiki',
|
|
1972
|
+
namespace: 'awiki',
|
|
1973
|
+
method: 'refreshDeviceManagement',
|
|
1974
|
+
invocation: { kind: 'direct' },
|
|
1975
|
+
parameters: [
|
|
1976
|
+
],
|
|
1977
|
+
result: {
|
|
1978
|
+
mode: 'strict',
|
|
1979
|
+
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1980
|
+
schema: _awiki_dsh_plugin_awiki_refreshDeviceManagement_result$schema,
|
|
1981
|
+
},
|
|
1982
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":121,"column":3},
|
|
1728
1983
|
},
|
|
1729
1984
|
{
|
|
1730
1985
|
id: '@awiki/dsh-plugin#awiki/registerIdentity',
|
|
@@ -1749,7 +2004,32 @@ export const TYPERT_REMOTE = {
|
|
|
1749
2004
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1750
2005
|
schema: _awiki_dsh_plugin_awiki_registerIdentity_result$schema,
|
|
1751
2006
|
},
|
|
1752
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2007
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":109,"column":9},
|
|
2008
|
+
},
|
|
2009
|
+
{
|
|
2010
|
+
id: '@awiki/dsh-plugin#awiki/rejectDeviceJoin',
|
|
2011
|
+
service: 'awiki',
|
|
2012
|
+
namespace: 'awiki',
|
|
2013
|
+
method: 'rejectDeviceJoin',
|
|
2014
|
+
invocation: { kind: 'direct' },
|
|
2015
|
+
parameters: [
|
|
2016
|
+
{
|
|
2017
|
+
name: 'request',
|
|
2018
|
+
wire: 'request',
|
|
2019
|
+
source: 'json',
|
|
2020
|
+
codec: {
|
|
2021
|
+
mode: 'strict',
|
|
2022
|
+
typeSymbol: '@awiki/dsh-plugin/types#AwikiRejectDeviceJoinRequest',
|
|
2023
|
+
schema: _awiki_dsh_plugin_awiki_rejectDeviceJoin_parameter_0$schema,
|
|
2024
|
+
},
|
|
2025
|
+
},
|
|
2026
|
+
],
|
|
2027
|
+
result: {
|
|
2028
|
+
mode: 'strict',
|
|
2029
|
+
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2030
|
+
schema: _awiki_dsh_plugin_awiki_rejectDeviceJoin_result$schema,
|
|
2031
|
+
},
|
|
2032
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":134,"column":9},
|
|
1753
2033
|
},
|
|
1754
2034
|
{
|
|
1755
2035
|
id: '@awiki/dsh-plugin#awiki/removeGroupMember',
|
|
@@ -1774,7 +2054,7 @@ export const TYPERT_REMOTE = {
|
|
|
1774
2054
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1775
2055
|
schema: _awiki_dsh_plugin_awiki_removeGroupMember_result$schema,
|
|
1776
2056
|
},
|
|
1777
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2057
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":192,"column":3},
|
|
1778
2058
|
},
|
|
1779
2059
|
{
|
|
1780
2060
|
id: '@awiki/dsh-plugin#awiki/resolvePeer',
|
|
@@ -1799,7 +2079,7 @@ export const TYPERT_REMOTE = {
|
|
|
1799
2079
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1800
2080
|
schema: _awiki_dsh_plugin_awiki_resolvePeer_result$schema,
|
|
1801
2081
|
},
|
|
1802
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2082
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":171,"column":3},
|
|
1803
2083
|
},
|
|
1804
2084
|
{
|
|
1805
2085
|
id: '@awiki/dsh-plugin#awiki/resumeGroupRebindRecovery',
|
|
@@ -1814,7 +2094,7 @@ export const TYPERT_REMOTE = {
|
|
|
1814
2094
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1815
2095
|
schema: _awiki_dsh_plugin_awiki_resumeGroupRebindRecovery_result$schema,
|
|
1816
2096
|
},
|
|
1817
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2097
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":195,"column":9},
|
|
1818
2098
|
},
|
|
1819
2099
|
{
|
|
1820
2100
|
id: '@awiki/dsh-plugin#awiki/resumeRecovery',
|
|
@@ -1839,7 +2119,32 @@ export const TYPERT_REMOTE = {
|
|
|
1839
2119
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1840
2120
|
schema: _awiki_dsh_plugin_awiki_resumeRecovery_result$schema,
|
|
1841
2121
|
},
|
|
1842
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2122
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":165,"column":9},
|
|
2123
|
+
},
|
|
2124
|
+
{
|
|
2125
|
+
id: '@awiki/dsh-plugin#awiki/revokeDevice',
|
|
2126
|
+
service: 'awiki',
|
|
2127
|
+
namespace: 'awiki',
|
|
2128
|
+
method: 'revokeDevice',
|
|
2129
|
+
invocation: { kind: 'direct' },
|
|
2130
|
+
parameters: [
|
|
2131
|
+
{
|
|
2132
|
+
name: 'request',
|
|
2133
|
+
wire: 'request',
|
|
2134
|
+
source: 'json',
|
|
2135
|
+
codec: {
|
|
2136
|
+
mode: 'strict',
|
|
2137
|
+
typeSymbol: '@awiki/dsh-plugin/types#AwikiRevokeDeviceRequest',
|
|
2138
|
+
schema: _awiki_dsh_plugin_awiki_revokeDevice_parameter_0$schema,
|
|
2139
|
+
},
|
|
2140
|
+
},
|
|
2141
|
+
],
|
|
2142
|
+
result: {
|
|
2143
|
+
mode: 'strict',
|
|
2144
|
+
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2145
|
+
schema: _awiki_dsh_plugin_awiki_revokeDevice_result$schema,
|
|
2146
|
+
},
|
|
2147
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":139,"column":9},
|
|
1843
2148
|
},
|
|
1844
2149
|
{
|
|
1845
2150
|
id: '@awiki/dsh-plugin#awiki/sendAttachment',
|
|
@@ -1864,7 +2169,7 @@ export const TYPERT_REMOTE = {
|
|
|
1864
2169
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1865
2170
|
schema: _awiki_dsh_plugin_awiki_sendAttachment_result$schema,
|
|
1866
2171
|
},
|
|
1867
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2172
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":226,"column":9},
|
|
1868
2173
|
},
|
|
1869
2174
|
{
|
|
1870
2175
|
id: '@awiki/dsh-plugin#awiki/sendMail',
|
|
@@ -1889,7 +2194,7 @@ export const TYPERT_REMOTE = {
|
|
|
1889
2194
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1890
2195
|
schema: _awiki_dsh_plugin_awiki_sendMail_result$schema,
|
|
1891
2196
|
},
|
|
1892
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2197
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":244,"column":9},
|
|
1893
2198
|
},
|
|
1894
2199
|
{
|
|
1895
2200
|
id: '@awiki/dsh-plugin#awiki/sendRecoveryOtp',
|
|
@@ -1914,7 +2219,7 @@ export const TYPERT_REMOTE = {
|
|
|
1914
2219
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1915
2220
|
schema: _awiki_dsh_plugin_awiki_sendRecoveryOtp_result$schema,
|
|
1916
2221
|
},
|
|
1917
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2222
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":153,"column":3},
|
|
1918
2223
|
},
|
|
1919
2224
|
{
|
|
1920
2225
|
id: '@awiki/dsh-plugin#awiki/sendRegistrationOtp',
|
|
@@ -1939,7 +2244,7 @@ export const TYPERT_REMOTE = {
|
|
|
1939
2244
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1940
2245
|
schema: _awiki_dsh_plugin_awiki_sendRegistrationOtp_result$schema,
|
|
1941
2246
|
},
|
|
1942
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2247
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":106,"column":9},
|
|
1943
2248
|
},
|
|
1944
2249
|
{
|
|
1945
2250
|
id: '@awiki/dsh-plugin#awiki/sendText',
|
|
@@ -1964,7 +2269,32 @@ export const TYPERT_REMOTE = {
|
|
|
1964
2269
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1965
2270
|
schema: _awiki_dsh_plugin_awiki_sendText_result$schema,
|
|
1966
2271
|
},
|
|
1967
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2272
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":223,"column":3},
|
|
2273
|
+
},
|
|
2274
|
+
{
|
|
2275
|
+
id: '@awiki/dsh-plugin#awiki/startDeviceJoinVerification',
|
|
2276
|
+
service: 'awiki',
|
|
2277
|
+
namespace: 'awiki',
|
|
2278
|
+
method: 'startDeviceJoinVerification',
|
|
2279
|
+
invocation: { kind: 'direct' },
|
|
2280
|
+
parameters: [
|
|
2281
|
+
{
|
|
2282
|
+
name: 'request',
|
|
2283
|
+
wire: 'request',
|
|
2284
|
+
source: 'json',
|
|
2285
|
+
codec: {
|
|
2286
|
+
mode: 'strict',
|
|
2287
|
+
typeSymbol: '@awiki/dsh-plugin/types#AwikiRequestRefInput',
|
|
2288
|
+
schema: _awiki_dsh_plugin_awiki_startDeviceJoinVerification_parameter_0$schema,
|
|
2289
|
+
},
|
|
2290
|
+
},
|
|
2291
|
+
],
|
|
2292
|
+
result: {
|
|
2293
|
+
mode: 'strict',
|
|
2294
|
+
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2295
|
+
schema: _awiki_dsh_plugin_awiki_startDeviceJoinVerification_result$schema,
|
|
2296
|
+
},
|
|
2297
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":124,"column":9},
|
|
1968
2298
|
},
|
|
1969
2299
|
{
|
|
1970
2300
|
id: '@awiki/dsh-plugin#awiki/summarizeConversation',
|
|
@@ -1989,7 +2319,7 @@ export const TYPERT_REMOTE = {
|
|
|
1989
2319
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1990
2320
|
schema: _awiki_dsh_plugin_awiki_summarizeConversation_result$schema,
|
|
1991
2321
|
},
|
|
1992
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2322
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":215,"column":9},
|
|
1993
2323
|
},
|
|
1994
2324
|
{
|
|
1995
2325
|
id: '@awiki/dsh-plugin#awiki/updateConversationPreference',
|
|
@@ -2014,7 +2344,7 @@ export const TYPERT_REMOTE = {
|
|
|
2014
2344
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2015
2345
|
schema: _awiki_dsh_plugin_awiki_updateConversationPreference_result$schema,
|
|
2016
2346
|
},
|
|
2017
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2347
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":201,"column":3},
|
|
2018
2348
|
},
|
|
2019
2349
|
{
|
|
2020
2350
|
id: '@awiki/dsh-plugin#awiki/updateDisplayName',
|
|
@@ -2039,7 +2369,7 @@ export const TYPERT_REMOTE = {
|
|
|
2039
2369
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2040
2370
|
schema: _awiki_dsh_plugin_awiki_updateDisplayName_result$schema,
|
|
2041
2371
|
},
|
|
2042
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2372
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":144,"column":9},
|
|
2043
2373
|
},
|
|
2044
2374
|
{
|
|
2045
2375
|
id: '@awiki/dsh-plugin#awiki/updateProfile',
|
|
@@ -2064,7 +2394,7 @@ export const TYPERT_REMOTE = {
|
|
|
2064
2394
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2065
2395
|
schema: _awiki_dsh_plugin_awiki_updateProfile_result$schema,
|
|
2066
2396
|
},
|
|
2067
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2397
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":150,"column":3},
|
|
2068
2398
|
},
|
|
2069
2399
|
],
|
|
2070
2400
|
}
|