@agoric/deploy-script-support 0.10.4-upgrade-19-devnet-dev-5428c4d.0 → 0.10.4-upgrade-21-dev-07d4845.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/package.json CHANGED
@@ -1,20 +1,20 @@
1
1
  {
2
2
  "name": "@agoric/deploy-script-support",
3
- "version": "0.10.4-upgrade-19-devnet-dev-5428c4d.0+5428c4d",
3
+ "version": "0.10.4-upgrade-21-dev-07d4845.0+07d4845",
4
4
  "description": "Helpers and other support for writing deploy scripts",
5
5
  "type": "module",
6
6
  "main": "src/helpers.js",
7
7
  "engines": {
8
- "node": "^18.12 || ^20.9"
8
+ "node": "^20.9 || ^22.11"
9
9
  },
10
10
  "scripts": {
11
11
  "build": "exit 0",
12
12
  "test": "ava",
13
13
  "test:xs": "exit 0",
14
14
  "lint-fix": "yarn lint:eslint --fix",
15
- "lint:eslint": "eslint .",
16
- "lint:types": "tsc",
17
- "lint": "run-s --continue-on-error lint:*"
15
+ "lint:eslint": "yarn run -T eslint .",
16
+ "lint:types": "yarn run -T tsc",
17
+ "lint": "yarn run -T run-s --continue-on-error 'lint:*'"
18
18
  },
19
19
  "repository": {
20
20
  "type": "git",
@@ -34,25 +34,25 @@
34
34
  },
35
35
  "homepage": "https://github.com/Agoric/agoric-sdk#readme",
36
36
  "dependencies": {
37
- "@agoric/ertp": "0.16.3-upgrade-19-devnet-dev-5428c4d.0+5428c4d",
38
- "@agoric/import-manager": "0.3.12-upgrade-19-devnet-dev-5428c4d.0+5428c4d",
39
- "@agoric/internal": "0.4.0-upgrade-19-devnet-dev-5428c4d.0+5428c4d",
40
- "@agoric/notifier": "0.7.0-upgrade-19-devnet-dev-5428c4d.0+5428c4d",
41
- "@agoric/store": "0.9.3-upgrade-19-devnet-dev-5428c4d.0+5428c4d",
42
- "@agoric/time": "0.3.3-upgrade-19-devnet-dev-5428c4d.0+5428c4d",
43
- "@agoric/zoe": "0.27.0-upgrade-19-devnet-dev-5428c4d.0+5428c4d",
37
+ "@agoric/ertp": "workspace:*",
38
+ "@agoric/import-manager": "workspace:*",
39
+ "@agoric/internal": "workspace:*",
40
+ "@agoric/notifier": "workspace:*",
41
+ "@agoric/store": "workspace:*",
42
+ "@agoric/time": "workspace:*",
43
+ "@agoric/zoe": "workspace:*",
44
44
  "@endo/base64": "^1.0.9",
45
- "@endo/bundle-source": "^3.5.1",
46
- "@endo/errors": "^1.2.9",
47
- "@endo/far": "^1.1.10",
48
- "@endo/marshal": "^1.6.3",
49
- "@endo/nat": "^5.0.14",
50
- "@endo/promise-kit": "^1.1.9",
45
+ "@endo/bundle-source": "^4.0.0",
46
+ "@endo/errors": "^1.2.10",
47
+ "@endo/far": "^1.1.11",
48
+ "@endo/marshal": "^1.6.4",
49
+ "@endo/nat": "^5.1.0",
50
+ "@endo/promise-kit": "^1.1.10",
51
51
  "@endo/zip": "^1.0.9"
52
52
  },
53
53
  "devDependencies": {
54
- "@agoric/vats": "0.16.0-upgrade-19-devnet-dev-5428c4d.0+5428c4d",
55
- "@endo/init": "^1.1.8",
54
+ "@agoric/vats": "workspace:*",
55
+ "@endo/init": "^1.1.9",
56
56
  "ava": "^5.3.0",
57
57
  "import-meta-resolve": "^4.1.0"
58
58
  },
@@ -72,7 +72,7 @@
72
72
  "access": "public"
73
73
  },
74
74
  "typeCoverage": {
75
- "atLeast": 83.71
75
+ "atLeast": 83.92
76
76
  },
77
- "gitHead": "5428c4da67b53cef7ff53ba7b2a28cf6ec8f643a"
77
+ "gitHead": "07d4845c9599083aecbf807668443865d0de0498"
78
78
  }
@@ -2,6 +2,10 @@
2
2
  import { Fail } from '@endo/errors';
3
3
  import { E } from '@endo/far';
4
4
 
5
+ /**
6
+ * @import {InvitationDetails, PaymentPKeywordRecord, Proposal, UserSeat} from '@agoric/zoe';
7
+ */
8
+
5
9
  /**
6
10
  * @param {ERef<UserSeat>} seat
7
11
  * @param {string} expectedOfferResult
@@ -1,6 +1,11 @@
1
1
  // @ts-check
2
2
  import { E } from '@endo/far';
3
3
 
4
+ /**
5
+ * @import {Amount, Brand, Issuer, Payment, Purse} from '@agoric/ertp';
6
+ * @import {InvitationDetails} from '@agoric/zoe';
7
+ */
8
+
4
9
  /**
5
10
  * @param {ERef<Purse>} zoeInvitationPurse
6
11
  */
package/src/offer.js CHANGED
@@ -4,7 +4,11 @@ import { E } from '@endo/far';
4
4
  // Avoid pulling in too many dependencies like notifiers
5
5
  import { AmountMath } from '@agoric/ertp/src/amountMath.js';
6
6
 
7
- /** @import {Petname} from '@agoric/deploy-script-support/src/externalTypes.js' */
7
+ /**
8
+ * @import {Petname} from '@agoric/deploy-script-support/src/externalTypes.js';
9
+ * @import {Amount, Brand, Issuer, Payment, Purse} from '@agoric/ertp';
10
+ * @import {InvitationDetails, Keyword, Proposal} from '@agoric/zoe';
11
+ */
8
12
 
9
13
  /**
10
14
  * @typedef {object} OfferHelperConfig
package/src/saveIssuer.js CHANGED
@@ -1,7 +1,10 @@
1
1
  // @ts-check
2
2
  import { E } from '@endo/far';
3
3
 
4
- /** @import {Petname} from '@agoric/deploy-script-support/src/externalTypes.js' */
4
+ /**
5
+ * @import {Petname} from '@agoric/deploy-script-support/src/externalTypes.js';
6
+ * @import {Amount, Brand, Issuer, Payment} from '@agoric/ertp';
7
+ */
5
8
 
6
9
  /**
7
10
  * @param {ERef<any>} walletAdmin - an internal type of the
@@ -2,7 +2,11 @@
2
2
  import { assert } from '@endo/errors';
3
3
  import { E, passStyleOf } from '@endo/far';
4
4
 
5
- /** @import {Petname} from '@agoric/deploy-script-support/src/externalTypes.js' */
5
+ /**
6
+ * @import {Petname} from '@agoric/deploy-script-support/src/externalTypes.js';
7
+ * @import {Amount, Brand, Issuer, Payment, Purse} from '@agoric/ertp';
8
+ * @import {IssuerKeywordRecord, Keyword} from '@agoric/zoe';
9
+ */
6
10
 
7
11
  /**
8
12
  * @template T