@towns-protocol/generated 0.0.376 → 0.0.378
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/dev/.contracts-hash +1 -1
- package/dev/abis/Channels.abi.json +1035 -63
- package/dev/abis/Channels.abi.ts +1035 -63
- package/dev/abis/EntitlementsManager.abi.json +982 -10
- package/dev/abis/EntitlementsManager.abi.ts +982 -10
- package/dev/abis/IAppFactory.abi.json +87 -0
- package/dev/abis/IAppFactory.abi.ts +87 -0
- package/dev/abis/IAppFactoryBase.abi.json +36 -0
- package/dev/abis/IAppFactoryBase.abi.ts +36 -0
- package/dev/abis/IAppRegistry.abi.json +0 -70
- package/dev/abis/IAppRegistry.abi.ts +0 -70
- package/dev/abis/IAppRegistryBase.abi.json +0 -19
- package/dev/abis/IAppRegistryBase.abi.ts +0 -19
- package/dev/abis/ITipping.abi.json +3 -3
- package/dev/abis/ITipping.abi.ts +3 -3
- package/dev/abis/ITippingBase.abi.json +3 -3
- package/dev/abis/ITippingBase.abi.ts +3 -3
- package/dev/abis/MembershipFacet.abi.json +1000 -28
- package/dev/abis/MembershipFacet.abi.ts +1000 -28
- package/dev/abis/PrepayFacet.abi.json +993 -21
- package/dev/abis/PrepayFacet.abi.ts +993 -21
- package/dev/abis/Roles.abi.json +972 -0
- package/dev/abis/Roles.abi.ts +972 -0
- package/dev/typings/Channels.ts +657 -0
- package/dev/typings/EntitlementsManager.ts +658 -0
- package/dev/typings/IAppFactory.ts +154 -0
- package/dev/typings/IAppRegistry.ts +0 -73
- package/dev/typings/ITipping.ts +6 -6
- package/dev/typings/MembershipFacet.ts +657 -0
- package/dev/typings/PrepayFacet.ts +657 -0
- package/dev/typings/Roles.ts +657 -0
- package/dev/typings/factories/Channels__factory.ts +1036 -64
- package/dev/typings/factories/EntitlementsManager__factory.ts +982 -10
- package/dev/typings/factories/IAppFactory__factory.ts +108 -0
- package/dev/typings/factories/IAppRegistry__factory.ts +0 -70
- package/dev/typings/factories/ITipping__factory.ts +3 -3
- package/dev/typings/factories/MembershipFacet__factory.ts +1000 -28
- package/dev/typings/factories/PrepayFacet__factory.ts +993 -21
- package/dev/typings/factories/Roles__factory.ts +973 -1
- package/dev/typings/factories/index.ts +1 -0
- package/dev/typings/index.ts +2 -0
- package/package.json +3 -3
|
@@ -11,6 +11,7 @@ export { DropFacet__factory } from "./DropFacet__factory";
|
|
|
11
11
|
export { EntitlementsManager__factory } from "./EntitlementsManager__factory";
|
|
12
12
|
export { GuardianFacet__factory } from "./GuardianFacet__factory";
|
|
13
13
|
export { IAppAccount__factory } from "./IAppAccount__factory";
|
|
14
|
+
export { IAppFactory__factory } from "./IAppFactory__factory";
|
|
14
15
|
export { IAppInstaller__factory } from "./IAppInstaller__factory";
|
|
15
16
|
export { IAppRegistry__factory } from "./IAppRegistry__factory";
|
|
16
17
|
export { IArchitect__factory } from "./IArchitect__factory";
|
package/dev/typings/index.ts
CHANGED
|
@@ -15,6 +15,7 @@ export type { DropFacet } from "./DropFacet";
|
|
|
15
15
|
export type { EntitlementsManager } from "./EntitlementsManager";
|
|
16
16
|
export type { GuardianFacet } from "./GuardianFacet";
|
|
17
17
|
export type { IAppAccount } from "./IAppAccount";
|
|
18
|
+
export type { IAppFactory } from "./IAppFactory";
|
|
18
19
|
export type { IAppInstaller } from "./IAppInstaller";
|
|
19
20
|
export type { IAppRegistry } from "./IAppRegistry";
|
|
20
21
|
export type { IArchitect } from "./IArchitect";
|
|
@@ -77,6 +78,7 @@ export { DropFacet__factory } from "./factories/DropFacet__factory";
|
|
|
77
78
|
export { EntitlementsManager__factory } from "./factories/EntitlementsManager__factory";
|
|
78
79
|
export { GuardianFacet__factory } from "./factories/GuardianFacet__factory";
|
|
79
80
|
export { IAppAccount__factory } from "./factories/IAppAccount__factory";
|
|
81
|
+
export { IAppFactory__factory } from "./factories/IAppFactory__factory";
|
|
80
82
|
export { IAppInstaller__factory } from "./factories/IAppInstaller__factory";
|
|
81
83
|
export { IAppRegistry__factory } from "./factories/IAppRegistry__factory";
|
|
82
84
|
export { IArchitect__factory } from "./factories/IArchitect__factory";
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@towns-protocol/generated",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.378",
|
|
4
4
|
"packageManager": "yarn@3.8.0",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"scripts": {
|
|
@@ -13,7 +13,7 @@
|
|
|
13
13
|
"ethers": "^5.8.0"
|
|
14
14
|
},
|
|
15
15
|
"devDependencies": {
|
|
16
|
-
"@towns-protocol/contracts": "^0.0.
|
|
16
|
+
"@towns-protocol/contracts": "^0.0.378"
|
|
17
17
|
},
|
|
18
18
|
"files": [
|
|
19
19
|
"config/**/*",
|
|
@@ -32,5 +32,5 @@
|
|
|
32
32
|
"publishConfig": {
|
|
33
33
|
"access": "public"
|
|
34
34
|
},
|
|
35
|
-
"gitHead": "
|
|
35
|
+
"gitHead": "0b3314fe323abc06b7fea39333aad09e2a3e19c7"
|
|
36
36
|
}
|