@xyo-network/module-model
Advanced tools
Comparing version 2.43.8 to 2.43.9
@@ -6,6 +6,7 @@ import { EmptyObject } from '@xyo-network/core'; | ||
export type AddressString = string; | ||
export type CosigningAddressSet = string[]; | ||
export type SchemaString = string; | ||
export type AbstractModuleConfigBase<T extends EmptyObject = EmptyObject> = XyoPayload<{ | ||
security?: { | ||
allowed?: Record<SchemaString, AddressString[][]>; | ||
allowed?: Record<SchemaString, (AddressString | CosigningAddressSet)[]>; | ||
disallowed?: Record<SchemaString, AddressString[]>; | ||
@@ -12,0 +13,0 @@ }; |
@@ -6,6 +6,7 @@ import { EmptyObject } from '@xyo-network/core'; | ||
export type AddressString = string; | ||
export type CosigningAddressSet = string[]; | ||
export type SchemaString = string; | ||
export type AbstractModuleConfigBase<T extends EmptyObject = EmptyObject> = XyoPayload<{ | ||
security?: { | ||
allowed?: Record<SchemaString, AddressString[][]>; | ||
allowed?: Record<SchemaString, (AddressString | CosigningAddressSet)[]>; | ||
disallowed?: Record<SchemaString, AddressString[]>; | ||
@@ -12,0 +13,0 @@ }; |
@@ -13,9 +13,9 @@ { | ||
"dependencies": { | ||
"@xyo-network/boundwitness-model": "^2.43.8", | ||
"@xyo-network/core": "^2.43.8", | ||
"@xyo-network/payload-model": "^2.43.8", | ||
"@xyo-network/promise": "^2.43.8" | ||
"@xyo-network/boundwitness-model": "^2.43.9", | ||
"@xyo-network/core": "^2.43.9", | ||
"@xyo-network/payload-model": "^2.43.9", | ||
"@xyo-network/promise": "^2.43.9" | ||
}, | ||
"devDependencies": { | ||
"@xylabs/ts-scripts-yarn3": "^2.12.3" | ||
"@xylabs/ts-scripts-yarn3": "^2.12.21" | ||
}, | ||
@@ -55,3 +55,3 @@ "description": "Primary SDK for using XYO Protocol 2.0", | ||
"types": "dist/esm/index.d.ts", | ||
"version": "2.43.8" | ||
"version": "2.43.9" | ||
} |
@@ -8,2 +8,3 @@ import { EmptyObject } from '@xyo-network/core' | ||
export type AddressString = string | ||
export type CosigningAddressSet = string[] | ||
export type SchemaString = string | ||
@@ -16,3 +17,3 @@ | ||
//if schema in record, then only these address sets can access query | ||
allowed?: Record<SchemaString, AddressString[][]> | ||
allowed?: Record<SchemaString, (AddressString | CosigningAddressSet)[]> | ||
//if schema in record, then anyone except these addresses can access query | ||
@@ -19,0 +20,0 @@ disallowed?: Record<SchemaString, AddressString[]> |
Sorry, the diff of this file is not supported yet
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
177312
4855