@sparkdreamnft/sparkdreamjs 0.0.8 → 0.0.9
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/cosmos/bundle.d.ts +160 -160
- package/cosmos/bundle.js +182 -182
- package/esm/cosmos/bundle.js +182 -182
- package/esm/ibc/bundle.js +106 -106
- package/esm/sparkdream/bundle.js +368 -332
- package/esm/sparkdream/client.js +4 -1
- package/esm/sparkdream/{forum → commons}/v1/category.js +7 -5
- package/esm/sparkdream/commons/v1/genesis.js +29 -1
- package/esm/sparkdream/commons/v1/query.js +292 -0
- package/esm/sparkdream/commons/v1/query.lcd.js +18 -0
- package/esm/sparkdream/commons/v1/query.rpc.Query.js +21 -1
- package/esm/sparkdream/commons/v1/tx.amino.js +6 -1
- package/esm/sparkdream/commons/v1/tx.js +193 -0
- package/esm/sparkdream/commons/v1/tx.registry.js +20 -2
- package/esm/sparkdream/commons/v1/tx.rpc.msg.js +8 -1
- package/esm/sparkdream/federation/module/v1/module.js +71 -0
- package/esm/sparkdream/federation/v1/genesis.js +244 -0
- package/esm/sparkdream/federation/v1/packet.js +810 -0
- package/esm/sparkdream/federation/v1/params.js +789 -0
- package/esm/sparkdream/federation/v1/query.js +2629 -0
- package/esm/sparkdream/federation/v1/query.lcd.js +152 -0
- package/esm/sparkdream/federation/v1/query.rpc.Query.js +189 -0
- package/esm/sparkdream/federation/v1/tx.amino.js +139 -0
- package/esm/sparkdream/federation/v1/tx.js +4199 -0
- package/esm/sparkdream/federation/v1/tx.registry.js +501 -0
- package/esm/sparkdream/federation/v1/tx.rpc.msg.js +173 -0
- package/esm/sparkdream/federation/v1/types.js +2571 -0
- package/esm/sparkdream/forum/v1/genesis.js +26 -250
- package/esm/sparkdream/forum/v1/query.js +2084 -7387
- package/esm/sparkdream/forum/v1/query.lcd.js +0 -310
- package/esm/sparkdream/forum/v1/query.rpc.Query.js +1 -339
- package/esm/sparkdream/forum/v1/sentinel_activity.js +46 -139
- package/esm/sparkdream/forum/v1/tx.amino.js +1 -76
- package/esm/sparkdream/forum/v1/tx.js +333 -2628
- package/esm/sparkdream/forum/v1/tx.registry.js +2 -272
- package/esm/sparkdream/forum/v1/tx.rpc.msg.js +1 -91
- package/esm/sparkdream/forum/v1/types.js +0 -216
- package/esm/sparkdream/lcd.js +5 -0
- package/esm/sparkdream/rep/v1/accountability.js +172 -0
- package/esm/sparkdream/rep/v1/genesis.js +209 -1
- package/esm/sparkdream/{forum → rep}/v1/gov_action_appeal.js +4 -4
- package/esm/sparkdream/{forum → rep}/v1/jury_participation.js +4 -4
- package/esm/sparkdream/rep/v1/member.js +25 -1
- package/esm/sparkdream/{forum → rep}/v1/member_report.js +4 -4
- package/esm/sparkdream/{forum → rep}/v1/member_warning.js +4 -4
- package/esm/sparkdream/rep/v1/params.js +782 -254
- package/esm/sparkdream/rep/v1/project.js +13 -1
- package/esm/sparkdream/rep/v1/query.js +5260 -0
- package/esm/sparkdream/rep/v1/query.lcd.js +286 -0
- package/esm/sparkdream/rep/v1/query.rpc.Query.js +333 -1
- package/esm/sparkdream/{common → rep}/v1/reserved_tag.js +5 -5
- package/esm/sparkdream/rep/v1/sentinel_activity.js +214 -0
- package/esm/sparkdream/{common → rep}/v1/tag.js +6 -6
- package/esm/sparkdream/{forum → rep}/v1/tag_budget.js +4 -4
- package/esm/sparkdream/{forum → rep}/v1/tag_budget_award.js +4 -4
- package/esm/sparkdream/{forum → rep}/v1/tag_report.js +4 -4
- package/esm/sparkdream/rep/v1/tx.amino.js +81 -1
- package/esm/sparkdream/rep/v1/tx.js +2439 -0
- package/esm/sparkdream/rep/v1/tx.registry.js +290 -2
- package/esm/sparkdream/rep/v1/tx.rpc.msg.js +102 -1
- package/esm/sparkdream/rpc.query.js +3 -0
- package/esm/sparkdream/rpc.tx.js +3 -0
- package/esm/sparkdream/season/v1/params.js +94 -46
- package/esm/sparkdream/shield/v1/types.js +47 -5
- package/esm/tendermint/bundle.js +20 -20
- package/ibc/bundle.d.ts +90 -90
- package/ibc/bundle.js +106 -106
- package/package.json +1 -1
- package/sparkdream/bundle.d.ts +13210 -11120
- package/sparkdream/bundle.js +368 -332
- package/sparkdream/client.d.ts +202 -57
- package/sparkdream/client.js +4 -1
- package/sparkdream/{forum → commons}/v1/category.d.ts +17 -11
- package/sparkdream/{forum → commons}/v1/category.js +7 -5
- package/sparkdream/commons/v1/genesis.d.ts +17 -0
- package/sparkdream/commons/v1/genesis.js +29 -1
- package/sparkdream/commons/v1/query.d.ts +179 -0
- package/sparkdream/commons/v1/query.js +293 -1
- package/sparkdream/commons/v1/query.lcd.d.ts +3 -1
- package/sparkdream/commons/v1/query.lcd.js +18 -0
- package/sparkdream/commons/v1/query.rpc.Query.d.ts +9 -1
- package/sparkdream/commons/v1/query.rpc.Query.js +20 -0
- package/sparkdream/commons/v1/tx.amino.d.ts +6 -1
- package/sparkdream/commons/v1/tx.amino.js +5 -0
- package/sparkdream/commons/v1/tx.d.ts +98 -0
- package/sparkdream/commons/v1/tx.js +194 -1
- package/sparkdream/commons/v1/tx.registry.d.ts +13 -1
- package/sparkdream/commons/v1/tx.registry.js +19 -1
- package/sparkdream/commons/v1/tx.rpc.msg.d.ts +7 -1
- package/sparkdream/commons/v1/tx.rpc.msg.js +7 -0
- package/sparkdream/federation/module/v1/module.d.ts +54 -0
- package/sparkdream/federation/module/v1/module.js +74 -0
- package/sparkdream/federation/v1/genesis.d.ts +78 -0
- package/sparkdream/federation/v1/genesis.js +247 -0
- package/sparkdream/federation/v1/packet.d.ts +397 -0
- package/sparkdream/federation/v1/packet.js +813 -0
- package/sparkdream/federation/v1/params.d.ts +272 -0
- package/sparkdream/federation/v1/params.js +792 -0
- package/sparkdream/federation/v1/query.d.ts +1541 -0
- package/sparkdream/federation/v1/query.js +2632 -0
- package/sparkdream/federation/v1/query.lcd.d.ts +26 -0
- package/sparkdream/federation/v1/query.lcd.js +156 -0
- package/sparkdream/federation/v1/query.rpc.Query.d.ts +66 -0
- package/sparkdream/federation/v1/query.rpc.Query.js +194 -0
- package/sparkdream/federation/v1/tx.amino.d.ts +138 -0
- package/sparkdream/federation/v1/tx.amino.js +142 -0
- package/sparkdream/federation/v1/tx.d.ts +2311 -0
- package/sparkdream/federation/v1/tx.js +4203 -0
- package/sparkdream/federation/v1/tx.registry.d.ts +337 -0
- package/sparkdream/federation/v1/tx.registry.js +505 -0
- package/sparkdream/federation/v1/tx.rpc.msg.d.ts +64 -0
- package/sparkdream/federation/v1/tx.rpc.msg.js +178 -0
- package/sparkdream/federation/v1/types.d.ts +906 -0
- package/sparkdream/federation/v1/types.js +2588 -0
- package/sparkdream/forum/v1/genesis.d.ts +0 -41
- package/sparkdream/forum/v1/genesis.js +26 -250
- package/sparkdream/forum/v1/query.d.ts +65 -3164
- package/sparkdream/forum/v1/query.js +2086 -7391
- package/sparkdream/forum/v1/query.lcd.d.ts +1 -35
- package/sparkdream/forum/v1/query.lcd.js +0 -310
- package/sparkdream/forum/v1/query.rpc.Query.d.ts +1 -137
- package/sparkdream/forum/v1/query.rpc.Query.js +0 -338
- package/sparkdream/forum/v1/sentinel_activity.d.ts +9 -20
- package/sparkdream/forum/v1/sentinel_activity.js +46 -139
- package/sparkdream/forum/v1/tx.amino.d.ts +1 -76
- package/sparkdream/forum/v1/tx.amino.js +0 -75
- package/sparkdream/forum/v1/tx.d.ts +85 -1445
- package/sparkdream/forum/v1/tx.js +335 -2630
- package/sparkdream/forum/v1/tx.registry.d.ts +1 -181
- package/sparkdream/forum/v1/tx.registry.js +1 -271
- package/sparkdream/forum/v1/tx.rpc.msg.d.ts +1 -46
- package/sparkdream/forum/v1/tx.rpc.msg.js +0 -90
- package/sparkdream/forum/v1/types.d.ts +0 -50
- package/sparkdream/forum/v1/types.js +1 -225
- package/sparkdream/lcd.d.ts +3 -0
- package/sparkdream/lcd.js +5 -0
- package/sparkdream/rep/v1/accountability.d.ts +39 -0
- package/sparkdream/rep/v1/accountability.js +181 -0
- package/sparkdream/rep/v1/genesis.d.ts +68 -0
- package/sparkdream/rep/v1/genesis.js +209 -1
- package/sparkdream/{forum → rep}/v1/gov_action_appeal.d.ts +9 -9
- package/sparkdream/{forum → rep}/v1/gov_action_appeal.js +4 -4
- package/sparkdream/{forum → rep}/v1/jury_participation.d.ts +8 -8
- package/sparkdream/{forum → rep}/v1/jury_participation.js +4 -4
- package/sparkdream/rep/v1/member.d.ts +16 -0
- package/sparkdream/rep/v1/member.js +25 -1
- package/sparkdream/{forum → rep}/v1/member_report.d.ts +9 -9
- package/sparkdream/{forum → rep}/v1/member_report.js +4 -4
- package/sparkdream/{forum → rep}/v1/member_warning.d.ts +8 -8
- package/sparkdream/{forum → rep}/v1/member_warning.js +4 -4
- package/sparkdream/rep/v1/params.d.ts +352 -8
- package/sparkdream/rep/v1/params.js +782 -254
- package/sparkdream/rep/v1/project.d.ts +10 -0
- package/sparkdream/rep/v1/project.js +13 -1
- package/sparkdream/rep/v1/query.d.ts +4197 -1129
- package/sparkdream/rep/v1/query.js +5263 -1
- package/sparkdream/rep/v1/query.lcd.d.ts +35 -1
- package/sparkdream/rep/v1/query.lcd.js +286 -0
- package/sparkdream/rep/v1/query.rpc.Query.d.ts +137 -1
- package/sparkdream/rep/v1/query.rpc.Query.js +332 -0
- package/sparkdream/{common → rep}/v1/reserved_tag.d.ts +11 -11
- package/sparkdream/{common → rep}/v1/reserved_tag.js +5 -5
- package/sparkdream/rep/v1/sentinel_activity.d.ts +79 -0
- package/sparkdream/rep/v1/sentinel_activity.js +219 -0
- package/sparkdream/{common → rep}/v1/tag.d.ts +14 -14
- package/sparkdream/{common → rep}/v1/tag.js +6 -6
- package/sparkdream/{forum → rep}/v1/tag_budget.d.ts +8 -8
- package/sparkdream/{forum → rep}/v1/tag_budget.js +4 -4
- package/sparkdream/{forum → rep}/v1/tag_budget_award.d.ts +8 -8
- package/sparkdream/{forum → rep}/v1/tag_budget_award.js +4 -4
- package/sparkdream/{forum → rep}/v1/tag_report.d.ts +8 -8
- package/sparkdream/{forum → rep}/v1/tag_report.js +4 -4
- package/sparkdream/rep/v1/tx.amino.d.ts +81 -1
- package/sparkdream/rep/v1/tx.amino.js +80 -0
- package/sparkdream/rep/v1/tx.d.ts +1467 -0
- package/sparkdream/rep/v1/tx.js +2440 -1
- package/sparkdream/rep/v1/tx.registry.d.ts +193 -1
- package/sparkdream/rep/v1/tx.registry.js +289 -1
- package/sparkdream/rep/v1/tx.rpc.msg.d.ts +62 -1
- package/sparkdream/rep/v1/tx.rpc.msg.js +101 -0
- package/sparkdream/rpc.query.d.ts +58 -34
- package/sparkdream/rpc.query.js +3 -0
- package/sparkdream/rpc.tx.d.ts +3 -0
- package/sparkdream/rpc.tx.js +3 -0
- package/sparkdream/season/v1/params.d.ts +36 -4
- package/sparkdream/season/v1/params.js +94 -46
- package/sparkdream/shield/v1/types.d.ts +28 -0
- package/sparkdream/shield/v1/types.js +47 -5
- package/tendermint/bundle.d.ts +844 -844
- package/tendermint/bundle.js +20 -20
- package/esm/sparkdream/forum/v1/member_salvation_status.js +0 -119
- package/sparkdream/forum/v1/member_salvation_status.d.ts +0 -54
- package/sparkdream/forum/v1/member_salvation_status.js +0 -122
package/sparkdream/bundle.js
CHANGED
|
@@ -51,208 +51,221 @@ const _187 = __importStar(require("./collect/v1/types"));
|
|
|
51
51
|
const _188 = __importStar(require("./common/v1/content_type"));
|
|
52
52
|
const _189 = __importStar(require("./common/v1/flag_record"));
|
|
53
53
|
const _190 = __importStar(require("./common/v1/moderation_reason"));
|
|
54
|
-
const _191 = __importStar(require("./
|
|
55
|
-
const _192 = __importStar(require("./
|
|
56
|
-
const _193 = __importStar(require("./commons/
|
|
57
|
-
const _194 = __importStar(require("./commons/v1/
|
|
58
|
-
const _195 = __importStar(require("./commons/v1/
|
|
59
|
-
const _196 = __importStar(require("./commons/v1/
|
|
60
|
-
const _197 = __importStar(require("./commons/v1/
|
|
61
|
-
const _198 = __importStar(require("./commons/v1/
|
|
62
|
-
const _199 = __importStar(require("./
|
|
63
|
-
const _200 = __importStar(require("./ecosystem/
|
|
64
|
-
const _201 = __importStar(require("./ecosystem/v1/
|
|
65
|
-
const _202 = __importStar(require("./ecosystem/v1/
|
|
66
|
-
const _203 = __importStar(require("./ecosystem/v1/
|
|
67
|
-
const _204 = __importStar(require("./
|
|
68
|
-
const _205 = __importStar(require("./
|
|
69
|
-
const _206 = __importStar(require("./
|
|
70
|
-
const _207 = __importStar(require("./
|
|
71
|
-
const _208 = __importStar(require("./
|
|
72
|
-
const _209 = __importStar(require("./
|
|
73
|
-
const _210 = __importStar(require("./
|
|
74
|
-
const _211 = __importStar(require("./forum/v1/
|
|
75
|
-
const _212 = __importStar(require("./forum/v1/
|
|
76
|
-
const _213 = __importStar(require("./forum/v1/
|
|
77
|
-
const _214 = __importStar(require("./forum/v1/
|
|
78
|
-
const _215 = __importStar(require("./forum/v1/
|
|
54
|
+
const _191 = __importStar(require("./commons/module/v1/module"));
|
|
55
|
+
const _192 = __importStar(require("./commons/v1/category"));
|
|
56
|
+
const _193 = __importStar(require("./commons/v1/genesis"));
|
|
57
|
+
const _194 = __importStar(require("./commons/v1/group"));
|
|
58
|
+
const _195 = __importStar(require("./commons/v1/params"));
|
|
59
|
+
const _196 = __importStar(require("./commons/v1/policy_permissions"));
|
|
60
|
+
const _197 = __importStar(require("./commons/v1/query"));
|
|
61
|
+
const _198 = __importStar(require("./commons/v1/tx"));
|
|
62
|
+
const _199 = __importStar(require("./ecosystem/module/v1/module"));
|
|
63
|
+
const _200 = __importStar(require("./ecosystem/v1/genesis"));
|
|
64
|
+
const _201 = __importStar(require("./ecosystem/v1/params"));
|
|
65
|
+
const _202 = __importStar(require("./ecosystem/v1/query"));
|
|
66
|
+
const _203 = __importStar(require("./ecosystem/v1/tx"));
|
|
67
|
+
const _204 = __importStar(require("./federation/module/v1/module"));
|
|
68
|
+
const _205 = __importStar(require("./federation/v1/genesis"));
|
|
69
|
+
const _206 = __importStar(require("./federation/v1/packet"));
|
|
70
|
+
const _207 = __importStar(require("./federation/v1/params"));
|
|
71
|
+
const _208 = __importStar(require("./federation/v1/query"));
|
|
72
|
+
const _209 = __importStar(require("./federation/v1/tx"));
|
|
73
|
+
const _210 = __importStar(require("./federation/v1/types"));
|
|
74
|
+
const _211 = __importStar(require("./forum/module/v1/module"));
|
|
75
|
+
const _212 = __importStar(require("./forum/v1/archive_metadata"));
|
|
76
|
+
const _213 = __importStar(require("./forum/v1/bounty"));
|
|
77
|
+
const _214 = __importStar(require("./forum/v1/genesis"));
|
|
78
|
+
const _215 = __importStar(require("./forum/v1/hide_record"));
|
|
79
79
|
const _216 = __importStar(require("./forum/v1/params"));
|
|
80
80
|
const _217 = __importStar(require("./forum/v1/post_flag"));
|
|
81
81
|
const _218 = __importStar(require("./forum/v1/post"));
|
|
82
82
|
const _219 = __importStar(require("./forum/v1/query"));
|
|
83
83
|
const _220 = __importStar(require("./forum/v1/sentinel_activity"));
|
|
84
|
-
const _221 = __importStar(require("./forum/v1/
|
|
85
|
-
const _222 = __importStar(require("./forum/v1/
|
|
86
|
-
const _223 = __importStar(require("./forum/v1/
|
|
87
|
-
const _224 = __importStar(require("./forum/v1/
|
|
88
|
-
const _225 = __importStar(require("./forum/v1/
|
|
89
|
-
const _226 = __importStar(require("./forum/v1/
|
|
90
|
-
const _227 = __importStar(require("./forum/v1/
|
|
91
|
-
const _228 = __importStar(require("./forum/v1/
|
|
92
|
-
const _229 = __importStar(require("./forum/v1/
|
|
93
|
-
const _230 = __importStar(require("./
|
|
94
|
-
const _231 = __importStar(require("./
|
|
95
|
-
const _232 = __importStar(require("./
|
|
96
|
-
const _233 = __importStar(require("./futarchy/
|
|
97
|
-
const _234 = __importStar(require("./futarchy/v1/
|
|
98
|
-
const _235 = __importStar(require("./futarchy/v1/
|
|
99
|
-
const _236 = __importStar(require("./
|
|
100
|
-
const _237 = __importStar(require("./
|
|
101
|
-
const _238 = __importStar(require("./
|
|
102
|
-
const _239 = __importStar(require("./name/
|
|
103
|
-
const _240 = __importStar(require("./name/v1/
|
|
104
|
-
const _241 = __importStar(require("./name/v1/
|
|
105
|
-
const _242 = __importStar(require("./name/v1/
|
|
106
|
-
const _243 = __importStar(require("./name/v1/
|
|
107
|
-
const _244 = __importStar(require("./
|
|
108
|
-
const _245 = __importStar(require("./
|
|
109
|
-
const _246 = __importStar(require("./
|
|
110
|
-
const _247 = __importStar(require("./rep/
|
|
111
|
-
const _248 = __importStar(require("./rep/v1/
|
|
112
|
-
const _249 = __importStar(require("./rep/v1/
|
|
113
|
-
const _250 = __importStar(require("./rep/v1/
|
|
114
|
-
const _251 = __importStar(require("./rep/v1/
|
|
115
|
-
const _252 = __importStar(require("./rep/v1/
|
|
116
|
-
const _253 = __importStar(require("./rep/v1/
|
|
117
|
-
const _254 = __importStar(require("./rep/v1/
|
|
84
|
+
const _221 = __importStar(require("./forum/v1/thread_follow_count"));
|
|
85
|
+
const _222 = __importStar(require("./forum/v1/thread_follow"));
|
|
86
|
+
const _223 = __importStar(require("./forum/v1/thread_lock_record"));
|
|
87
|
+
const _224 = __importStar(require("./forum/v1/thread_metadata"));
|
|
88
|
+
const _225 = __importStar(require("./forum/v1/thread_move_record"));
|
|
89
|
+
const _226 = __importStar(require("./forum/v1/tx"));
|
|
90
|
+
const _227 = __importStar(require("./forum/v1/types"));
|
|
91
|
+
const _228 = __importStar(require("./forum/v1/user_rate_limit"));
|
|
92
|
+
const _229 = __importStar(require("./forum/v1/user_reaction_limit"));
|
|
93
|
+
const _230 = __importStar(require("./futarchy/module/v1/module"));
|
|
94
|
+
const _231 = __importStar(require("./futarchy/v1/genesis"));
|
|
95
|
+
const _232 = __importStar(require("./futarchy/v1/market"));
|
|
96
|
+
const _233 = __importStar(require("./futarchy/v1/params"));
|
|
97
|
+
const _234 = __importStar(require("./futarchy/v1/query"));
|
|
98
|
+
const _235 = __importStar(require("./futarchy/v1/tx"));
|
|
99
|
+
const _236 = __importStar(require("./name/module/v1/module"));
|
|
100
|
+
const _237 = __importStar(require("./name/v1/dispute"));
|
|
101
|
+
const _238 = __importStar(require("./name/v1/genesis"));
|
|
102
|
+
const _239 = __importStar(require("./name/v1/name_record"));
|
|
103
|
+
const _240 = __importStar(require("./name/v1/owner_info"));
|
|
104
|
+
const _241 = __importStar(require("./name/v1/params"));
|
|
105
|
+
const _242 = __importStar(require("./name/v1/query"));
|
|
106
|
+
const _243 = __importStar(require("./name/v1/tx"));
|
|
107
|
+
const _244 = __importStar(require("./rep/module/v1/module"));
|
|
108
|
+
const _245 = __importStar(require("./rep/v1/accountability"));
|
|
109
|
+
const _246 = __importStar(require("./rep/v1/challenge"));
|
|
110
|
+
const _247 = __importStar(require("./rep/v1/content_challenge"));
|
|
111
|
+
const _248 = __importStar(require("./rep/v1/genesis"));
|
|
112
|
+
const _249 = __importStar(require("./rep/v1/gov_action_appeal"));
|
|
113
|
+
const _250 = __importStar(require("./rep/v1/initiative"));
|
|
114
|
+
const _251 = __importStar(require("./rep/v1/interim_template"));
|
|
115
|
+
const _252 = __importStar(require("./rep/v1/interim"));
|
|
116
|
+
const _253 = __importStar(require("./rep/v1/invitation"));
|
|
117
|
+
const _254 = __importStar(require("./rep/v1/jury_participation"));
|
|
118
118
|
const _255 = __importStar(require("./rep/v1/jury_review"));
|
|
119
|
-
const _256 = __importStar(require("./rep/v1/
|
|
120
|
-
const _257 = __importStar(require("./rep/v1/
|
|
121
|
-
const _258 = __importStar(require("./rep/v1/
|
|
122
|
-
const _259 = __importStar(require("./rep/v1/
|
|
123
|
-
const _260 = __importStar(require("./rep/v1/
|
|
124
|
-
const _261 = __importStar(require("./rep/v1/
|
|
125
|
-
const _262 = __importStar(require("./
|
|
126
|
-
const _263 = __importStar(require("./
|
|
127
|
-
const _264 = __importStar(require("./
|
|
128
|
-
const _265 = __importStar(require("./
|
|
129
|
-
const _266 = __importStar(require("./
|
|
130
|
-
const _267 = __importStar(require("./
|
|
131
|
-
const _268 = __importStar(require("./
|
|
132
|
-
const _269 = __importStar(require("./
|
|
133
|
-
const _270 = __importStar(require("./
|
|
134
|
-
const _271 = __importStar(require("./
|
|
135
|
-
const _272 = __importStar(require("./
|
|
136
|
-
const _273 = __importStar(require("./
|
|
137
|
-
const _274 = __importStar(require("./
|
|
138
|
-
const _275 = __importStar(require("./
|
|
139
|
-
const _276 = __importStar(require("./season/v1/
|
|
140
|
-
const _277 = __importStar(require("./season/v1/
|
|
141
|
-
const _278 = __importStar(require("./season/v1/
|
|
142
|
-
const _279 = __importStar(require("./season/v1/
|
|
143
|
-
const _280 = __importStar(require("./season/v1/
|
|
144
|
-
const _281 = __importStar(require("./season/v1/
|
|
145
|
-
const _282 = __importStar(require("./season/v1/
|
|
146
|
-
const _283 = __importStar(require("./season/v1/
|
|
147
|
-
const _284 = __importStar(require("./season/v1/
|
|
148
|
-
const _285 = __importStar(require("./season/v1/
|
|
149
|
-
const _286 = __importStar(require("./season/v1/
|
|
150
|
-
const _287 = __importStar(require("./season/v1/
|
|
151
|
-
const _288 = __importStar(require("./season/v1/
|
|
152
|
-
const _289 = __importStar(require("./season/v1/
|
|
153
|
-
const _290 = __importStar(require("./season/v1/
|
|
154
|
-
const _291 = __importStar(require("./season/v1/
|
|
155
|
-
const _292 = __importStar(require("./season/v1/
|
|
156
|
-
const _293 = __importStar(require("./season/v1/
|
|
157
|
-
const _294 = __importStar(require("./season/v1/
|
|
158
|
-
const _295 = __importStar(require("./season/v1/
|
|
159
|
-
const _296 = __importStar(require("./season/v1/
|
|
160
|
-
const _297 = __importStar(require("./
|
|
161
|
-
const _298 = __importStar(require("./
|
|
162
|
-
const _299 = __importStar(require("./
|
|
163
|
-
const _300 = __importStar(require("./
|
|
164
|
-
const _301 = __importStar(require("./
|
|
165
|
-
const _302 = __importStar(require("./
|
|
166
|
-
const _303 = __importStar(require("./
|
|
167
|
-
const _304 = __importStar(require("./
|
|
168
|
-
const _305 = __importStar(require("./
|
|
169
|
-
const _306 = __importStar(require("./
|
|
170
|
-
const _307 = __importStar(require("./
|
|
171
|
-
const _308 = __importStar(require("./
|
|
172
|
-
const _309 = __importStar(require("./
|
|
173
|
-
const _310 = __importStar(require("./
|
|
174
|
-
const _311 = __importStar(require("./
|
|
175
|
-
const _312 = __importStar(require("./
|
|
176
|
-
const _313 = __importStar(require("./
|
|
177
|
-
const _314 = __importStar(require("./
|
|
178
|
-
const _315 = __importStar(require("./
|
|
179
|
-
const _316 = __importStar(require("./
|
|
180
|
-
const _317 = __importStar(require("./
|
|
181
|
-
const _318 = __importStar(require("./
|
|
182
|
-
const _319 = __importStar(require("./
|
|
183
|
-
const
|
|
184
|
-
const
|
|
185
|
-
const
|
|
186
|
-
const
|
|
187
|
-
const
|
|
188
|
-
const
|
|
189
|
-
const
|
|
190
|
-
const
|
|
191
|
-
const _476 = __importStar(require("./
|
|
192
|
-
const _477 = __importStar(require("./
|
|
193
|
-
const _478 = __importStar(require("./
|
|
194
|
-
const _479 = __importStar(require("./
|
|
195
|
-
const _480 = __importStar(require("./
|
|
196
|
-
const _481 = __importStar(require("./
|
|
197
|
-
const _482 = __importStar(require("./
|
|
198
|
-
const _483 = __importStar(require("./
|
|
199
|
-
const _484 = __importStar(require("./
|
|
200
|
-
const _485 = __importStar(require("./
|
|
201
|
-
const _486 = __importStar(require("./
|
|
202
|
-
const _487 = __importStar(require("./
|
|
203
|
-
const _488 = __importStar(require("./
|
|
204
|
-
const _489 = __importStar(require("./
|
|
205
|
-
const _490 = __importStar(require("./
|
|
206
|
-
const _491 = __importStar(require("./
|
|
207
|
-
const _492 = __importStar(require("./
|
|
208
|
-
const _493 = __importStar(require("./
|
|
209
|
-
const _494 = __importStar(require("./
|
|
210
|
-
const _495 = __importStar(require("./
|
|
211
|
-
const _496 = __importStar(require("./
|
|
212
|
-
const _497 = __importStar(require("./
|
|
213
|
-
const _498 = __importStar(require("./
|
|
214
|
-
const _499 = __importStar(require("./
|
|
215
|
-
const _500 = __importStar(require("./
|
|
216
|
-
const _501 = __importStar(require("./
|
|
217
|
-
const _502 = __importStar(require("./
|
|
218
|
-
const _503 = __importStar(require("./
|
|
219
|
-
const _504 = __importStar(require("./
|
|
220
|
-
const _505 = __importStar(require("./
|
|
221
|
-
const _506 = __importStar(require("./
|
|
222
|
-
const _507 = __importStar(require("./
|
|
223
|
-
const _508 = __importStar(require("./
|
|
224
|
-
const _509 = __importStar(require("./
|
|
225
|
-
const _510 = __importStar(require("./
|
|
226
|
-
const _511 = __importStar(require("./
|
|
227
|
-
const _512 = __importStar(require("./
|
|
228
|
-
const _513 = __importStar(require("./
|
|
229
|
-
const _514 = __importStar(require("./
|
|
230
|
-
const _515 = __importStar(require("./
|
|
231
|
-
const _516 = __importStar(require("./
|
|
232
|
-
const _517 = __importStar(require("./
|
|
233
|
-
const _518 = __importStar(require("./
|
|
234
|
-
const _519 = __importStar(require("./
|
|
235
|
-
const _520 = __importStar(require("./
|
|
236
|
-
const _521 = __importStar(require("./
|
|
237
|
-
const _522 = __importStar(require("./
|
|
238
|
-
const _523 = __importStar(require("./
|
|
239
|
-
const _524 = __importStar(require("./
|
|
240
|
-
const _525 = __importStar(require("./
|
|
241
|
-
const _526 = __importStar(require("./
|
|
242
|
-
const _527 = __importStar(require("./
|
|
243
|
-
const _528 = __importStar(require("./
|
|
244
|
-
const _529 = __importStar(require("./
|
|
245
|
-
const _530 = __importStar(require("./
|
|
246
|
-
const _531 = __importStar(require("./
|
|
247
|
-
const _532 = __importStar(require("./
|
|
248
|
-
const _533 = __importStar(require("./
|
|
249
|
-
const _534 = __importStar(require("./
|
|
250
|
-
const _535 = __importStar(require("./
|
|
251
|
-
const _536 = __importStar(require("./
|
|
252
|
-
const _537 = __importStar(require("./
|
|
253
|
-
const
|
|
254
|
-
const
|
|
255
|
-
const
|
|
119
|
+
const _256 = __importStar(require("./rep/v1/member_report"));
|
|
120
|
+
const _257 = __importStar(require("./rep/v1/member_warning"));
|
|
121
|
+
const _258 = __importStar(require("./rep/v1/member"));
|
|
122
|
+
const _259 = __importStar(require("./rep/v1/params"));
|
|
123
|
+
const _260 = __importStar(require("./rep/v1/project"));
|
|
124
|
+
const _261 = __importStar(require("./rep/v1/query"));
|
|
125
|
+
const _262 = __importStar(require("./rep/v1/reserved_tag"));
|
|
126
|
+
const _263 = __importStar(require("./rep/v1/sentinel_activity"));
|
|
127
|
+
const _264 = __importStar(require("./rep/v1/stake"));
|
|
128
|
+
const _265 = __importStar(require("./rep/v1/tag_budget_award"));
|
|
129
|
+
const _266 = __importStar(require("./rep/v1/tag_budget"));
|
|
130
|
+
const _267 = __importStar(require("./rep/v1/tag_report"));
|
|
131
|
+
const _268 = __importStar(require("./rep/v1/tag"));
|
|
132
|
+
const _269 = __importStar(require("./rep/v1/tx"));
|
|
133
|
+
const _270 = __importStar(require("./reveal/module/v1/module"));
|
|
134
|
+
const _271 = __importStar(require("./reveal/v1/genesis"));
|
|
135
|
+
const _272 = __importStar(require("./reveal/v1/params"));
|
|
136
|
+
const _273 = __importStar(require("./reveal/v1/query"));
|
|
137
|
+
const _274 = __importStar(require("./reveal/v1/tx"));
|
|
138
|
+
const _275 = __importStar(require("./reveal/v1/types"));
|
|
139
|
+
const _276 = __importStar(require("./season/module/v1/module"));
|
|
140
|
+
const _277 = __importStar(require("./season/v1/achievement"));
|
|
141
|
+
const _278 = __importStar(require("./season/v1/display_name_appeal_stake"));
|
|
142
|
+
const _279 = __importStar(require("./season/v1/display_name_moderation"));
|
|
143
|
+
const _280 = __importStar(require("./season/v1/display_name_report_stake"));
|
|
144
|
+
const _281 = __importStar(require("./season/v1/enums"));
|
|
145
|
+
const _282 = __importStar(require("./season/v1/epoch_xp_tracker"));
|
|
146
|
+
const _283 = __importStar(require("./season/v1/forum_xp_cooldown"));
|
|
147
|
+
const _284 = __importStar(require("./season/v1/genesis"));
|
|
148
|
+
const _285 = __importStar(require("./season/v1/guild_invite"));
|
|
149
|
+
const _286 = __importStar(require("./season/v1/guild_membership"));
|
|
150
|
+
const _287 = __importStar(require("./season/v1/guild"));
|
|
151
|
+
const _288 = __importStar(require("./season/v1/member_profile"));
|
|
152
|
+
const _289 = __importStar(require("./season/v1/member_quest_progress"));
|
|
153
|
+
const _290 = __importStar(require("./season/v1/member_registration"));
|
|
154
|
+
const _291 = __importStar(require("./season/v1/member_season_snapshot"));
|
|
155
|
+
const _292 = __importStar(require("./season/v1/next_season_info"));
|
|
156
|
+
const _293 = __importStar(require("./season/v1/nomination"));
|
|
157
|
+
const _294 = __importStar(require("./season/v1/params"));
|
|
158
|
+
const _295 = __importStar(require("./season/v1/query"));
|
|
159
|
+
const _296 = __importStar(require("./season/v1/quest"));
|
|
160
|
+
const _297 = __importStar(require("./season/v1/season_snapshot"));
|
|
161
|
+
const _298 = __importStar(require("./season/v1/season_title_eligibility"));
|
|
162
|
+
const _299 = __importStar(require("./season/v1/season_transition_state"));
|
|
163
|
+
const _300 = __importStar(require("./season/v1/season"));
|
|
164
|
+
const _301 = __importStar(require("./season/v1/title"));
|
|
165
|
+
const _302 = __importStar(require("./season/v1/transition_recovery_state"));
|
|
166
|
+
const _303 = __importStar(require("./season/v1/tx"));
|
|
167
|
+
const _304 = __importStar(require("./season/v1/vote_xp_record"));
|
|
168
|
+
const _305 = __importStar(require("./session/module/v1/module"));
|
|
169
|
+
const _306 = __importStar(require("./session/v1/genesis"));
|
|
170
|
+
const _307 = __importStar(require("./session/v1/params"));
|
|
171
|
+
const _308 = __importStar(require("./session/v1/query"));
|
|
172
|
+
const _309 = __importStar(require("./session/v1/session"));
|
|
173
|
+
const _310 = __importStar(require("./session/v1/tx"));
|
|
174
|
+
const _311 = __importStar(require("./shield/module/v1/module"));
|
|
175
|
+
const _312 = __importStar(require("./shield/v1/genesis"));
|
|
176
|
+
const _313 = __importStar(require("./shield/v1/params"));
|
|
177
|
+
const _314 = __importStar(require("./shield/v1/query"));
|
|
178
|
+
const _315 = __importStar(require("./shield/v1/tx"));
|
|
179
|
+
const _316 = __importStar(require("./shield/v1/types"));
|
|
180
|
+
const _317 = __importStar(require("./sparkdream/module/v1/module"));
|
|
181
|
+
const _318 = __importStar(require("./sparkdream/v1/genesis"));
|
|
182
|
+
const _319 = __importStar(require("./sparkdream/v1/params"));
|
|
183
|
+
const _320 = __importStar(require("./sparkdream/v1/query"));
|
|
184
|
+
const _321 = __importStar(require("./sparkdream/v1/tx"));
|
|
185
|
+
const _322 = __importStar(require("./split/module/v1/module"));
|
|
186
|
+
const _323 = __importStar(require("./split/v1/genesis"));
|
|
187
|
+
const _324 = __importStar(require("./split/v1/params"));
|
|
188
|
+
const _325 = __importStar(require("./split/v1/query"));
|
|
189
|
+
const _326 = __importStar(require("./split/v1/share"));
|
|
190
|
+
const _327 = __importStar(require("./split/v1/tx"));
|
|
191
|
+
const _476 = __importStar(require("./blog/v1/tx.amino"));
|
|
192
|
+
const _477 = __importStar(require("./collect/v1/tx.amino"));
|
|
193
|
+
const _478 = __importStar(require("./commons/v1/tx.amino"));
|
|
194
|
+
const _479 = __importStar(require("./ecosystem/v1/tx.amino"));
|
|
195
|
+
const _480 = __importStar(require("./federation/v1/tx.amino"));
|
|
196
|
+
const _481 = __importStar(require("./forum/v1/tx.amino"));
|
|
197
|
+
const _482 = __importStar(require("./futarchy/v1/tx.amino"));
|
|
198
|
+
const _483 = __importStar(require("./name/v1/tx.amino"));
|
|
199
|
+
const _484 = __importStar(require("./rep/v1/tx.amino"));
|
|
200
|
+
const _485 = __importStar(require("./reveal/v1/tx.amino"));
|
|
201
|
+
const _486 = __importStar(require("./season/v1/tx.amino"));
|
|
202
|
+
const _487 = __importStar(require("./session/v1/tx.amino"));
|
|
203
|
+
const _488 = __importStar(require("./shield/v1/tx.amino"));
|
|
204
|
+
const _489 = __importStar(require("./sparkdream/v1/tx.amino"));
|
|
205
|
+
const _490 = __importStar(require("./split/v1/tx.amino"));
|
|
206
|
+
const _491 = __importStar(require("./blog/v1/tx.registry"));
|
|
207
|
+
const _492 = __importStar(require("./collect/v1/tx.registry"));
|
|
208
|
+
const _493 = __importStar(require("./commons/v1/tx.registry"));
|
|
209
|
+
const _494 = __importStar(require("./ecosystem/v1/tx.registry"));
|
|
210
|
+
const _495 = __importStar(require("./federation/v1/tx.registry"));
|
|
211
|
+
const _496 = __importStar(require("./forum/v1/tx.registry"));
|
|
212
|
+
const _497 = __importStar(require("./futarchy/v1/tx.registry"));
|
|
213
|
+
const _498 = __importStar(require("./name/v1/tx.registry"));
|
|
214
|
+
const _499 = __importStar(require("./rep/v1/tx.registry"));
|
|
215
|
+
const _500 = __importStar(require("./reveal/v1/tx.registry"));
|
|
216
|
+
const _501 = __importStar(require("./season/v1/tx.registry"));
|
|
217
|
+
const _502 = __importStar(require("./session/v1/tx.registry"));
|
|
218
|
+
const _503 = __importStar(require("./shield/v1/tx.registry"));
|
|
219
|
+
const _504 = __importStar(require("./sparkdream/v1/tx.registry"));
|
|
220
|
+
const _505 = __importStar(require("./split/v1/tx.registry"));
|
|
221
|
+
const _506 = __importStar(require("./blog/v1/query.lcd"));
|
|
222
|
+
const _507 = __importStar(require("./collect/v1/query.lcd"));
|
|
223
|
+
const _508 = __importStar(require("./commons/v1/query.lcd"));
|
|
224
|
+
const _509 = __importStar(require("./ecosystem/v1/query.lcd"));
|
|
225
|
+
const _510 = __importStar(require("./federation/v1/query.lcd"));
|
|
226
|
+
const _511 = __importStar(require("./forum/v1/query.lcd"));
|
|
227
|
+
const _512 = __importStar(require("./futarchy/v1/query.lcd"));
|
|
228
|
+
const _513 = __importStar(require("./name/v1/query.lcd"));
|
|
229
|
+
const _514 = __importStar(require("./rep/v1/query.lcd"));
|
|
230
|
+
const _515 = __importStar(require("./reveal/v1/query.lcd"));
|
|
231
|
+
const _516 = __importStar(require("./season/v1/query.lcd"));
|
|
232
|
+
const _517 = __importStar(require("./session/v1/query.lcd"));
|
|
233
|
+
const _518 = __importStar(require("./shield/v1/query.lcd"));
|
|
234
|
+
const _519 = __importStar(require("./sparkdream/v1/query.lcd"));
|
|
235
|
+
const _520 = __importStar(require("./split/v1/query.lcd"));
|
|
236
|
+
const _521 = __importStar(require("./blog/v1/query.rpc.Query"));
|
|
237
|
+
const _522 = __importStar(require("./collect/v1/query.rpc.Query"));
|
|
238
|
+
const _523 = __importStar(require("./commons/v1/query.rpc.Query"));
|
|
239
|
+
const _524 = __importStar(require("./ecosystem/v1/query.rpc.Query"));
|
|
240
|
+
const _525 = __importStar(require("./federation/v1/query.rpc.Query"));
|
|
241
|
+
const _526 = __importStar(require("./forum/v1/query.rpc.Query"));
|
|
242
|
+
const _527 = __importStar(require("./futarchy/v1/query.rpc.Query"));
|
|
243
|
+
const _528 = __importStar(require("./name/v1/query.rpc.Query"));
|
|
244
|
+
const _529 = __importStar(require("./rep/v1/query.rpc.Query"));
|
|
245
|
+
const _530 = __importStar(require("./reveal/v1/query.rpc.Query"));
|
|
246
|
+
const _531 = __importStar(require("./season/v1/query.rpc.Query"));
|
|
247
|
+
const _532 = __importStar(require("./session/v1/query.rpc.Query"));
|
|
248
|
+
const _533 = __importStar(require("./shield/v1/query.rpc.Query"));
|
|
249
|
+
const _534 = __importStar(require("./sparkdream/v1/query.rpc.Query"));
|
|
250
|
+
const _535 = __importStar(require("./split/v1/query.rpc.Query"));
|
|
251
|
+
const _536 = __importStar(require("./blog/v1/tx.rpc.msg"));
|
|
252
|
+
const _537 = __importStar(require("./collect/v1/tx.rpc.msg"));
|
|
253
|
+
const _538 = __importStar(require("./commons/v1/tx.rpc.msg"));
|
|
254
|
+
const _539 = __importStar(require("./ecosystem/v1/tx.rpc.msg"));
|
|
255
|
+
const _540 = __importStar(require("./federation/v1/tx.rpc.msg"));
|
|
256
|
+
const _541 = __importStar(require("./forum/v1/tx.rpc.msg"));
|
|
257
|
+
const _542 = __importStar(require("./futarchy/v1/tx.rpc.msg"));
|
|
258
|
+
const _543 = __importStar(require("./name/v1/tx.rpc.msg"));
|
|
259
|
+
const _544 = __importStar(require("./rep/v1/tx.rpc.msg"));
|
|
260
|
+
const _545 = __importStar(require("./reveal/v1/tx.rpc.msg"));
|
|
261
|
+
const _546 = __importStar(require("./season/v1/tx.rpc.msg"));
|
|
262
|
+
const _547 = __importStar(require("./session/v1/tx.rpc.msg"));
|
|
263
|
+
const _548 = __importStar(require("./shield/v1/tx.rpc.msg"));
|
|
264
|
+
const _549 = __importStar(require("./sparkdream/v1/tx.rpc.msg"));
|
|
265
|
+
const _550 = __importStar(require("./split/v1/tx.rpc.msg"));
|
|
266
|
+
const _557 = __importStar(require("./lcd"));
|
|
267
|
+
const _558 = __importStar(require("./rpc.query"));
|
|
268
|
+
const _559 = __importStar(require("./rpc.tx"));
|
|
256
269
|
var sparkdream;
|
|
257
270
|
(function (sparkdream_1) {
|
|
258
271
|
let blog;
|
|
@@ -270,11 +283,11 @@ var sparkdream;
|
|
|
270
283
|
..._179,
|
|
271
284
|
..._180,
|
|
272
285
|
..._181,
|
|
273
|
-
...
|
|
274
|
-
...
|
|
275
|
-
...
|
|
276
|
-
...
|
|
277
|
-
...
|
|
286
|
+
..._476,
|
|
287
|
+
..._491,
|
|
288
|
+
..._506,
|
|
289
|
+
..._521,
|
|
290
|
+
..._536
|
|
278
291
|
};
|
|
279
292
|
})(blog = sparkdream_1.blog || (sparkdream_1.blog = {}));
|
|
280
293
|
let collect;
|
|
@@ -291,11 +304,11 @@ var sparkdream;
|
|
|
291
304
|
..._185,
|
|
292
305
|
..._186,
|
|
293
306
|
..._187,
|
|
294
|
-
...
|
|
295
|
-
...
|
|
296
|
-
...
|
|
297
|
-
...
|
|
298
|
-
...
|
|
307
|
+
..._477,
|
|
308
|
+
..._492,
|
|
309
|
+
..._507,
|
|
310
|
+
..._522,
|
|
311
|
+
..._537
|
|
299
312
|
};
|
|
300
313
|
})(collect = sparkdream_1.collect || (sparkdream_1.collect = {}));
|
|
301
314
|
let common;
|
|
@@ -303,9 +316,7 @@ var sparkdream;
|
|
|
303
316
|
common.v1 = {
|
|
304
317
|
..._188,
|
|
305
318
|
..._189,
|
|
306
|
-
..._190
|
|
307
|
-
..._191,
|
|
308
|
-
..._192
|
|
319
|
+
..._190
|
|
309
320
|
};
|
|
310
321
|
})(common = sparkdream_1.common || (sparkdream_1.common = {}));
|
|
311
322
|
let commons;
|
|
@@ -313,21 +324,22 @@ var sparkdream;
|
|
|
313
324
|
let module;
|
|
314
325
|
(function (module) {
|
|
315
326
|
module.v1 = {
|
|
316
|
-
...
|
|
327
|
+
..._191
|
|
317
328
|
};
|
|
318
329
|
})(module = commons.module || (commons.module = {}));
|
|
319
330
|
commons.v1 = {
|
|
331
|
+
..._192,
|
|
332
|
+
..._193,
|
|
320
333
|
..._194,
|
|
321
334
|
..._195,
|
|
322
335
|
..._196,
|
|
323
336
|
..._197,
|
|
324
337
|
..._198,
|
|
325
|
-
...
|
|
326
|
-
...
|
|
327
|
-
...
|
|
328
|
-
...
|
|
329
|
-
...
|
|
330
|
-
..._526
|
|
338
|
+
..._478,
|
|
339
|
+
..._493,
|
|
340
|
+
..._508,
|
|
341
|
+
..._523,
|
|
342
|
+
..._538
|
|
331
343
|
};
|
|
332
344
|
})(commons = sparkdream_1.commons || (sparkdream_1.commons = {}));
|
|
333
345
|
let ecosystem;
|
|
@@ -335,36 +347,52 @@ var sparkdream;
|
|
|
335
347
|
let module;
|
|
336
348
|
(function (module) {
|
|
337
349
|
module.v1 = {
|
|
338
|
-
...
|
|
350
|
+
..._199
|
|
339
351
|
};
|
|
340
352
|
})(module = ecosystem.module || (ecosystem.module = {}));
|
|
341
353
|
ecosystem.v1 = {
|
|
354
|
+
..._200,
|
|
342
355
|
..._201,
|
|
343
356
|
..._202,
|
|
344
357
|
..._203,
|
|
345
|
-
...
|
|
346
|
-
...
|
|
347
|
-
...
|
|
348
|
-
...
|
|
349
|
-
...
|
|
350
|
-
..._527
|
|
358
|
+
..._479,
|
|
359
|
+
..._494,
|
|
360
|
+
..._509,
|
|
361
|
+
..._524,
|
|
362
|
+
..._539
|
|
351
363
|
};
|
|
352
364
|
})(ecosystem = sparkdream_1.ecosystem || (sparkdream_1.ecosystem = {}));
|
|
353
|
-
let
|
|
354
|
-
(function (
|
|
365
|
+
let federation;
|
|
366
|
+
(function (federation) {
|
|
355
367
|
let module;
|
|
356
368
|
(function (module) {
|
|
357
369
|
module.v1 = {
|
|
358
|
-
...
|
|
370
|
+
..._204
|
|
359
371
|
};
|
|
360
|
-
})(module =
|
|
361
|
-
|
|
372
|
+
})(module = federation.module || (federation.module = {}));
|
|
373
|
+
federation.v1 = {
|
|
374
|
+
..._205,
|
|
362
375
|
..._206,
|
|
363
376
|
..._207,
|
|
364
377
|
..._208,
|
|
365
378
|
..._209,
|
|
366
379
|
..._210,
|
|
367
|
-
...
|
|
380
|
+
..._480,
|
|
381
|
+
..._495,
|
|
382
|
+
..._510,
|
|
383
|
+
..._525,
|
|
384
|
+
..._540
|
|
385
|
+
};
|
|
386
|
+
})(federation = sparkdream_1.federation || (sparkdream_1.federation = {}));
|
|
387
|
+
let forum;
|
|
388
|
+
(function (forum) {
|
|
389
|
+
let module;
|
|
390
|
+
(function (module) {
|
|
391
|
+
module.v1 = {
|
|
392
|
+
..._211
|
|
393
|
+
};
|
|
394
|
+
})(module = forum.module || (forum.module = {}));
|
|
395
|
+
forum.v1 = {
|
|
368
396
|
..._212,
|
|
369
397
|
..._213,
|
|
370
398
|
..._214,
|
|
@@ -383,14 +411,11 @@ var sparkdream;
|
|
|
383
411
|
..._227,
|
|
384
412
|
..._228,
|
|
385
413
|
..._229,
|
|
386
|
-
...
|
|
387
|
-
...
|
|
388
|
-
...
|
|
389
|
-
...
|
|
390
|
-
...
|
|
391
|
-
..._500,
|
|
392
|
-
..._514,
|
|
393
|
-
..._528
|
|
414
|
+
..._481,
|
|
415
|
+
..._496,
|
|
416
|
+
..._511,
|
|
417
|
+
..._526,
|
|
418
|
+
..._541
|
|
394
419
|
};
|
|
395
420
|
})(forum = sparkdream_1.forum || (sparkdream_1.forum = {}));
|
|
396
421
|
let futarchy;
|
|
@@ -398,20 +423,20 @@ var sparkdream;
|
|
|
398
423
|
let module;
|
|
399
424
|
(function (module) {
|
|
400
425
|
module.v1 = {
|
|
401
|
-
...
|
|
426
|
+
..._230
|
|
402
427
|
};
|
|
403
428
|
})(module = futarchy.module || (futarchy.module = {}));
|
|
404
429
|
futarchy.v1 = {
|
|
430
|
+
..._231,
|
|
431
|
+
..._232,
|
|
432
|
+
..._233,
|
|
405
433
|
..._234,
|
|
406
434
|
..._235,
|
|
407
|
-
...
|
|
408
|
-
...
|
|
409
|
-
...
|
|
410
|
-
...
|
|
411
|
-
...
|
|
412
|
-
..._501,
|
|
413
|
-
..._515,
|
|
414
|
-
..._529
|
|
435
|
+
..._482,
|
|
436
|
+
..._497,
|
|
437
|
+
..._512,
|
|
438
|
+
..._527,
|
|
439
|
+
..._542
|
|
415
440
|
};
|
|
416
441
|
})(futarchy = sparkdream_1.futarchy || (sparkdream_1.futarchy = {}));
|
|
417
442
|
let name;
|
|
@@ -419,22 +444,22 @@ var sparkdream;
|
|
|
419
444
|
let module;
|
|
420
445
|
(function (module) {
|
|
421
446
|
module.v1 = {
|
|
422
|
-
...
|
|
447
|
+
..._236
|
|
423
448
|
};
|
|
424
449
|
})(module = name.module || (name.module = {}));
|
|
425
450
|
name.v1 = {
|
|
451
|
+
..._237,
|
|
452
|
+
..._238,
|
|
453
|
+
..._239,
|
|
426
454
|
..._240,
|
|
427
455
|
..._241,
|
|
428
456
|
..._242,
|
|
429
457
|
..._243,
|
|
430
|
-
...
|
|
431
|
-
...
|
|
432
|
-
...
|
|
433
|
-
...
|
|
434
|
-
...
|
|
435
|
-
..._502,
|
|
436
|
-
..._516,
|
|
437
|
-
..._530
|
|
458
|
+
..._483,
|
|
459
|
+
..._498,
|
|
460
|
+
..._513,
|
|
461
|
+
..._528,
|
|
462
|
+
..._543
|
|
438
463
|
};
|
|
439
464
|
})(name = sparkdream_1.name || (sparkdream_1.name = {}));
|
|
440
465
|
let rep;
|
|
@@ -442,10 +467,13 @@ var sparkdream;
|
|
|
442
467
|
let module;
|
|
443
468
|
(function (module) {
|
|
444
469
|
module.v1 = {
|
|
445
|
-
...
|
|
470
|
+
..._244
|
|
446
471
|
};
|
|
447
472
|
})(module = rep.module || (rep.module = {}));
|
|
448
473
|
rep.v1 = {
|
|
474
|
+
..._245,
|
|
475
|
+
..._246,
|
|
476
|
+
..._247,
|
|
449
477
|
..._248,
|
|
450
478
|
..._249,
|
|
451
479
|
..._250,
|
|
@@ -460,11 +488,19 @@ var sparkdream;
|
|
|
460
488
|
..._259,
|
|
461
489
|
..._260,
|
|
462
490
|
..._261,
|
|
463
|
-
...
|
|
464
|
-
...
|
|
465
|
-
...
|
|
466
|
-
...
|
|
467
|
-
...
|
|
491
|
+
..._262,
|
|
492
|
+
..._263,
|
|
493
|
+
..._264,
|
|
494
|
+
..._265,
|
|
495
|
+
..._266,
|
|
496
|
+
..._267,
|
|
497
|
+
..._268,
|
|
498
|
+
..._269,
|
|
499
|
+
..._484,
|
|
500
|
+
..._499,
|
|
501
|
+
..._514,
|
|
502
|
+
..._529,
|
|
503
|
+
..._544
|
|
468
504
|
};
|
|
469
505
|
})(rep = sparkdream_1.rep || (sparkdream_1.rep = {}));
|
|
470
506
|
let reveal;
|
|
@@ -472,20 +508,20 @@ var sparkdream;
|
|
|
472
508
|
let module;
|
|
473
509
|
(function (module) {
|
|
474
510
|
module.v1 = {
|
|
475
|
-
...
|
|
511
|
+
..._270
|
|
476
512
|
};
|
|
477
513
|
})(module = reveal.module || (reveal.module = {}));
|
|
478
514
|
reveal.v1 = {
|
|
479
|
-
...
|
|
480
|
-
...
|
|
481
|
-
...
|
|
482
|
-
...
|
|
483
|
-
...
|
|
484
|
-
...
|
|
485
|
-
...
|
|
486
|
-
...
|
|
487
|
-
...
|
|
488
|
-
...
|
|
515
|
+
..._271,
|
|
516
|
+
..._272,
|
|
517
|
+
..._273,
|
|
518
|
+
..._274,
|
|
519
|
+
..._275,
|
|
520
|
+
..._485,
|
|
521
|
+
..._500,
|
|
522
|
+
..._515,
|
|
523
|
+
..._530,
|
|
524
|
+
..._545
|
|
489
525
|
};
|
|
490
526
|
})(reveal = sparkdream_1.reveal || (sparkdream_1.reveal = {}));
|
|
491
527
|
let season;
|
|
@@ -493,18 +529,10 @@ var sparkdream;
|
|
|
493
529
|
let module;
|
|
494
530
|
(function (module) {
|
|
495
531
|
module.v1 = {
|
|
496
|
-
...
|
|
532
|
+
..._276
|
|
497
533
|
};
|
|
498
534
|
})(module = season.module || (season.module = {}));
|
|
499
535
|
season.v1 = {
|
|
500
|
-
..._269,
|
|
501
|
-
..._270,
|
|
502
|
-
..._271,
|
|
503
|
-
..._272,
|
|
504
|
-
..._273,
|
|
505
|
-
..._274,
|
|
506
|
-
..._275,
|
|
507
|
-
..._276,
|
|
508
536
|
..._277,
|
|
509
537
|
..._278,
|
|
510
538
|
..._279,
|
|
@@ -525,11 +553,19 @@ var sparkdream;
|
|
|
525
553
|
..._294,
|
|
526
554
|
..._295,
|
|
527
555
|
..._296,
|
|
528
|
-
...
|
|
529
|
-
...
|
|
530
|
-
...
|
|
531
|
-
...
|
|
532
|
-
...
|
|
556
|
+
..._297,
|
|
557
|
+
..._298,
|
|
558
|
+
..._299,
|
|
559
|
+
..._300,
|
|
560
|
+
..._301,
|
|
561
|
+
..._302,
|
|
562
|
+
..._303,
|
|
563
|
+
..._304,
|
|
564
|
+
..._486,
|
|
565
|
+
..._501,
|
|
566
|
+
..._516,
|
|
567
|
+
..._531,
|
|
568
|
+
..._546
|
|
533
569
|
};
|
|
534
570
|
})(season = sparkdream_1.season || (sparkdream_1.season = {}));
|
|
535
571
|
let session;
|
|
@@ -537,20 +573,20 @@ var sparkdream;
|
|
|
537
573
|
let module;
|
|
538
574
|
(function (module) {
|
|
539
575
|
module.v1 = {
|
|
540
|
-
...
|
|
576
|
+
..._305
|
|
541
577
|
};
|
|
542
578
|
})(module = session.module || (session.module = {}));
|
|
543
579
|
session.v1 = {
|
|
544
|
-
...
|
|
545
|
-
...
|
|
546
|
-
...
|
|
547
|
-
...
|
|
548
|
-
...
|
|
549
|
-
...
|
|
550
|
-
...
|
|
551
|
-
...
|
|
552
|
-
...
|
|
553
|
-
...
|
|
580
|
+
..._306,
|
|
581
|
+
..._307,
|
|
582
|
+
..._308,
|
|
583
|
+
..._309,
|
|
584
|
+
..._310,
|
|
585
|
+
..._487,
|
|
586
|
+
..._502,
|
|
587
|
+
..._517,
|
|
588
|
+
..._532,
|
|
589
|
+
..._547
|
|
554
590
|
};
|
|
555
591
|
})(session = sparkdream_1.session || (sparkdream_1.session = {}));
|
|
556
592
|
let shield;
|
|
@@ -558,20 +594,20 @@ var sparkdream;
|
|
|
558
594
|
let module;
|
|
559
595
|
(function (module) {
|
|
560
596
|
module.v1 = {
|
|
561
|
-
...
|
|
597
|
+
..._311
|
|
562
598
|
};
|
|
563
599
|
})(module = shield.module || (shield.module = {}));
|
|
564
600
|
shield.v1 = {
|
|
565
|
-
...
|
|
566
|
-
...
|
|
567
|
-
...
|
|
568
|
-
...
|
|
569
|
-
...
|
|
570
|
-
...
|
|
571
|
-
...
|
|
572
|
-
...
|
|
573
|
-
...
|
|
574
|
-
...
|
|
601
|
+
..._312,
|
|
602
|
+
..._313,
|
|
603
|
+
..._314,
|
|
604
|
+
..._315,
|
|
605
|
+
..._316,
|
|
606
|
+
..._488,
|
|
607
|
+
..._503,
|
|
608
|
+
..._518,
|
|
609
|
+
..._533,
|
|
610
|
+
..._548
|
|
575
611
|
};
|
|
576
612
|
})(shield = sparkdream_1.shield || (sparkdream_1.shield = {}));
|
|
577
613
|
let sparkdream;
|
|
@@ -579,19 +615,19 @@ var sparkdream;
|
|
|
579
615
|
let module;
|
|
580
616
|
(function (module) {
|
|
581
617
|
module.v1 = {
|
|
582
|
-
...
|
|
618
|
+
..._317
|
|
583
619
|
};
|
|
584
620
|
})(module = sparkdream.module || (sparkdream.module = {}));
|
|
585
621
|
sparkdream.v1 = {
|
|
586
|
-
...
|
|
587
|
-
...
|
|
588
|
-
...
|
|
589
|
-
...
|
|
590
|
-
...
|
|
591
|
-
...
|
|
592
|
-
...
|
|
593
|
-
...
|
|
594
|
-
...
|
|
622
|
+
..._318,
|
|
623
|
+
..._319,
|
|
624
|
+
..._320,
|
|
625
|
+
..._321,
|
|
626
|
+
..._489,
|
|
627
|
+
..._504,
|
|
628
|
+
..._519,
|
|
629
|
+
..._534,
|
|
630
|
+
..._549
|
|
595
631
|
};
|
|
596
632
|
})(sparkdream = sparkdream_1.sparkdream || (sparkdream_1.sparkdream = {}));
|
|
597
633
|
let split;
|
|
@@ -599,25 +635,25 @@ var sparkdream;
|
|
|
599
635
|
let module;
|
|
600
636
|
(function (module) {
|
|
601
637
|
module.v1 = {
|
|
602
|
-
...
|
|
638
|
+
..._322
|
|
603
639
|
};
|
|
604
640
|
})(module = split.module || (split.module = {}));
|
|
605
641
|
split.v1 = {
|
|
606
|
-
...
|
|
607
|
-
...
|
|
608
|
-
...
|
|
609
|
-
...
|
|
610
|
-
...
|
|
611
|
-
...
|
|
612
|
-
...
|
|
613
|
-
...
|
|
614
|
-
...
|
|
615
|
-
...
|
|
642
|
+
..._323,
|
|
643
|
+
..._324,
|
|
644
|
+
..._325,
|
|
645
|
+
..._326,
|
|
646
|
+
..._327,
|
|
647
|
+
..._490,
|
|
648
|
+
..._505,
|
|
649
|
+
..._520,
|
|
650
|
+
..._535,
|
|
651
|
+
..._550
|
|
616
652
|
};
|
|
617
653
|
})(split = sparkdream_1.split || (sparkdream_1.split = {}));
|
|
618
654
|
sparkdream_1.ClientFactory = {
|
|
619
|
-
...
|
|
620
|
-
...
|
|
621
|
-
...
|
|
655
|
+
..._557,
|
|
656
|
+
..._558,
|
|
657
|
+
..._559
|
|
622
658
|
};
|
|
623
659
|
})(sparkdream || (exports.sparkdream = sparkdream = {}));
|