@awiki/dsh-plugin 0.3.4 → 0.3.5
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 +32 -38
- package/README.zh.md +28 -31
- package/cordis.patch.yml +0 -17
- package/lib/client.js +269 -1266
- package/lib/client.js.map +1 -1
- package/lib/index.js +316 -922
- package/lib/provider.js +16 -52
- package/lib/{sdk-adapter-BeJakxLP.mjs → sdk-adapter-CDLTgHJA.mjs} +4 -142
- package/lib/typert.host.js +89 -419
- package/lib/typert.remote-client.d.ts +3 -19
- package/lib/typert.remote-client.d.ts.map +1 -1
- package/lib/typert.remote-client.js +89 -419
- package/lib/types/client/AwikiIdentityAccess.d.ts +5 -6
- package/lib/types/client/AwikiIdentityAccess.d.ts.map +1 -1
- package/lib/types/client/AwikiIdentityAccess.js +27 -88
- 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 +3 -4
- package/lib/types/client/AwikiOverlay.js.map +1 -1
- package/lib/types/client/controller.d.ts +5 -20
- package/lib/types/client/controller.d.ts.map +1 -1
- package/lib/types/client/controller.js +7 -38
- 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 +0 -8
- package/lib/types/client/index.js.map +1 -1
- package/lib/types/client/slots.d.ts +2 -10
- package/lib/types/client/slots.d.ts.map +1 -1
- package/lib/types/index.d.ts +11 -54
- package/lib/types/index.d.ts.map +1 -1
- package/lib/types/index.js +176 -735
- package/lib/types/index.js.map +1 -1
- package/lib/types/listener-state.d.ts +3 -5
- package/lib/types/listener-state.d.ts.map +1 -1
- package/lib/types/listener-state.js +13 -28
- package/lib/types/listener-state.js.map +1 -1
- package/lib/types/listener.d.ts +32 -9
- package/lib/types/listener.d.ts.map +1 -1
- package/lib/types/listener.js +127 -11
- package/lib/types/listener.js.map +1 -1
- package/lib/types/profile-state.d.ts +11 -0
- package/lib/types/profile-state.d.ts.map +1 -0
- package/lib/types/profile-state.js +48 -0
- package/lib/types/profile-state.js.map +1 -0
- package/lib/types/provider-api.d.ts +4 -96
- package/lib/types/provider-api.d.ts.map +1 -1
- package/lib/types/provider.d.ts +1 -7
- package/lib/types/provider.d.ts.map +1 -1
- package/lib/types/provider.js +15 -53
- package/lib/types/provider.js.map +1 -1
- package/lib/types/sdk-adapter.d.ts +2 -28
- package/lib/types/sdk-adapter.d.ts.map +1 -1
- package/lib/types/sdk-adapter.js +3 -132
- package/lib/types/sdk-adapter.js.map +1 -1
- package/lib/types/types.d.ts +6 -76
- 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/client/AwikiDevices.d.ts +0 -28
- package/lib/types/client/AwikiDevices.d.ts.map +0 -1
- package/lib/types/client/AwikiDevices.js +0 -85
- package/lib/types/client/AwikiDevices.js.map +0 -1
- package/lib/types/realtime-supervisor.d.ts +0 -43
- package/lib/types/realtime-supervisor.d.ts.map +0 -1
- package/lib/types/realtime-supervisor.js +0 -166
- package/lib/types/realtime-supervisor.js.map +0 -1
package/lib/typert.host.js
CHANGED
|
@@ -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("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(),
|
|
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("state-in-use"), 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("admin"), z.literal("member")]).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("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(),
|
|
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("state-in-use"), 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,60 +44,13 @@ 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
|
-
})])
|
|
94
47
|
const _awiki_dsh_plugin_awiki_clearLocalData_parameter_0$schema = z.object({
|
|
95
48
|
'confirmation': z.string().readonly(),
|
|
96
49
|
})
|
|
97
50
|
const _awiki_dsh_plugin_awiki_clearLocalData_result$schema = z.union([z.object({
|
|
98
51
|
'ok': z.literal(false).readonly(),
|
|
99
52
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
101
54
|
'message': z.string().readonly(),
|
|
102
55
|
}).readonly(),
|
|
103
56
|
}), z.object({
|
|
@@ -113,7 +66,7 @@ const _awiki_dsh_plugin_awiki_createGroup_parameter_0$schema = z.object({
|
|
|
113
66
|
const _awiki_dsh_plugin_awiki_createGroup_result$schema = z.union([z.object({
|
|
114
67
|
'ok': z.literal(false).readonly(),
|
|
115
68
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
117
70
|
'message': z.string().readonly(),
|
|
118
71
|
}).readonly(),
|
|
119
72
|
}), z.object({
|
|
@@ -135,7 +88,7 @@ const _awiki_dsh_plugin_awiki_createGroup_result$schema = z.union([z.object({
|
|
|
135
88
|
'failedMembers': z.array(z.object({
|
|
136
89
|
'member': z.string().readonly(),
|
|
137
90
|
'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("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(),
|
|
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("state-in-use"), 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
92
|
'message': z.string().readonly(),
|
|
140
93
|
}).readonly(),
|
|
141
94
|
})).readonly(),
|
|
@@ -147,7 +100,7 @@ const _awiki_dsh_plugin_awiki_discardRecovery_parameter_0$schema = z.object({
|
|
|
147
100
|
const _awiki_dsh_plugin_awiki_discardRecovery_result$schema = z.union([z.object({
|
|
148
101
|
'ok': z.literal(false).readonly(),
|
|
149
102
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
151
104
|
'message': z.string().readonly(),
|
|
152
105
|
}).readonly(),
|
|
153
106
|
}), z.object({
|
|
@@ -163,7 +116,7 @@ const _awiki_dsh_plugin_awiki_downloadAttachment_parameter_0$schema = z.object({
|
|
|
163
116
|
const _awiki_dsh_plugin_awiki_downloadAttachment_result$schema = z.union([z.object({
|
|
164
117
|
'ok': z.literal(false).readonly(),
|
|
165
118
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
167
120
|
'message': z.string().readonly(),
|
|
168
121
|
}).readonly(),
|
|
169
122
|
}), z.object({
|
|
@@ -182,7 +135,7 @@ const _awiki_dsh_plugin_awiki_downloadAttachment_result$schema = z.union([z.obje
|
|
|
182
135
|
const _awiki_dsh_plugin_awiki_getConfig_result$schema = z.union([z.object({
|
|
183
136
|
'ok': z.literal(false).readonly(),
|
|
184
137
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
186
139
|
'message': z.string().readonly(),
|
|
187
140
|
}).readonly(),
|
|
188
141
|
}), z.object({
|
|
@@ -190,13 +143,14 @@ const _awiki_dsh_plugin_awiki_getConfig_result$schema = z.union([z.object({
|
|
|
190
143
|
'value': z.object({
|
|
191
144
|
'pollIntervalMs': z.number().readonly(),
|
|
192
145
|
'attachmentMaxBytes': z.number().readonly(),
|
|
193
|
-
'
|
|
146
|
+
'profileName': z.string().readonly().optional(),
|
|
147
|
+
'legacySharedStateDetected': z.boolean().readonly().optional(),
|
|
194
148
|
}).readonly(),
|
|
195
149
|
})])
|
|
196
150
|
const _awiki_dsh_plugin_awiki_getConversationPreferences_result$schema = z.union([z.object({
|
|
197
151
|
'ok': z.literal(false).readonly(),
|
|
198
152
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
200
154
|
'message': z.string().readonly(),
|
|
201
155
|
}).readonly(),
|
|
202
156
|
}), z.object({
|
|
@@ -227,28 +181,13 @@ const _awiki_dsh_plugin_awiki_getConversationPreferences_result$schema = z.union
|
|
|
227
181
|
'dismissedGroupRecoverySignature': z.string().readonly().optional(),
|
|
228
182
|
}).readonly(),
|
|
229
183
|
})])
|
|
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
|
-
})])
|
|
245
184
|
const _awiki_dsh_plugin_awiki_getGroup_parameter_0$schema = z.object({
|
|
246
185
|
'groupDid': z.intersection(z.string(), z.unknown()).readonly(),
|
|
247
186
|
})
|
|
248
187
|
const _awiki_dsh_plugin_awiki_getGroup_result$schema = z.union([z.object({
|
|
249
188
|
'ok': z.literal(false).readonly(),
|
|
250
189
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
252
191
|
'message': z.string().readonly(),
|
|
253
192
|
}).readonly(),
|
|
254
193
|
}), z.object({
|
|
@@ -271,7 +210,7 @@ const _awiki_dsh_plugin_awiki_getHistory_parameter_0$schema = z.object({
|
|
|
271
210
|
const _awiki_dsh_plugin_awiki_getHistory_result$schema = z.union([z.object({
|
|
272
211
|
'ok': z.literal(false).readonly(),
|
|
273
212
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
275
214
|
'message': z.string().readonly(),
|
|
276
215
|
}).readonly(),
|
|
277
216
|
}), z.object({
|
|
@@ -315,7 +254,7 @@ const _awiki_dsh_plugin_awiki_getHistory_result$schema = z.union([z.object({
|
|
|
315
254
|
const _awiki_dsh_plugin_awiki_getIdentity_result$schema = z.union([z.object({
|
|
316
255
|
'ok': z.literal(false).readonly(),
|
|
317
256
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
319
258
|
'message': z.string().readonly(),
|
|
320
259
|
}).readonly(),
|
|
321
260
|
}), z.object({
|
|
@@ -335,7 +274,7 @@ const _awiki_dsh_plugin_awiki_getLocalHistory_parameter_0$schema = z.object({
|
|
|
335
274
|
const _awiki_dsh_plugin_awiki_getLocalHistory_result$schema = z.union([z.object({
|
|
336
275
|
'ok': z.literal(false).readonly(),
|
|
337
276
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
339
278
|
'message': z.string().readonly(),
|
|
340
279
|
}).readonly(),
|
|
341
280
|
}), z.object({
|
|
@@ -379,7 +318,7 @@ const _awiki_dsh_plugin_awiki_getLocalHistory_result$schema = z.union([z.object(
|
|
|
379
318
|
const _awiki_dsh_plugin_awiki_getMailAccount_result$schema = z.union([z.object({
|
|
380
319
|
'ok': z.literal(false).readonly(),
|
|
381
320
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
383
322
|
'message': z.string().readonly(),
|
|
384
323
|
}).readonly(),
|
|
385
324
|
}), z.object({
|
|
@@ -393,7 +332,7 @@ const _awiki_dsh_plugin_awiki_getMailAccount_result$schema = z.union([z.object({
|
|
|
393
332
|
const _awiki_dsh_plugin_awiki_getProfile_result$schema = z.union([z.object({
|
|
394
333
|
'ok': z.literal(false).readonly(),
|
|
395
334
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
397
336
|
'message': z.string().readonly(),
|
|
398
337
|
}).readonly(),
|
|
399
338
|
}), z.object({
|
|
@@ -413,7 +352,7 @@ const _awiki_dsh_plugin_awiki_getRecoveryStatus_parameter_0$schema = z.object({
|
|
|
413
352
|
const _awiki_dsh_plugin_awiki_getRecoveryStatus_result$schema = z.union([z.object({
|
|
414
353
|
'ok': z.literal(false).readonly(),
|
|
415
354
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
417
356
|
'message': z.string().readonly(),
|
|
418
357
|
}).readonly(),
|
|
419
358
|
}), z.object({
|
|
@@ -435,7 +374,7 @@ const _awiki_dsh_plugin_awiki_getRecoveryStatus_result$schema = z.union([z.objec
|
|
|
435
374
|
const _awiki_dsh_plugin_awiki_getSession_result$schema = z.union([z.object({
|
|
436
375
|
'ok': z.literal(false).readonly(),
|
|
437
376
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
439
378
|
'message': z.string().readonly(),
|
|
440
379
|
}).readonly(),
|
|
441
380
|
}), z.object({
|
|
@@ -460,7 +399,7 @@ const _awiki_dsh_plugin_awiki_inspectIdentityAccess_parameter_0$schema = z.objec
|
|
|
460
399
|
const _awiki_dsh_plugin_awiki_inspectIdentityAccess_result$schema = z.union([z.object({
|
|
461
400
|
'ok': z.literal(false).readonly(),
|
|
462
401
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
464
403
|
'message': z.string().readonly(),
|
|
465
404
|
}).readonly(),
|
|
466
405
|
}), z.object({
|
|
@@ -476,7 +415,7 @@ const _awiki_dsh_plugin_awiki_joinGroup_parameter_0$schema = z.object({
|
|
|
476
415
|
const _awiki_dsh_plugin_awiki_joinGroup_result$schema = z.union([z.object({
|
|
477
416
|
'ok': z.literal(false).readonly(),
|
|
478
417
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
480
419
|
'message': z.string().readonly(),
|
|
481
420
|
}).readonly(),
|
|
482
421
|
}), z.object({
|
|
@@ -497,7 +436,7 @@ const _awiki_dsh_plugin_awiki_leaveGroup_parameter_0$schema = z.object({
|
|
|
497
436
|
const _awiki_dsh_plugin_awiki_leaveGroup_result$schema = z.union([z.object({
|
|
498
437
|
'ok': z.literal(false).readonly(),
|
|
499
438
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
501
440
|
'message': z.string().readonly(),
|
|
502
441
|
}).readonly(),
|
|
503
442
|
}), z.object({
|
|
@@ -513,7 +452,7 @@ const _awiki_dsh_plugin_awiki_listConversations_parameter_0$schema = z.union([z.
|
|
|
513
452
|
const _awiki_dsh_plugin_awiki_listConversations_result$schema = z.union([z.object({
|
|
514
453
|
'ok': z.literal(false).readonly(),
|
|
515
454
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
517
456
|
'message': z.string().readonly(),
|
|
518
457
|
}).readonly(),
|
|
519
458
|
}), z.object({
|
|
@@ -550,7 +489,7 @@ const _awiki_dsh_plugin_awiki_listGroupMembers_parameter_0$schema = z.object({
|
|
|
550
489
|
const _awiki_dsh_plugin_awiki_listGroupMembers_result$schema = z.union([z.object({
|
|
551
490
|
'ok': z.literal(false).readonly(),
|
|
552
491
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
554
493
|
'message': z.string().readonly(),
|
|
555
494
|
}).readonly(),
|
|
556
495
|
}), z.object({
|
|
@@ -585,7 +524,7 @@ const _awiki_dsh_plugin_awiki_listMailInbox_parameter_0$schema = z.union([z.unde
|
|
|
585
524
|
const _awiki_dsh_plugin_awiki_listMailInbox_result$schema = z.union([z.object({
|
|
586
525
|
'ok': z.literal(false).readonly(),
|
|
587
526
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
589
528
|
'message': z.string().readonly(),
|
|
590
529
|
}).readonly(),
|
|
591
530
|
}), z.object({
|
|
@@ -614,7 +553,7 @@ const _awiki_dsh_plugin_awiki_listMailInbox_result$schema = z.union([z.object({
|
|
|
614
553
|
const _awiki_dsh_plugin_awiki_login_result$schema = z.union([z.object({
|
|
615
554
|
'ok': z.literal(false).readonly(),
|
|
616
555
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
618
557
|
'message': z.string().readonly(),
|
|
619
558
|
}).readonly(),
|
|
620
559
|
}), z.object({
|
|
@@ -639,7 +578,7 @@ const _awiki_dsh_plugin_awiki_logout_parameter_0$schema = z.object({
|
|
|
639
578
|
const _awiki_dsh_plugin_awiki_logout_result$schema = z.union([z.object({
|
|
640
579
|
'ok': z.literal(false).readonly(),
|
|
641
580
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
643
582
|
'message': z.string().readonly(),
|
|
644
583
|
}).readonly(),
|
|
645
584
|
}), z.object({
|
|
@@ -664,7 +603,7 @@ const _awiki_dsh_plugin_awiki_markConversationRead_parameter_0$schema = z.object
|
|
|
664
603
|
const _awiki_dsh_plugin_awiki_markConversationRead_result$schema = z.union([z.object({
|
|
665
604
|
'ok': z.literal(false).readonly(),
|
|
666
605
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
668
607
|
'message': z.string().readonly(),
|
|
669
608
|
}).readonly(),
|
|
670
609
|
}), z.object({
|
|
@@ -677,7 +616,7 @@ const _awiki_dsh_plugin_awiki_markMailRead_parameter_0$schema = z.object({
|
|
|
677
616
|
const _awiki_dsh_plugin_awiki_markMailRead_result$schema = z.union([z.object({
|
|
678
617
|
'ok': z.literal(false).readonly(),
|
|
679
618
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
681
620
|
'message': z.string().readonly(),
|
|
682
621
|
}).readonly(),
|
|
683
622
|
}), z.object({
|
|
@@ -694,7 +633,7 @@ const _awiki_dsh_plugin_awiki_prepareRecovery_parameter_0$schema = z.object({
|
|
|
694
633
|
const _awiki_dsh_plugin_awiki_prepareRecovery_result$schema = z.union([z.object({
|
|
695
634
|
'ok': z.literal(false).readonly(),
|
|
696
635
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
698
637
|
'message': z.string().readonly(),
|
|
699
638
|
}).readonly(),
|
|
700
639
|
}), z.object({
|
|
@@ -719,7 +658,7 @@ const _awiki_dsh_plugin_awiki_readMail_parameter_0$schema = z.object({
|
|
|
719
658
|
const _awiki_dsh_plugin_awiki_readMail_result$schema = z.union([z.object({
|
|
720
659
|
'ok': z.literal(false).readonly(),
|
|
721
660
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
723
662
|
'message': z.string().readonly(),
|
|
724
663
|
}).readonly(),
|
|
725
664
|
}), z.object({
|
|
@@ -752,36 +691,6 @@ const _awiki_dsh_plugin_awiki_readMail_result$schema = z.union([z.object({
|
|
|
752
691
|
})).readonly(),
|
|
753
692
|
}).readonly(),
|
|
754
693
|
})])
|
|
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
|
-
})])
|
|
785
694
|
const _awiki_dsh_plugin_awiki_registerIdentity_parameter_0$schema = z.object({
|
|
786
695
|
'handle': z.string().readonly(),
|
|
787
696
|
'phone': z.string().readonly(),
|
|
@@ -790,44 +699,17 @@ const _awiki_dsh_plugin_awiki_registerIdentity_parameter_0$schema = z.object({
|
|
|
790
699
|
const _awiki_dsh_plugin_awiki_registerIdentity_result$schema = z.union([z.object({
|
|
791
700
|
'ok': z.literal(false).readonly(),
|
|
792
701
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
794
703
|
'message': z.string().readonly(),
|
|
795
704
|
}).readonly(),
|
|
796
705
|
}), z.object({
|
|
797
706
|
'ok': z.literal(true).readonly(),
|
|
798
|
-
'value': z.
|
|
799
|
-
'status': z.literal("registered").readonly(),
|
|
800
|
-
'identity': z.object({
|
|
707
|
+
'value': z.object({
|
|
801
708
|
'handle': z.intersection(z.string(), z.unknown()).readonly(),
|
|
802
709
|
'did': z.intersection(z.string(), z.unknown()).readonly(),
|
|
803
710
|
'displayName': z.string().readonly().optional(),
|
|
804
711
|
'registeredAt': z.number().readonly(),
|
|
805
712
|
}).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(),
|
|
831
713
|
})])
|
|
832
714
|
const _awiki_dsh_plugin_awiki_removeGroupMember_parameter_0$schema = z.object({
|
|
833
715
|
'member': z.string().readonly(),
|
|
@@ -836,7 +718,7 @@ const _awiki_dsh_plugin_awiki_removeGroupMember_parameter_0$schema = z.object({
|
|
|
836
718
|
const _awiki_dsh_plugin_awiki_removeGroupMember_result$schema = z.union([z.object({
|
|
837
719
|
'ok': z.literal(false).readonly(),
|
|
838
720
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
840
722
|
'message': z.string().readonly(),
|
|
841
723
|
}).readonly(),
|
|
842
724
|
}), z.object({
|
|
@@ -852,7 +734,7 @@ const _awiki_dsh_plugin_awiki_resolvePeer_parameter_0$schema = z.object({
|
|
|
852
734
|
const _awiki_dsh_plugin_awiki_resolvePeer_result$schema = z.union([z.object({
|
|
853
735
|
'ok': z.literal(false).readonly(),
|
|
854
736
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
856
738
|
'message': z.string().readonly(),
|
|
857
739
|
}).readonly(),
|
|
858
740
|
}), z.object({
|
|
@@ -867,7 +749,7 @@ const _awiki_dsh_plugin_awiki_resolvePeer_result$schema = z.union([z.object({
|
|
|
867
749
|
const _awiki_dsh_plugin_awiki_resumeGroupRebindRecovery_result$schema = z.union([z.object({
|
|
868
750
|
'ok': z.literal(false).readonly(),
|
|
869
751
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
871
753
|
'message': z.string().readonly(),
|
|
872
754
|
}).readonly(),
|
|
873
755
|
}), z.object({
|
|
@@ -889,7 +771,7 @@ const _awiki_dsh_plugin_awiki_resumeRecovery_parameter_0$schema = z.object({
|
|
|
889
771
|
const _awiki_dsh_plugin_awiki_resumeRecovery_result$schema = z.union([z.object({
|
|
890
772
|
'ok': z.literal(false).readonly(),
|
|
891
773
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
893
775
|
'message': z.string().readonly(),
|
|
894
776
|
}).readonly(),
|
|
895
777
|
}), z.object({
|
|
@@ -908,40 +790,6 @@ const _awiki_dsh_plugin_awiki_resumeRecovery_result$schema = z.union([z.object({
|
|
|
908
790
|
'unsupportedDidOnlyGroupCount': z.number().readonly(),
|
|
909
791
|
}).readonly(),
|
|
910
792
|
})])
|
|
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
|
-
})])
|
|
945
793
|
const _awiki_dsh_plugin_awiki_sendAttachment_parameter_0$schema = z.object({
|
|
946
794
|
'target': z.union([z.object({
|
|
947
795
|
'kind': z.literal("direct").readonly(),
|
|
@@ -959,7 +807,7 @@ const _awiki_dsh_plugin_awiki_sendAttachment_parameter_0$schema = z.object({
|
|
|
959
807
|
const _awiki_dsh_plugin_awiki_sendAttachment_result$schema = z.union([z.object({
|
|
960
808
|
'ok': z.literal(false).readonly(),
|
|
961
809
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
963
811
|
'message': z.string().readonly(),
|
|
964
812
|
}).readonly(),
|
|
965
813
|
}), z.object({
|
|
@@ -1005,7 +853,7 @@ const _awiki_dsh_plugin_awiki_sendMail_parameter_0$schema = z.object({
|
|
|
1005
853
|
const _awiki_dsh_plugin_awiki_sendMail_result$schema = z.union([z.object({
|
|
1006
854
|
'ok': z.literal(false).readonly(),
|
|
1007
855
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
1009
857
|
'message': z.string().readonly(),
|
|
1010
858
|
}).readonly(),
|
|
1011
859
|
}), z.object({
|
|
@@ -1023,7 +871,7 @@ const _awiki_dsh_plugin_awiki_sendRecoveryOtp_parameter_0$schema = z.object({
|
|
|
1023
871
|
const _awiki_dsh_plugin_awiki_sendRecoveryOtp_result$schema = z.union([z.object({
|
|
1024
872
|
'ok': z.literal(false).readonly(),
|
|
1025
873
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
1027
875
|
'message': z.string().readonly(),
|
|
1028
876
|
}).readonly(),
|
|
1029
877
|
}), z.object({
|
|
@@ -1042,7 +890,7 @@ const _awiki_dsh_plugin_awiki_sendRegistrationOtp_parameter_0$schema = z.object(
|
|
|
1042
890
|
const _awiki_dsh_plugin_awiki_sendRegistrationOtp_result$schema = z.union([z.object({
|
|
1043
891
|
'ok': z.literal(false).readonly(),
|
|
1044
892
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
1046
894
|
'message': z.string().readonly(),
|
|
1047
895
|
}).readonly(),
|
|
1048
896
|
}), z.object({
|
|
@@ -1073,7 +921,7 @@ const _awiki_dsh_plugin_awiki_sendText_parameter_0$schema = z.object({
|
|
|
1073
921
|
const _awiki_dsh_plugin_awiki_sendText_result$schema = z.union([z.object({
|
|
1074
922
|
'ok': z.literal(false).readonly(),
|
|
1075
923
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
1077
925
|
'message': z.string().readonly(),
|
|
1078
926
|
}).readonly(),
|
|
1079
927
|
}), z.object({
|
|
@@ -1110,24 +958,6 @@ const _awiki_dsh_plugin_awiki_sendText_result$schema = z.union([z.object({
|
|
|
1110
958
|
})]).readonly(),
|
|
1111
959
|
}).readonly(),
|
|
1112
960
|
})])
|
|
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
|
-
})])
|
|
1131
961
|
const _awiki_dsh_plugin_awiki_summarizeConversation_parameter_0$schema = z.object({
|
|
1132
962
|
'conversationId': z.intersection(z.string(), z.unknown()).readonly(),
|
|
1133
963
|
'unreadCountAtOpen': z.number().readonly().optional(),
|
|
@@ -1135,7 +965,7 @@ const _awiki_dsh_plugin_awiki_summarizeConversation_parameter_0$schema = z.objec
|
|
|
1135
965
|
const _awiki_dsh_plugin_awiki_summarizeConversation_result$schema = z.union([z.object({
|
|
1136
966
|
'ok': z.literal(false).readonly(),
|
|
1137
967
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
1139
969
|
'message': z.string().readonly(),
|
|
1140
970
|
}).readonly(),
|
|
1141
971
|
}), z.object({
|
|
@@ -1189,7 +1019,7 @@ const _awiki_dsh_plugin_awiki_updateConversationPreference_parameter_0$schema =
|
|
|
1189
1019
|
const _awiki_dsh_plugin_awiki_updateConversationPreference_result$schema = z.union([z.object({
|
|
1190
1020
|
'ok': z.literal(false).readonly(),
|
|
1191
1021
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
1193
1023
|
'message': z.string().readonly(),
|
|
1194
1024
|
}).readonly(),
|
|
1195
1025
|
}), z.object({
|
|
@@ -1226,7 +1056,7 @@ const _awiki_dsh_plugin_awiki_updateDisplayName_parameter_0$schema = z.object({
|
|
|
1226
1056
|
const _awiki_dsh_plugin_awiki_updateDisplayName_result$schema = z.union([z.object({
|
|
1227
1057
|
'ok': z.literal(false).readonly(),
|
|
1228
1058
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
1230
1060
|
'message': z.string().readonly(),
|
|
1231
1061
|
}).readonly(),
|
|
1232
1062
|
}), z.object({
|
|
@@ -1246,7 +1076,7 @@ const _awiki_dsh_plugin_awiki_updateProfile_parameter_0$schema = z.object({
|
|
|
1246
1076
|
const _awiki_dsh_plugin_awiki_updateProfile_result$schema = z.union([z.object({
|
|
1247
1077
|
'ok': z.literal(false).readonly(),
|
|
1248
1078
|
'error': z.object({
|
|
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(),
|
|
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("state-in-use"), 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(),
|
|
1250
1080
|
'message': z.string().readonly(),
|
|
1251
1081
|
}).readonly(),
|
|
1252
1082
|
}), z.object({
|
|
@@ -1290,7 +1120,7 @@ export const TYPERT = {
|
|
|
1290
1120
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1291
1121
|
schema: _awiki_dsh_plugin_awiki_activateRecovery_result$schema,
|
|
1292
1122
|
},
|
|
1293
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1123
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":117,"column":9},
|
|
1294
1124
|
},
|
|
1295
1125
|
{
|
|
1296
1126
|
id: '@awiki/dsh-plugin#awiki/addGroupMember',
|
|
@@ -1315,62 +1145,7 @@ export const TYPERT = {
|
|
|
1315
1145
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1316
1146
|
schema: _awiki_dsh_plugin_awiki_addGroupMember_result$schema,
|
|
1317
1147
|
},
|
|
1318
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1319
|
-
},
|
|
1320
|
-
{
|
|
1321
|
-
id: '@awiki/dsh-plugin#awiki/approveDeviceJoin',
|
|
1322
|
-
service: 'awiki',
|
|
1323
|
-
namespace: 'awiki',
|
|
1324
|
-
method: 'approveDeviceJoin',
|
|
1325
|
-
invocation: { kind: 'direct' },
|
|
1326
|
-
parameters: [
|
|
1327
|
-
{
|
|
1328
|
-
name: 'request',
|
|
1329
|
-
wire: 'request',
|
|
1330
|
-
source: 'json',
|
|
1331
|
-
codec: {
|
|
1332
|
-
mode: 'strict',
|
|
1333
|
-
typeSymbol: '@awiki/dsh-plugin/types#AwikiApproveDeviceJoinRequest',
|
|
1334
|
-
schema: _awiki_dsh_plugin_awiki_approveDeviceJoin_parameter_0$schema,
|
|
1335
|
-
},
|
|
1336
|
-
},
|
|
1337
|
-
],
|
|
1338
|
-
result: {
|
|
1339
|
-
mode: 'strict',
|
|
1340
|
-
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1341
|
-
schema: _awiki_dsh_plugin_awiki_approveDeviceJoin_result$schema,
|
|
1342
|
-
},
|
|
1343
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":129,"column":9},
|
|
1344
|
-
},
|
|
1345
|
-
{
|
|
1346
|
-
id: '@awiki/dsh-plugin#awiki/beginDeviceJoin',
|
|
1347
|
-
service: 'awiki',
|
|
1348
|
-
namespace: 'awiki',
|
|
1349
|
-
method: 'beginDeviceJoin',
|
|
1350
|
-
invocation: { kind: 'direct' },
|
|
1351
|
-
parameters: [
|
|
1352
|
-
],
|
|
1353
|
-
result: {
|
|
1354
|
-
mode: 'strict',
|
|
1355
|
-
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1356
|
-
schema: _awiki_dsh_plugin_awiki_beginDeviceJoin_result$schema,
|
|
1357
|
-
},
|
|
1358
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":112,"column":9},
|
|
1359
|
-
},
|
|
1360
|
-
{
|
|
1361
|
-
id: '@awiki/dsh-plugin#awiki/cancelDeviceJoin',
|
|
1362
|
-
service: 'awiki',
|
|
1363
|
-
namespace: 'awiki',
|
|
1364
|
-
method: 'cancelDeviceJoin',
|
|
1365
|
-
invocation: { kind: 'direct' },
|
|
1366
|
-
parameters: [
|
|
1367
|
-
],
|
|
1368
|
-
result: {
|
|
1369
|
-
mode: 'strict',
|
|
1370
|
-
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1371
|
-
schema: _awiki_dsh_plugin_awiki_cancelDeviceJoin_result$schema,
|
|
1372
|
-
},
|
|
1373
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":118,"column":9},
|
|
1148
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":147,"column":3},
|
|
1374
1149
|
},
|
|
1375
1150
|
{
|
|
1376
1151
|
id: '@awiki/dsh-plugin#awiki/clearLocalData',
|
|
@@ -1395,7 +1170,7 @@ export const TYPERT = {
|
|
|
1395
1170
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1396
1171
|
schema: _awiki_dsh_plugin_awiki_clearLocalData_result$schema,
|
|
1397
1172
|
},
|
|
1398
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1173
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":205,"column":3},
|
|
1399
1174
|
},
|
|
1400
1175
|
{
|
|
1401
1176
|
id: '@awiki/dsh-plugin#awiki/createGroup',
|
|
@@ -1420,7 +1195,7 @@ export const TYPERT = {
|
|
|
1420
1195
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1421
1196
|
schema: _awiki_dsh_plugin_awiki_createGroup_result$schema,
|
|
1422
1197
|
},
|
|
1423
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1198
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":132,"column":9},
|
|
1424
1199
|
},
|
|
1425
1200
|
{
|
|
1426
1201
|
id: '@awiki/dsh-plugin#awiki/discardRecovery',
|
|
@@ -1445,7 +1220,7 @@ export const TYPERT = {
|
|
|
1445
1220
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1446
1221
|
schema: _awiki_dsh_plugin_awiki_discardRecovery_result$schema,
|
|
1447
1222
|
},
|
|
1448
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1223
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":126,"column":9},
|
|
1449
1224
|
},
|
|
1450
1225
|
{
|
|
1451
1226
|
id: '@awiki/dsh-plugin#awiki/downloadAttachment',
|
|
@@ -1470,7 +1245,7 @@ export const TYPERT = {
|
|
|
1470
1245
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1471
1246
|
schema: _awiki_dsh_plugin_awiki_downloadAttachment_result$schema,
|
|
1472
1247
|
},
|
|
1473
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1248
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":187,"column":9},
|
|
1474
1249
|
},
|
|
1475
1250
|
{
|
|
1476
1251
|
id: '@awiki/dsh-plugin#awiki/getConfig',
|
|
@@ -1485,7 +1260,7 @@ export const TYPERT = {
|
|
|
1485
1260
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1486
1261
|
schema: _awiki_dsh_plugin_awiki_getConfig_result$schema,
|
|
1487
1262
|
},
|
|
1488
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1263
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":76,"column":3},
|
|
1489
1264
|
},
|
|
1490
1265
|
{
|
|
1491
1266
|
id: '@awiki/dsh-plugin#awiki/getConversationPreferences',
|
|
@@ -1500,22 +1275,7 @@ export const TYPERT = {
|
|
|
1500
1275
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1501
1276
|
schema: _awiki_dsh_plugin_awiki_getConversationPreferences_result$schema,
|
|
1502
1277
|
},
|
|
1503
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1504
|
-
},
|
|
1505
|
-
{
|
|
1506
|
-
id: '@awiki/dsh-plugin#awiki/getDeviceJoinStatus',
|
|
1507
|
-
service: 'awiki',
|
|
1508
|
-
namespace: 'awiki',
|
|
1509
|
-
method: 'getDeviceJoinStatus',
|
|
1510
|
-
invocation: { kind: 'direct' },
|
|
1511
|
-
parameters: [
|
|
1512
|
-
],
|
|
1513
|
-
result: {
|
|
1514
|
-
mode: 'strict',
|
|
1515
|
-
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1516
|
-
schema: _awiki_dsh_plugin_awiki_getDeviceJoinStatus_result$schema,
|
|
1517
|
-
},
|
|
1518
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":115,"column":9},
|
|
1278
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":156,"column":3},
|
|
1519
1279
|
},
|
|
1520
1280
|
{
|
|
1521
1281
|
id: '@awiki/dsh-plugin#awiki/getGroup',
|
|
@@ -1540,7 +1300,7 @@ export const TYPERT = {
|
|
|
1540
1300
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1541
1301
|
schema: _awiki_dsh_plugin_awiki_getGroup_result$schema,
|
|
1542
1302
|
},
|
|
1543
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1303
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":135,"column":3},
|
|
1544
1304
|
},
|
|
1545
1305
|
{
|
|
1546
1306
|
id: '@awiki/dsh-plugin#awiki/getHistory',
|
|
@@ -1565,7 +1325,7 @@ export const TYPERT = {
|
|
|
1565
1325
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1566
1326
|
schema: _awiki_dsh_plugin_awiki_getHistory_result$schema,
|
|
1567
1327
|
},
|
|
1568
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1328
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":167,"column":3},
|
|
1569
1329
|
},
|
|
1570
1330
|
{
|
|
1571
1331
|
id: '@awiki/dsh-plugin#awiki/getIdentity',
|
|
@@ -1580,7 +1340,7 @@ export const TYPERT = {
|
|
|
1580
1340
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1581
1341
|
schema: _awiki_dsh_plugin_awiki_getIdentity_result$schema,
|
|
1582
1342
|
},
|
|
1583
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1343
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":79,"column":9},
|
|
1584
1344
|
},
|
|
1585
1345
|
{
|
|
1586
1346
|
id: '@awiki/dsh-plugin#awiki/getLocalHistory',
|
|
@@ -1605,7 +1365,7 @@ export const TYPERT = {
|
|
|
1605
1365
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1606
1366
|
schema: _awiki_dsh_plugin_awiki_getLocalHistory_result$schema,
|
|
1607
1367
|
},
|
|
1608
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1368
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":170,"column":3},
|
|
1609
1369
|
},
|
|
1610
1370
|
{
|
|
1611
1371
|
id: '@awiki/dsh-plugin#awiki/getMailAccount',
|
|
@@ -1620,7 +1380,7 @@ export const TYPERT = {
|
|
|
1620
1380
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1621
1381
|
schema: _awiki_dsh_plugin_awiki_getMailAccount_result$schema,
|
|
1622
1382
|
},
|
|
1623
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1383
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":190,"column":3},
|
|
1624
1384
|
},
|
|
1625
1385
|
{
|
|
1626
1386
|
id: '@awiki/dsh-plugin#awiki/getProfile',
|
|
@@ -1635,7 +1395,7 @@ export const TYPERT = {
|
|
|
1635
1395
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1636
1396
|
schema: _awiki_dsh_plugin_awiki_getProfile_result$schema,
|
|
1637
1397
|
},
|
|
1638
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1398
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":105,"column":3},
|
|
1639
1399
|
},
|
|
1640
1400
|
{
|
|
1641
1401
|
id: '@awiki/dsh-plugin#awiki/getRecoveryStatus',
|
|
@@ -1660,7 +1420,7 @@ export const TYPERT = {
|
|
|
1660
1420
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1661
1421
|
schema: _awiki_dsh_plugin_awiki_getRecoveryStatus_result$schema,
|
|
1662
1422
|
},
|
|
1663
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1423
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":120,"column":9},
|
|
1664
1424
|
},
|
|
1665
1425
|
{
|
|
1666
1426
|
id: '@awiki/dsh-plugin#awiki/getSession',
|
|
@@ -1675,7 +1435,7 @@ export const TYPERT = {
|
|
|
1675
1435
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1676
1436
|
schema: _awiki_dsh_plugin_awiki_getSession_result$schema,
|
|
1677
1437
|
},
|
|
1678
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1438
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":82,"column":9},
|
|
1679
1439
|
},
|
|
1680
1440
|
{
|
|
1681
1441
|
id: '@awiki/dsh-plugin#awiki/inspectIdentityAccess',
|
|
@@ -1700,7 +1460,7 @@ export const TYPERT = {
|
|
|
1700
1460
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1701
1461
|
schema: _awiki_dsh_plugin_awiki_inspectIdentityAccess_result$schema,
|
|
1702
1462
|
},
|
|
1703
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1463
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":91,"column":9},
|
|
1704
1464
|
},
|
|
1705
1465
|
{
|
|
1706
1466
|
id: '@awiki/dsh-plugin#awiki/joinGroup',
|
|
@@ -1725,7 +1485,7 @@ export const TYPERT = {
|
|
|
1725
1485
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1726
1486
|
schema: _awiki_dsh_plugin_awiki_joinGroup_result$schema,
|
|
1727
1487
|
},
|
|
1728
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1488
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":138,"column":3},
|
|
1729
1489
|
},
|
|
1730
1490
|
{
|
|
1731
1491
|
id: '@awiki/dsh-plugin#awiki/leaveGroup',
|
|
@@ -1750,7 +1510,7 @@ export const TYPERT = {
|
|
|
1750
1510
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1751
1511
|
schema: _awiki_dsh_plugin_awiki_leaveGroup_result$schema,
|
|
1752
1512
|
},
|
|
1753
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1513
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":141,"column":9},
|
|
1754
1514
|
},
|
|
1755
1515
|
{
|
|
1756
1516
|
id: '@awiki/dsh-plugin#awiki/listConversations',
|
|
@@ -1776,7 +1536,7 @@ export const TYPERT = {
|
|
|
1776
1536
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1777
1537
|
schema: _awiki_dsh_plugin_awiki_listConversations_result$schema,
|
|
1778
1538
|
},
|
|
1779
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1539
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":164,"column":3},
|
|
1780
1540
|
},
|
|
1781
1541
|
{
|
|
1782
1542
|
id: '@awiki/dsh-plugin#awiki/listGroupMembers',
|
|
@@ -1801,7 +1561,7 @@ export const TYPERT = {
|
|
|
1801
1561
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1802
1562
|
schema: _awiki_dsh_plugin_awiki_listGroupMembers_result$schema,
|
|
1803
1563
|
},
|
|
1804
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1564
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":144,"column":3},
|
|
1805
1565
|
},
|
|
1806
1566
|
{
|
|
1807
1567
|
id: '@awiki/dsh-plugin#awiki/listMailInbox',
|
|
@@ -1827,7 +1587,7 @@ export const TYPERT = {
|
|
|
1827
1587
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1828
1588
|
schema: _awiki_dsh_plugin_awiki_listMailInbox_result$schema,
|
|
1829
1589
|
},
|
|
1830
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1590
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":193,"column":9},
|
|
1831
1591
|
},
|
|
1832
1592
|
{
|
|
1833
1593
|
id: '@awiki/dsh-plugin#awiki/login',
|
|
@@ -1842,7 +1602,7 @@ export const TYPERT = {
|
|
|
1842
1602
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1843
1603
|
schema: _awiki_dsh_plugin_awiki_login_result$schema,
|
|
1844
1604
|
},
|
|
1845
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1605
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":88,"column":3},
|
|
1846
1606
|
},
|
|
1847
1607
|
{
|
|
1848
1608
|
id: '@awiki/dsh-plugin#awiki/logout',
|
|
@@ -1867,7 +1627,7 @@ export const TYPERT = {
|
|
|
1867
1627
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1868
1628
|
schema: _awiki_dsh_plugin_awiki_logout_result$schema,
|
|
1869
1629
|
},
|
|
1870
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1630
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":85,"column":3},
|
|
1871
1631
|
},
|
|
1872
1632
|
{
|
|
1873
1633
|
id: '@awiki/dsh-plugin#awiki/markConversationRead',
|
|
@@ -1892,7 +1652,7 @@ export const TYPERT = {
|
|
|
1892
1652
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1893
1653
|
schema: _awiki_dsh_plugin_awiki_markConversationRead_result$schema,
|
|
1894
1654
|
},
|
|
1895
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1655
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":178,"column":3},
|
|
1896
1656
|
},
|
|
1897
1657
|
{
|
|
1898
1658
|
id: '@awiki/dsh-plugin#awiki/markMailRead',
|
|
@@ -1917,7 +1677,7 @@ export const TYPERT = {
|
|
|
1917
1677
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1918
1678
|
schema: _awiki_dsh_plugin_awiki_markMailRead_result$schema,
|
|
1919
1679
|
},
|
|
1920
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1680
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":199,"column":3},
|
|
1921
1681
|
},
|
|
1922
1682
|
{
|
|
1923
1683
|
id: '@awiki/dsh-plugin#awiki/prepareRecovery',
|
|
@@ -1942,7 +1702,7 @@ export const TYPERT = {
|
|
|
1942
1702
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1943
1703
|
schema: _awiki_dsh_plugin_awiki_prepareRecovery_result$schema,
|
|
1944
1704
|
},
|
|
1945
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1705
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":114,"column":3},
|
|
1946
1706
|
},
|
|
1947
1707
|
{
|
|
1948
1708
|
id: '@awiki/dsh-plugin#awiki/readMail',
|
|
@@ -1967,22 +1727,7 @@ export const TYPERT = {
|
|
|
1967
1727
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1968
1728
|
schema: _awiki_dsh_plugin_awiki_readMail_result$schema,
|
|
1969
1729
|
},
|
|
1970
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1971
|
-
},
|
|
1972
|
-
{
|
|
1973
|
-
id: '@awiki/dsh-plugin#awiki/refreshDeviceManagement',
|
|
1974
|
-
service: 'awiki',
|
|
1975
|
-
namespace: 'awiki',
|
|
1976
|
-
method: 'refreshDeviceManagement',
|
|
1977
|
-
invocation: { kind: 'direct' },
|
|
1978
|
-
parameters: [
|
|
1979
|
-
],
|
|
1980
|
-
result: {
|
|
1981
|
-
mode: 'strict',
|
|
1982
|
-
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
1983
|
-
schema: _awiki_dsh_plugin_awiki_refreshDeviceManagement_result$schema,
|
|
1984
|
-
},
|
|
1985
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":121,"column":3},
|
|
1730
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":196,"column":9},
|
|
1986
1731
|
},
|
|
1987
1732
|
{
|
|
1988
1733
|
id: '@awiki/dsh-plugin#awiki/registerIdentity',
|
|
@@ -2007,32 +1752,7 @@ export const TYPERT = {
|
|
|
2007
1752
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2008
1753
|
schema: _awiki_dsh_plugin_awiki_registerIdentity_result$schema,
|
|
2009
1754
|
},
|
|
2010
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2011
|
-
},
|
|
2012
|
-
{
|
|
2013
|
-
id: '@awiki/dsh-plugin#awiki/rejectDeviceJoin',
|
|
2014
|
-
service: 'awiki',
|
|
2015
|
-
namespace: 'awiki',
|
|
2016
|
-
method: 'rejectDeviceJoin',
|
|
2017
|
-
invocation: { kind: 'direct' },
|
|
2018
|
-
parameters: [
|
|
2019
|
-
{
|
|
2020
|
-
name: 'request',
|
|
2021
|
-
wire: 'request',
|
|
2022
|
-
source: 'json',
|
|
2023
|
-
codec: {
|
|
2024
|
-
mode: 'strict',
|
|
2025
|
-
typeSymbol: '@awiki/dsh-plugin/types#AwikiRejectDeviceJoinRequest',
|
|
2026
|
-
schema: _awiki_dsh_plugin_awiki_rejectDeviceJoin_parameter_0$schema,
|
|
2027
|
-
},
|
|
2028
|
-
},
|
|
2029
|
-
],
|
|
2030
|
-
result: {
|
|
2031
|
-
mode: 'strict',
|
|
2032
|
-
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2033
|
-
schema: _awiki_dsh_plugin_awiki_rejectDeviceJoin_result$schema,
|
|
2034
|
-
},
|
|
2035
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":134,"column":9},
|
|
1755
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":99,"column":9},
|
|
2036
1756
|
},
|
|
2037
1757
|
{
|
|
2038
1758
|
id: '@awiki/dsh-plugin#awiki/removeGroupMember',
|
|
@@ -2057,7 +1777,7 @@ export const TYPERT = {
|
|
|
2057
1777
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2058
1778
|
schema: _awiki_dsh_plugin_awiki_removeGroupMember_result$schema,
|
|
2059
1779
|
},
|
|
2060
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1780
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":150,"column":3},
|
|
2061
1781
|
},
|
|
2062
1782
|
{
|
|
2063
1783
|
id: '@awiki/dsh-plugin#awiki/resolvePeer',
|
|
@@ -2082,7 +1802,7 @@ export const TYPERT = {
|
|
|
2082
1802
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2083
1803
|
schema: _awiki_dsh_plugin_awiki_resolvePeer_result$schema,
|
|
2084
1804
|
},
|
|
2085
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1805
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":129,"column":3},
|
|
2086
1806
|
},
|
|
2087
1807
|
{
|
|
2088
1808
|
id: '@awiki/dsh-plugin#awiki/resumeGroupRebindRecovery',
|
|
@@ -2097,7 +1817,7 @@ export const TYPERT = {
|
|
|
2097
1817
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2098
1818
|
schema: _awiki_dsh_plugin_awiki_resumeGroupRebindRecovery_result$schema,
|
|
2099
1819
|
},
|
|
2100
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1820
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":153,"column":9},
|
|
2101
1821
|
},
|
|
2102
1822
|
{
|
|
2103
1823
|
id: '@awiki/dsh-plugin#awiki/resumeRecovery',
|
|
@@ -2122,32 +1842,7 @@ export const TYPERT = {
|
|
|
2122
1842
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2123
1843
|
schema: _awiki_dsh_plugin_awiki_resumeRecovery_result$schema,
|
|
2124
1844
|
},
|
|
2125
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2126
|
-
},
|
|
2127
|
-
{
|
|
2128
|
-
id: '@awiki/dsh-plugin#awiki/revokeDevice',
|
|
2129
|
-
service: 'awiki',
|
|
2130
|
-
namespace: 'awiki',
|
|
2131
|
-
method: 'revokeDevice',
|
|
2132
|
-
invocation: { kind: 'direct' },
|
|
2133
|
-
parameters: [
|
|
2134
|
-
{
|
|
2135
|
-
name: 'request',
|
|
2136
|
-
wire: 'request',
|
|
2137
|
-
source: 'json',
|
|
2138
|
-
codec: {
|
|
2139
|
-
mode: 'strict',
|
|
2140
|
-
typeSymbol: '@awiki/dsh-plugin/types#AwikiRevokeDeviceRequest',
|
|
2141
|
-
schema: _awiki_dsh_plugin_awiki_revokeDevice_parameter_0$schema,
|
|
2142
|
-
},
|
|
2143
|
-
},
|
|
2144
|
-
],
|
|
2145
|
-
result: {
|
|
2146
|
-
mode: 'strict',
|
|
2147
|
-
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2148
|
-
schema: _awiki_dsh_plugin_awiki_revokeDevice_result$schema,
|
|
2149
|
-
},
|
|
2150
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":139,"column":9},
|
|
1845
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":123,"column":9},
|
|
2151
1846
|
},
|
|
2152
1847
|
{
|
|
2153
1848
|
id: '@awiki/dsh-plugin#awiki/sendAttachment',
|
|
@@ -2172,7 +1867,7 @@ export const TYPERT = {
|
|
|
2172
1867
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2173
1868
|
schema: _awiki_dsh_plugin_awiki_sendAttachment_result$schema,
|
|
2174
1869
|
},
|
|
2175
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1870
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":184,"column":9},
|
|
2176
1871
|
},
|
|
2177
1872
|
{
|
|
2178
1873
|
id: '@awiki/dsh-plugin#awiki/sendMail',
|
|
@@ -2197,7 +1892,7 @@ export const TYPERT = {
|
|
|
2197
1892
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2198
1893
|
schema: _awiki_dsh_plugin_awiki_sendMail_result$schema,
|
|
2199
1894
|
},
|
|
2200
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1895
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":202,"column":9},
|
|
2201
1896
|
},
|
|
2202
1897
|
{
|
|
2203
1898
|
id: '@awiki/dsh-plugin#awiki/sendRecoveryOtp',
|
|
@@ -2222,7 +1917,7 @@ export const TYPERT = {
|
|
|
2222
1917
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2223
1918
|
schema: _awiki_dsh_plugin_awiki_sendRecoveryOtp_result$schema,
|
|
2224
1919
|
},
|
|
2225
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1920
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":111,"column":3},
|
|
2226
1921
|
},
|
|
2227
1922
|
{
|
|
2228
1923
|
id: '@awiki/dsh-plugin#awiki/sendRegistrationOtp',
|
|
@@ -2247,7 +1942,7 @@ export const TYPERT = {
|
|
|
2247
1942
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2248
1943
|
schema: _awiki_dsh_plugin_awiki_sendRegistrationOtp_result$schema,
|
|
2249
1944
|
},
|
|
2250
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1945
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":96,"column":3},
|
|
2251
1946
|
},
|
|
2252
1947
|
{
|
|
2253
1948
|
id: '@awiki/dsh-plugin#awiki/sendText',
|
|
@@ -2272,32 +1967,7 @@ export const TYPERT = {
|
|
|
2272
1967
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2273
1968
|
schema: _awiki_dsh_plugin_awiki_sendText_result$schema,
|
|
2274
1969
|
},
|
|
2275
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2276
|
-
},
|
|
2277
|
-
{
|
|
2278
|
-
id: '@awiki/dsh-plugin#awiki/startDeviceJoinVerification',
|
|
2279
|
-
service: 'awiki',
|
|
2280
|
-
namespace: 'awiki',
|
|
2281
|
-
method: 'startDeviceJoinVerification',
|
|
2282
|
-
invocation: { kind: 'direct' },
|
|
2283
|
-
parameters: [
|
|
2284
|
-
{
|
|
2285
|
-
name: 'request',
|
|
2286
|
-
wire: 'request',
|
|
2287
|
-
source: 'json',
|
|
2288
|
-
codec: {
|
|
2289
|
-
mode: 'strict',
|
|
2290
|
-
typeSymbol: '@awiki/dsh-plugin/types#AwikiRequestRefInput',
|
|
2291
|
-
schema: _awiki_dsh_plugin_awiki_startDeviceJoinVerification_parameter_0$schema,
|
|
2292
|
-
},
|
|
2293
|
-
},
|
|
2294
|
-
],
|
|
2295
|
-
result: {
|
|
2296
|
-
mode: 'strict',
|
|
2297
|
-
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2298
|
-
schema: _awiki_dsh_plugin_awiki_startDeviceJoinVerification_result$schema,
|
|
2299
|
-
},
|
|
2300
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":124,"column":9},
|
|
1970
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":181,"column":3},
|
|
2301
1971
|
},
|
|
2302
1972
|
{
|
|
2303
1973
|
id: '@awiki/dsh-plugin#awiki/summarizeConversation',
|
|
@@ -2322,7 +1992,7 @@ export const TYPERT = {
|
|
|
2322
1992
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2323
1993
|
schema: _awiki_dsh_plugin_awiki_summarizeConversation_result$schema,
|
|
2324
1994
|
},
|
|
2325
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
1995
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":173,"column":9},
|
|
2326
1996
|
},
|
|
2327
1997
|
{
|
|
2328
1998
|
id: '@awiki/dsh-plugin#awiki/updateConversationPreference',
|
|
@@ -2347,7 +2017,7 @@ export const TYPERT = {
|
|
|
2347
2017
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2348
2018
|
schema: _awiki_dsh_plugin_awiki_updateConversationPreference_result$schema,
|
|
2349
2019
|
},
|
|
2350
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2020
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":159,"column":3},
|
|
2351
2021
|
},
|
|
2352
2022
|
{
|
|
2353
2023
|
id: '@awiki/dsh-plugin#awiki/updateDisplayName',
|
|
@@ -2372,7 +2042,7 @@ export const TYPERT = {
|
|
|
2372
2042
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2373
2043
|
schema: _awiki_dsh_plugin_awiki_updateDisplayName_result$schema,
|
|
2374
2044
|
},
|
|
2375
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2045
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":102,"column":9},
|
|
2376
2046
|
},
|
|
2377
2047
|
{
|
|
2378
2048
|
id: '@awiki/dsh-plugin#awiki/updateProfile',
|
|
@@ -2397,7 +2067,7 @@ export const TYPERT = {
|
|
|
2397
2067
|
typeSymbol: '@awiki/dsh-plugin/types#AwikiResult',
|
|
2398
2068
|
schema: _awiki_dsh_plugin_awiki_updateProfile_result$schema,
|
|
2399
2069
|
},
|
|
2400
|
-
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":
|
|
2070
|
+
sourceLocation: {"file":"packages/dsh-awiki/src/index.ts","line":108,"column":3},
|
|
2401
2071
|
},
|
|
2402
2072
|
],
|
|
2403
2073
|
model: {
|