@agoric/governance 0.10.4-upgrade-14-dev-c8f9e7b.0 → 0.10.4-upgrade-16-fi-dev-8879538.0
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/exported.d.ts +32 -0
- package/exported.js +1 -1
- package/package.json +35 -29
- package/src/binaryVoteCounter.d.ts +6 -3
- package/src/binaryVoteCounter.d.ts.map +1 -1
- package/src/binaryVoteCounter.js +6 -2
- package/src/breakTie.d.ts +1 -0
- package/src/breakTie.d.ts.map +1 -1
- package/src/breakTie.js +4 -0
- package/src/closingRule.d.ts +4 -0
- package/src/closingRule.d.ts.map +1 -1
- package/src/closingRule.js +4 -0
- package/src/committee.d.ts +12 -8
- package/src/committee.d.ts.map +1 -1
- package/src/committee.js +24 -11
- package/src/constants.d.ts +12 -12
- package/src/constants.d.ts.map +1 -1
- package/src/contractGovernance/governApi.d.ts +11 -8
- package/src/contractGovernance/governApi.d.ts.map +1 -1
- package/src/contractGovernance/governApi.js +8 -3
- package/src/contractGovernance/governFilter.d.ts +8 -2
- package/src/contractGovernance/governFilter.d.ts.map +1 -1
- package/src/contractGovernance/governFilter.js +5 -1
- package/src/contractGovernance/governParam.d.ts +9 -2
- package/src/contractGovernance/governParam.d.ts.map +1 -1
- package/src/contractGovernance/governParam.js +6 -1
- package/src/contractGovernance/paramManager.d.ts +13 -9
- package/src/contractGovernance/paramManager.d.ts.map +1 -1
- package/src/contractGovernance/paramManager.js +18 -14
- package/src/contractGovernance/typedParamManager.d.ts +19 -10
- package/src/contractGovernance/typedParamManager.d.ts.map +1 -1
- package/src/contractGovernance/typedParamManager.js +5 -0
- package/src/contractGovernor.d.ts +11 -5
- package/src/contractGovernor.d.ts.map +1 -1
- package/src/contractGovernor.js +19 -9
- package/src/contractGovernorKit.d.ts +14 -48
- package/src/contractGovernorKit.d.ts.map +1 -1
- package/src/contractGovernorKit.js +56 -10
- package/src/contractHelper.d.ts +68 -78
- package/src/contractHelper.d.ts.map +1 -1
- package/src/contractHelper.js +21 -21
- package/src/electorateTools.d.ts +21 -17
- package/src/electorateTools.d.ts.map +1 -1
- package/src/electorateTools.js +20 -12
- package/src/index.js +3 -6
- package/src/multiCandidateVoteCounter.d.ts +6 -3
- package/src/multiCandidateVoteCounter.d.ts.map +1 -1
- package/src/multiCandidateVoteCounter.js +8 -4
- package/src/noActionElectorate.d.ts +6 -1
- package/src/noActionElectorate.d.ts.map +1 -1
- package/src/noActionElectorate.js +11 -2
- package/src/question.d.ts +15 -11
- package/src/question.d.ts.map +1 -1
- package/src/question.js +5 -0
- package/src/quorumCounter.d.ts +1 -1
- package/src/quorumCounter.d.ts.map +1 -1
- package/src/quorumCounter.js +4 -0
- package/src/typeGuards.d.ts +91 -54
- package/src/typeGuards.d.ts.map +1 -1
- package/src/types.d.ts +59 -62
- package/src/types.d.ts.map +1 -1
- package/src/types.js +35 -27
- package/src/validators.d.ts +5 -0
- package/src/validators.d.ts.map +1 -1
- package/src/validators.js +6 -3
- package/src/voterKit.d.ts +6 -11
- package/src/voterKit.d.ts.map +1 -1
- package/src/voterKit.js +4 -0
- package/tools/puppetContractGovernor.d.ts +15 -11
- package/tools/puppetContractGovernor.d.ts.map +1 -1
- package/tools/puppetContractGovernor.js +7 -5
- package/tools/puppetGovernance.d.ts +31 -30
- package/tools/puppetGovernance.d.ts.map +1 -1
- package/tools/puppetGovernance.js +6 -4
- package/tools/storageDoc.d.ts +3 -3
- package/tools/storageDoc.d.ts.map +1 -1
- package/CHANGELOG.md +0 -456
- package/src/types-ambient.d.ts +0 -1047
- package/src/types-ambient.d.ts.map +0 -1
- package/src/types-ambient.js +0 -731
package/src/question.d.ts
CHANGED
|
@@ -1,18 +1,19 @@
|
|
|
1
1
|
/** @type {BuildQuestion} */
|
|
2
2
|
export const buildQuestion: BuildQuestion;
|
|
3
3
|
export namespace ChoiceMethod {
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
4
|
+
let UNRANKED: "unranked";
|
|
5
|
+
let ORDER: "order";
|
|
6
|
+
let PLURALITY: "plurality";
|
|
7
7
|
}
|
|
8
8
|
export namespace ElectionType {
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
12
|
-
|
|
13
|
-
|
|
9
|
+
let PARAM_CHANGE: "param_change";
|
|
10
|
+
let ELECTION: "election";
|
|
11
|
+
let SURVEY: "survey";
|
|
12
|
+
let API_INVOCATION: "api_invocation";
|
|
13
|
+
let OFFER_FILTER: "offer_filter";
|
|
14
14
|
}
|
|
15
15
|
/**
|
|
16
|
+
* @internal
|
|
16
17
|
* @param {QuestionSpec} allegedQuestionSpec
|
|
17
18
|
* @returns {QuestionSpec}
|
|
18
19
|
*/
|
|
@@ -20,8 +21,11 @@ export function coerceQuestionSpec({ method, issue, positions, electionType, max
|
|
|
20
21
|
/** @type {PositionIncluded} */
|
|
21
22
|
export const positionIncluded: PositionIncluded;
|
|
22
23
|
export namespace QuorumRule {
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
24
|
+
let MAJORITY: "majority";
|
|
25
|
+
let NO_QUORUM: "no_quorum";
|
|
26
|
+
let ALL: "all";
|
|
26
27
|
}
|
|
28
|
+
import type { BuildQuestion } from './types.js';
|
|
29
|
+
import type { QuestionSpec } from './types.js';
|
|
30
|
+
import type { PositionIncluded } from './types.js';
|
|
27
31
|
//# sourceMappingURL=question.d.ts.map
|
package/src/question.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"question.d.ts","sourceRoot":"","sources":["question.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"question.d.ts","sourceRoot":"","sources":["question.js"],"names":[],"mappings":"AAqFA,4BAA4B;AAC5B,0CAgBE;;;;;;;;;;;;;AAxDF;;;;GAIG;AACH,yKAgCC;AAxCD,+BAA+B;AAC/B,gDAA4E;;;;;;mCAtCF,YAAY;kCAAZ,YAAY;sCAAZ,YAAY"}
|
package/src/question.js
CHANGED
|
@@ -3,6 +3,10 @@ import { makeHandle } from '@agoric/zoe/src/makeHandle.js';
|
|
|
3
3
|
|
|
4
4
|
import { QuestionI, QuestionSpecShape } from './typeGuards.js';
|
|
5
5
|
|
|
6
|
+
/**
|
|
7
|
+
* @import {BuildQuestion, PositionIncluded, Question, QuestionSpec} from './types.js';
|
|
8
|
+
*/
|
|
9
|
+
|
|
6
10
|
// Topics being voted on are 'Questions'. Before a Question is known to a
|
|
7
11
|
// electorate, the parameters can be described with a QuestionSpec. Once the
|
|
8
12
|
// question has been presented to an Electorate, there is a QuestionDetails
|
|
@@ -41,6 +45,7 @@ const QuorumRule = /** @type {const} */ ({
|
|
|
41
45
|
const positionIncluded = (positions, p) => positions.some(e => keyEQ(e, p));
|
|
42
46
|
|
|
43
47
|
/**
|
|
48
|
+
* @internal
|
|
44
49
|
* @param {QuestionSpec} allegedQuestionSpec
|
|
45
50
|
* @returns {QuestionSpec}
|
|
46
51
|
*/
|
package/src/quorumCounter.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
export function makeQuorumCounter(quorumThreshold: any): {
|
|
2
2
|
check: (stats: any) => boolean;
|
|
3
|
-
} & import("@endo/eventual-send").RemotableBrand<{}, {
|
|
3
|
+
} & import("@endo/marshal").RemotableObject<`Alleged: ${string}`> & import("@endo/eventual-send").RemotableBrand<{}, {
|
|
4
4
|
check: (stats: any) => boolean;
|
|
5
5
|
}>;
|
|
6
6
|
//# sourceMappingURL=quorumCounter.d.ts.map
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"quorumCounter.d.ts","sourceRoot":"","sources":["quorumCounter.js"],"names":[],"mappings":"
|
|
1
|
+
{"version":3,"file":"quorumCounter.d.ts","sourceRoot":"","sources":["quorumCounter.js"],"names":[],"mappings":"AAQO;;;;GAUN"}
|
package/src/quorumCounter.js
CHANGED
package/src/typeGuards.d.ts
CHANGED
|
@@ -2,14 +2,14 @@ export const ChoiceMethodShape: import("@endo/patterns").Matcher;
|
|
|
2
2
|
export const QuorumRuleShape: import("@endo/patterns").Matcher;
|
|
3
3
|
export const ElectionTypeShape: import("@endo/patterns").Matcher;
|
|
4
4
|
export namespace ClosingRuleShape {
|
|
5
|
-
export
|
|
5
|
+
export let timer: globalThis.Pattern;
|
|
6
6
|
export { TimestampShape as deadline };
|
|
7
7
|
}
|
|
8
8
|
export namespace YesOfferFilterPositionShape {
|
|
9
|
-
|
|
9
|
+
let strings: import("@endo/patterns").Matcher;
|
|
10
10
|
}
|
|
11
11
|
export namespace NoOfferFilterPositionShape {
|
|
12
|
-
|
|
12
|
+
let dontUpdate: import("@endo/patterns").Matcher;
|
|
13
13
|
}
|
|
14
14
|
export const OfferFilterPositionsShape: ({
|
|
15
15
|
strings: import("@endo/patterns").Matcher;
|
|
@@ -17,34 +17,34 @@ export const OfferFilterPositionsShape: ({
|
|
|
17
17
|
dontUpdate: import("@endo/patterns").Matcher;
|
|
18
18
|
})[];
|
|
19
19
|
export namespace OfferFilterIssueShape {
|
|
20
|
-
|
|
20
|
+
let strings_1: import("@endo/patterns").Matcher;
|
|
21
21
|
export { strings_1 as strings };
|
|
22
22
|
}
|
|
23
23
|
export namespace OfferFilterQuestionSpecShape {
|
|
24
24
|
export { ChoiceMethodShape as method };
|
|
25
25
|
export { OfferFilterIssueShape as issue };
|
|
26
26
|
export { OfferFilterPositionsShape as positions };
|
|
27
|
-
export
|
|
28
|
-
export
|
|
29
|
-
export
|
|
27
|
+
export let electionType: string;
|
|
28
|
+
export let maxChoices: number;
|
|
29
|
+
export let maxWinners: number;
|
|
30
30
|
export { ClosingRuleShape as closingRule };
|
|
31
31
|
export { QuorumRuleShape as quorumRule };
|
|
32
32
|
export { NoOfferFilterPositionShape as tieOutcome };
|
|
33
33
|
}
|
|
34
34
|
export namespace OfferFilterQuestionDetailsShape {
|
|
35
|
-
export
|
|
35
|
+
export let questionHandle: import("@endo/patterns").Matcher;
|
|
36
36
|
export { InstanceHandleShape as counterInstance };
|
|
37
37
|
}
|
|
38
38
|
export const ParamChangesSpecShape: import("@endo/patterns").Matcher;
|
|
39
39
|
export const YesParamChangesPositionShape: import("@endo/patterns").Matcher;
|
|
40
40
|
export namespace NoParamChangesPositionShape {
|
|
41
|
-
|
|
41
|
+
let noChange: import("@endo/patterns").Matcher;
|
|
42
42
|
}
|
|
43
43
|
export const ParamChangesPositionsShape: (import("@endo/patterns").Matcher | {
|
|
44
44
|
noChange: import("@endo/patterns").Matcher;
|
|
45
45
|
})[];
|
|
46
46
|
export namespace ParamPathShape {
|
|
47
|
-
|
|
47
|
+
let key: import("@endo/patterns").Matcher;
|
|
48
48
|
}
|
|
49
49
|
export namespace ParamChangesIssueShape {
|
|
50
50
|
export namespace spec {
|
|
@@ -54,30 +54,30 @@ export namespace ParamChangesIssueShape {
|
|
|
54
54
|
export { InstanceHandleShape as contract };
|
|
55
55
|
}
|
|
56
56
|
export namespace ParamChangesQuestionSpecShape {
|
|
57
|
-
export
|
|
57
|
+
export let method: string;
|
|
58
58
|
export { ParamChangesIssueShape as issue };
|
|
59
59
|
export { ParamChangesPositionsShape as positions };
|
|
60
|
-
|
|
60
|
+
let electionType_1: string;
|
|
61
61
|
export { electionType_1 as electionType };
|
|
62
|
-
|
|
62
|
+
let maxChoices_1: number;
|
|
63
63
|
export { maxChoices_1 as maxChoices };
|
|
64
|
-
|
|
64
|
+
let maxWinners_1: number;
|
|
65
65
|
export { maxWinners_1 as maxWinners };
|
|
66
66
|
export { ClosingRuleShape as closingRule };
|
|
67
|
-
export
|
|
67
|
+
export let quorumRule: string;
|
|
68
68
|
export { NoParamChangesPositionShape as tieOutcome };
|
|
69
69
|
}
|
|
70
70
|
export namespace ParamChangesQuestionDetailsShape {
|
|
71
|
-
|
|
71
|
+
let questionHandle_1: import("@endo/patterns").Matcher;
|
|
72
72
|
export { questionHandle_1 as questionHandle };
|
|
73
73
|
export { InstanceHandleShape as counterInstance };
|
|
74
74
|
}
|
|
75
75
|
export namespace YesApiInvocationPositionShape {
|
|
76
|
-
|
|
77
|
-
|
|
76
|
+
let apiMethodName: import("@endo/patterns").Matcher;
|
|
77
|
+
let methodArgs: import("@endo/patterns").Matcher;
|
|
78
78
|
}
|
|
79
79
|
export namespace NoApiInvocationPositionShape {
|
|
80
|
-
|
|
80
|
+
let dontInvoke: import("@endo/patterns").Matcher;
|
|
81
81
|
}
|
|
82
82
|
export const ApiInvocationPositionsShape: ({
|
|
83
83
|
apiMethodName: import("@endo/patterns").Matcher;
|
|
@@ -86,55 +86,55 @@ export const ApiInvocationPositionsShape: ({
|
|
|
86
86
|
dontInvoke: import("@endo/patterns").Matcher;
|
|
87
87
|
})[];
|
|
88
88
|
export namespace ApiInvocationQuestionSpecShape {
|
|
89
|
-
|
|
89
|
+
let method_1: string;
|
|
90
90
|
export { method_1 as method };
|
|
91
91
|
export { ApiInvocationSpecShape as issue };
|
|
92
92
|
export { ApiInvocationPositionsShape as positions };
|
|
93
|
-
|
|
93
|
+
let electionType_2: string;
|
|
94
94
|
export { electionType_2 as electionType };
|
|
95
|
-
|
|
95
|
+
let maxChoices_2: number;
|
|
96
96
|
export { maxChoices_2 as maxChoices };
|
|
97
|
-
|
|
97
|
+
let maxWinners_2: number;
|
|
98
98
|
export { maxWinners_2 as maxWinners };
|
|
99
99
|
export { ClosingRuleShape as closingRule };
|
|
100
100
|
export { QuorumRuleShape as quorumRule };
|
|
101
101
|
export { NoApiInvocationPositionShape as tieOutcome };
|
|
102
102
|
}
|
|
103
103
|
export namespace ApiInvocationQuestionDetailsShape {
|
|
104
|
-
|
|
104
|
+
let questionHandle_2: import("@endo/patterns").Matcher;
|
|
105
105
|
export { questionHandle_2 as questionHandle };
|
|
106
106
|
export { InstanceHandleShape as counterInstance };
|
|
107
107
|
}
|
|
108
108
|
export namespace YesSimplePositionShape {
|
|
109
|
-
|
|
109
|
+
let text: import("@endo/patterns").Matcher;
|
|
110
110
|
}
|
|
111
111
|
export namespace NoSimplePositionShape {
|
|
112
|
-
|
|
112
|
+
let text_1: import("@endo/patterns").Matcher;
|
|
113
113
|
export { text_1 as text };
|
|
114
114
|
}
|
|
115
115
|
export const SimplePositionsShape: {
|
|
116
116
|
text: import("@endo/patterns").Matcher;
|
|
117
117
|
}[];
|
|
118
118
|
export namespace SimpleIssueShape {
|
|
119
|
-
|
|
119
|
+
let text_2: import("@endo/patterns").Matcher;
|
|
120
120
|
export { text_2 as text };
|
|
121
121
|
}
|
|
122
122
|
export namespace SimpleQuestionSpecShape {
|
|
123
123
|
export { ChoiceMethodShape as method };
|
|
124
124
|
export { SimpleIssueShape as issue };
|
|
125
|
-
export
|
|
126
|
-
|
|
125
|
+
export let positions: import("@endo/patterns").Matcher;
|
|
126
|
+
let electionType_3: import("@endo/patterns").Matcher;
|
|
127
127
|
export { electionType_3 as electionType };
|
|
128
|
-
|
|
128
|
+
let maxChoices_3: import("@endo/patterns").Matcher;
|
|
129
129
|
export { maxChoices_3 as maxChoices };
|
|
130
|
-
|
|
130
|
+
let maxWinners_3: import("@endo/patterns").Matcher;
|
|
131
131
|
export { maxWinners_3 as maxWinners };
|
|
132
132
|
export { ClosingRuleShape as closingRule };
|
|
133
133
|
export { QuorumRuleShape as quorumRule };
|
|
134
134
|
export { NoSimplePositionShape as tieOutcome };
|
|
135
135
|
}
|
|
136
136
|
export namespace SimpleQuestionDetailsShape {
|
|
137
|
-
|
|
137
|
+
let questionHandle_3: import("@endo/patterns").Matcher;
|
|
138
138
|
export { questionHandle_3 as questionHandle };
|
|
139
139
|
export { InstanceHandleShape as counterInstance };
|
|
140
140
|
}
|
|
@@ -143,31 +143,68 @@ export const PositionShape: import("@endo/patterns").Matcher;
|
|
|
143
143
|
export const QuestionHandleShape: import("@endo/patterns").Matcher;
|
|
144
144
|
export const InvitationShape: import("@endo/patterns").Matcher;
|
|
145
145
|
export const QuestionDetailsShape: import("@endo/patterns").Matcher;
|
|
146
|
-
export const ElectoratePublicI: import("@endo/patterns").InterfaceGuard
|
|
147
|
-
|
|
146
|
+
export const ElectoratePublicI: import("@endo/patterns").InterfaceGuard<{
|
|
147
|
+
getQuestionSubscriber: import("@endo/patterns").MethodGuard;
|
|
148
|
+
getOpenQuestions: import("@endo/patterns").MethodGuard;
|
|
149
|
+
getName: import("@endo/patterns").MethodGuard;
|
|
150
|
+
getInstance: import("@endo/patterns").MethodGuard;
|
|
151
|
+
getQuestion: import("@endo/patterns").MethodGuard;
|
|
152
|
+
}>;
|
|
153
|
+
export const ElectorateCreatorI: import("@endo/patterns").InterfaceGuard<{
|
|
154
|
+
getPoserInvitation: import("@endo/patterns").MethodGuard;
|
|
155
|
+
addQuestion: import("@endo/patterns").MethodGuard;
|
|
156
|
+
getVoterInvitations: import("@endo/patterns").MethodGuard;
|
|
157
|
+
getQuestionSubscriber: import("@endo/patterns").MethodGuard;
|
|
158
|
+
getPublicFacet: import("@endo/patterns").MethodGuard;
|
|
159
|
+
}>;
|
|
148
160
|
export namespace QuestionStatsShape {
|
|
149
|
-
|
|
150
|
-
|
|
151
|
-
|
|
152
|
-
}
|
|
153
|
-
export const QuestionI: import("@endo/patterns").InterfaceGuard
|
|
154
|
-
|
|
161
|
+
let spoiled: import("@endo/patterns").Matcher;
|
|
162
|
+
let votes: import("@endo/patterns").Matcher;
|
|
163
|
+
let results: import("@endo/patterns").Matcher;
|
|
164
|
+
}
|
|
165
|
+
export const QuestionI: import("@endo/patterns").InterfaceGuard<{
|
|
166
|
+
getVoteCounter: import("@endo/patterns").MethodGuard;
|
|
167
|
+
getDetails: import("@endo/patterns").MethodGuard;
|
|
168
|
+
}>;
|
|
169
|
+
export const BinaryVoteCounterPublicI: import("@endo/patterns").InterfaceGuard<{
|
|
170
|
+
getQuestion: import("@endo/patterns").MethodGuard;
|
|
171
|
+
isOpen: import("@endo/patterns").MethodGuard;
|
|
172
|
+
getOutcome: import("@endo/patterns").MethodGuard;
|
|
173
|
+
getStats: import("@endo/patterns").MethodGuard;
|
|
174
|
+
getDetails: import("@endo/patterns").MethodGuard;
|
|
175
|
+
getInstance: import("@endo/patterns").MethodGuard;
|
|
176
|
+
}>;
|
|
155
177
|
export const VoterHandle: import("@endo/patterns").Matcher;
|
|
156
|
-
export const BinaryVoteCounterAdminI: import("@endo/patterns").InterfaceGuard
|
|
157
|
-
|
|
158
|
-
|
|
159
|
-
export const
|
|
160
|
-
|
|
178
|
+
export const BinaryVoteCounterAdminI: import("@endo/patterns").InterfaceGuard<{
|
|
179
|
+
submitVote: import("@endo/patterns").MethodGuard;
|
|
180
|
+
}>;
|
|
181
|
+
export const BinaryVoteCounterCloseI: import("@endo/patterns").InterfaceGuard<{
|
|
182
|
+
closeVoting: import("@endo/patterns").MethodGuard;
|
|
183
|
+
}>;
|
|
184
|
+
export const VoteCounterPublicI: import("@endo/patterns").InterfaceGuard<{
|
|
185
|
+
getQuestion: import("@endo/patterns").MethodGuard;
|
|
186
|
+
isOpen: import("@endo/patterns").MethodGuard;
|
|
187
|
+
getOutcome: import("@endo/patterns").MethodGuard;
|
|
188
|
+
getStats: import("@endo/patterns").MethodGuard;
|
|
189
|
+
getDetails: import("@endo/patterns").MethodGuard;
|
|
190
|
+
getInstance: import("@endo/patterns").MethodGuard;
|
|
191
|
+
}>;
|
|
192
|
+
export const VoteCounterAdminI: import("@endo/patterns").InterfaceGuard<{
|
|
193
|
+
submitVote: import("@endo/patterns").MethodGuard;
|
|
194
|
+
}>;
|
|
195
|
+
export const VoteCounterCloseI: import("@endo/patterns").InterfaceGuard<{
|
|
196
|
+
closeVoting: import("@endo/patterns").MethodGuard;
|
|
197
|
+
}>;
|
|
161
198
|
export namespace GovernorFacetShape {
|
|
162
|
-
|
|
163
|
-
|
|
164
|
-
|
|
165
|
-
|
|
166
|
-
|
|
167
|
-
|
|
168
|
-
}
|
|
169
|
-
import { TimestampShape } from
|
|
170
|
-
import { InstanceHandleShape } from
|
|
199
|
+
let getParamMgrRetriever: import("@endo/patterns").MethodGuard;
|
|
200
|
+
let getInvitation: import("@endo/patterns").MethodGuard;
|
|
201
|
+
let getLimitedCreatorFacet: import("@endo/patterns").MethodGuard;
|
|
202
|
+
let getGovernedApis: import("@endo/patterns").MethodGuard;
|
|
203
|
+
let getGovernedApiNames: import("@endo/patterns").MethodGuard;
|
|
204
|
+
let setOfferFilter: import("@endo/patterns").MethodGuard;
|
|
205
|
+
}
|
|
206
|
+
import { TimestampShape } from '@agoric/time';
|
|
207
|
+
import { InstanceHandleShape } from '@agoric/zoe/src/typeGuards.js';
|
|
171
208
|
declare namespace ApiInvocationSpecShape { }
|
|
172
209
|
export {};
|
|
173
210
|
//# sourceMappingURL=typeGuards.d.ts.map
|
package/src/typeGuards.d.ts.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"typeGuards.d.ts","sourceRoot":"","sources":["typeGuards.js"],"names":[],"mappings":"AASA,iEAAwE;AACxE,+DAAoE;AACpE,iEAME;;;;;;;;;;;AAcF;;;;KAGG;;;;;;;;;;;;;;;;;;;;AAsBH,qEAAqE;AACrE,4EAAkE;;;;AAIlE;;KAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqCH;;;;;KAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuBH;;IAGG;;;;;;;;;;;;;;;;;;;;;;;;AAmBH,iEAKE;AAEF,6DASE;AAEF,mEAA+D;AAG/D,+DAAyD;AAKzD,oEAKE;AAEF
|
|
1
|
+
{"version":3,"file":"typeGuards.d.ts","sourceRoot":"","sources":["typeGuards.js"],"names":[],"mappings":"AASA,iEAAwE;AACxE,+DAAoE;AACpE,iEAME;;;;;;;;;;;AAcF;;;;KAGG;;;;;;;;;;;;;;;;;;;;AAsBH,qEAAqE;AACrE,4EAAkE;;;;AAIlE;;KAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAqCH;;;;;KAGG;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAuBH;;IAGG;;;;;;;;;;;;;;;;;;;;;;;;AAmBH,iEAKE;AAEF,6DASE;AAEF,mEAA+D;AAG/D,+DAAyD;AAKzD,oEAKE;AAEF;;;;;;GAMG;AAGH;;;;;;GAQG;;;;;;AAQH;;;GAGG;AAGH;;;;;;;GAUE;AAEF,2DAAyC;AACzC;;GAOE;AAEF;;GAKE;AAEF;;;;;;;GAOG;AAEH;;GAIG;AAEH;;GAEG;;;;;;;;;+BAlQ4B,cAAc;oCAKtC,+BAA+B"}
|