@bitgo/public-types 6.8.1 → 6.9.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/dist/src/schema/transactionRequest/intents/cantonCosignDelegationProposalIntent.d.ts +1 -0
- package/dist/src/schema/transactionRequest/intents/cantonCosignDelegationProposalIntent.js +1 -0
- package/dist/src/schema/transactionRequest/intents/cantonCosignDelegationProposalIntent.js.map +1 -1
- package/dist/src/schema/transactionRequest/intents/intent.d.ts +1 -0
- package/dist/src/schema/transactionRequest/transactionRequest.d.ts +2 -0
- package/package.json +1 -1
- package/src/schema/transactionRequest/intents/cantonCosignDelegationProposalIntent.ts +2 -0
package/dist/src/schema/transactionRequest/intents/cantonCosignDelegationProposalIntent.d.ts
CHANGED
|
@@ -66,6 +66,7 @@ export declare const CantonCosignDelegationProposalIntent: t.IntersectionC<[t.In
|
|
|
66
66
|
intentType: t.LiteralC<"cosignDelegationProposal">;
|
|
67
67
|
contractId: t.StringC;
|
|
68
68
|
operatorId: t.StringC;
|
|
69
|
+
updateId: t.StringC;
|
|
69
70
|
}>, t.PartialC<{
|
|
70
71
|
packageName: t.StringC;
|
|
71
72
|
}>]>;
|
package/dist/src/schema/transactionRequest/intents/cantonCosignDelegationProposalIntent.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"cantonCosignDelegationProposalIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/cantonCosignDelegationProposalIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,6CAA0C;AAC1C,6CAA2C;
|
|
1
|
+
{"version":3,"file":"cantonCosignDelegationProposalIntent.js","sourceRoot":"","sources":["../../../../../src/schema/transactionRequest/intents/cantonCosignDelegationProposalIntent.ts"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,yCAA2B;AAC3B,6CAA0C;AAC1C,6CAA2C;AAa9B,QAAA,oCAAoC,GAAG,CAAC,CAAC,YAAY,CAAC;IACjE,uBAAU;IACV,CAAC,CAAC,IAAI,CAAC;QACL,UAAU,EAAE,wBAAW,CAAC,wBAAwB;QAChD,UAAU,EAAE,CAAC,CAAC,MAAM;QACpB,UAAU,EAAE,CAAC,CAAC,MAAM;QACpB,QAAQ,EAAE,CAAC,CAAC,MAAM;KACnB,CAAC;IACF,CAAC,CAAC,OAAO,CAAC;QACR,WAAW,EAAE,CAAC,CAAC,MAAM;KACtB,CAAC;CACH,CAAC,CAAC"}
|
|
@@ -1337,6 +1337,7 @@ export declare const TransactionIntent: t.UnionC<[t.IntersectionC<[t.Intersectio
|
|
|
1337
1337
|
intentType: t.LiteralC<"cosignDelegationProposal">;
|
|
1338
1338
|
contractId: t.StringC;
|
|
1339
1339
|
operatorId: t.StringC;
|
|
1340
|
+
updateId: t.StringC;
|
|
1340
1341
|
}>, t.PartialC<{
|
|
1341
1342
|
packageName: t.StringC;
|
|
1342
1343
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
@@ -1435,6 +1435,7 @@ export declare const TransactionRequestLite: t.IntersectionC<[t.IntersectionC<[t
|
|
|
1435
1435
|
intentType: t.LiteralC<"cosignDelegationProposal">;
|
|
1436
1436
|
contractId: t.StringC;
|
|
1437
1437
|
operatorId: t.StringC;
|
|
1438
|
+
updateId: t.StringC;
|
|
1438
1439
|
}>, t.PartialC<{
|
|
1439
1440
|
packageName: t.StringC;
|
|
1440
1441
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
|
@@ -13540,6 +13541,7 @@ export declare const TransactionRequest: t.UnionC<[t.IntersectionC<[t.Intersecti
|
|
|
13540
13541
|
intentType: t.LiteralC<"cosignDelegationProposal">;
|
|
13541
13542
|
contractId: t.StringC;
|
|
13542
13543
|
operatorId: t.StringC;
|
|
13544
|
+
updateId: t.StringC;
|
|
13543
13545
|
}>, t.PartialC<{
|
|
13544
13546
|
packageName: t.StringC;
|
|
13545
13547
|
}>]>, t.IntersectionC<[t.IntersectionC<[t.IntersectionC<[t.TypeC<{
|
package/package.json
CHANGED
|
@@ -10,6 +10,7 @@ import { intentTypes } from "./intentType";
|
|
|
10
10
|
* @param {String} intentType - The type of intent (always set to cosignDelegationProposal)
|
|
11
11
|
* @param {String} contractId - The contract id of the delegation proposal to cosign
|
|
12
12
|
* @param {String} operatorId - The operator id associated with the delegation proposal
|
|
13
|
+
* @param {String} updateId - The transaction update id of the cosign delegation proposal
|
|
13
14
|
* @param {String} [packageName] - The optional package name
|
|
14
15
|
*/
|
|
15
16
|
export const CantonCosignDelegationProposalIntent = t.intersection([
|
|
@@ -18,6 +19,7 @@ export const CantonCosignDelegationProposalIntent = t.intersection([
|
|
|
18
19
|
intentType: intentTypes.cosignDelegationProposal,
|
|
19
20
|
contractId: t.string,
|
|
20
21
|
operatorId: t.string,
|
|
22
|
+
updateId: t.string,
|
|
21
23
|
}),
|
|
22
24
|
t.partial({
|
|
23
25
|
packageName: t.string,
|