@contember/schema 2.1.0-alpha.13 → 2.1.0-alpha.15

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.
@@ -1 +1 @@
1
- {"version":3,"file":"acl.cjs","sources":["../../../../../packages/schema/src/schema/acl.ts"],"sourcesContent":["import { Input } from './input'\nimport { JSONValue } from './json'\n\nexport namespace Acl {\n\texport enum VariableType {\n\t\tentity = 'entity',\n\t\tpredefined = 'predefined',\n\t\tcondition = 'condition',\n\n\t\t// currently unsupported\n\t\t// enum = 'enum',\n\t\t// column = 'column',\n\t}\n\n\texport type Variable =\n\t\t| EntityVariable\n\t\t| PredefinedVariable\n\t\t| ConditionVariable\n\t\t// | EnumVariable | ColumnValueVariable\n\n\n\n\texport type EntityVariable = {\n\t\treadonly type: VariableType.entity\n\t\treadonly entityName: string\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\texport type PredefinedVariableValue = 'identityID' | 'personID'\n\texport type PredefinedVariable = {\n\t\treadonly type: VariableType.predefined\n\t\treadonly value: PredefinedVariableValue\n\t}\n\n\n\texport type ConditionVariable = {\n\t\treadonly type: VariableType.condition\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\t// export interface EnumVariable {\n\t// \ttype: VariableType.enum\n\t// \tenumName: string\n\t// }\n\n\t// export interface ColumnValueVariable {\n\t// \ttype: VariableType.column\n\t// \tentityName: string\n\t// \tfieldName: string\n\t// }\n\n\texport type PredicateVariable = string //{ name: string }\n\texport type PredicateDefinition<E = never> = Input.Where<PredicateVariable | Input.Condition | E>\n\n\texport type PredicateMap = { readonly [name: string]: PredicateDefinition }\n\n\texport type EntityPermissions = {\n\t\treadonly predicates: PredicateMap\n\t\treadonly operations: EntityOperations\n\t}\n\n\texport enum Operation {\n\t\tread = 'read',\n\t\tcreate = 'create',\n\t\tupdate = 'update',\n\t\tdelete = 'delete',\n\t}\n\n\texport type EntityOperations = {\n\t\treadonly read?: FieldPermissions\n\t\treadonly create?: FieldPermissions\n\t\treadonly update?: FieldPermissions\n\t\treadonly delete?: Predicate\n\t\treadonly noRoot?: readonly `${Operation}`[]\n\n\t\treadonly customPrimary?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport type FieldPermissions = { readonly [field: string]: Predicate }\n\n\texport type PredicateReference = string\n\texport type Predicate = PredicateReference | boolean\n\n\texport type AnyStage = '*'\n\texport type StagesDefinition = AnyStage | readonly string[]\n\n\texport type MembershipVariableMatchRule = true | string\n\n\texport type MembershipVariablesMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly [targetVariable: string]: MembershipVariableMatchRule\n\t\t}\n\n\texport type MembershipRoleMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly variables?: MembershipVariablesMatchRule\n\t\t}\n\n\texport type MembershipMatchRule = {\n\t\treadonly [role: string]: MembershipRoleMatchRule\n\t}\n\n\texport type TenantPermissions = {\n\t\treadonly invite?: boolean | MembershipMatchRule\n\t\treadonly unmanagedInvite?: boolean | MembershipMatchRule\n\t\treadonly view?: MembershipMatchRule\n\t\treadonly manage?: MembershipMatchRule\n\t}\n\n\texport enum SystemPermissionsLevel {\n\t\tnone = 'none',\n\t\tany = 'any',\n\t\tsome = 'some',\n\t}\n\n\t/**\n\t * @deprecated\n\t */\n\texport type LimitedSystemPermissionsLevel = 'any' | 'none'\n\n\texport type SystemPermissions = {\n\t\treadonly history?: boolean | LimitedSystemPermissionsLevel\n\t\treadonly migrate?: boolean\n\t\treadonly assumeIdentity?: boolean\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t}\n\n\texport type ContentPermissions = {\n\t\treadonly assumeMembership?: MembershipMatchRule\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport interface BaseRolePermissions {\n\t\treadonly inherits?: readonly string[]\n\t\treadonly implicit?: boolean\n\t\treadonly tenant?: TenantPermissions\n\t\treadonly system?: SystemPermissions\n\t\treadonly content?: ContentPermissions\n\t\treadonly variables: Acl.Variables\n\t\treadonly stages?: StagesDefinition\n\t\treadonly entities: Permissions\n\t\treadonly debug?: boolean\n\t}\n\n\texport type RolePermissions =\n\t\t& BaseRolePermissions\n\t\t& {\n\t\t\treadonly [key: string] : JSONValue\n\t\t}\n\texport type Permissions = {\n\t\treadonly [entity: string]: EntityPermissions\n\t}\n\n\texport type Roles = { readonly [role: string]: RolePermissions }\n\texport type Variables = { readonly [name: string]: Variable }\n\n\texport type Schema = {\n\t\treadonly customPrimary?: boolean\n\t\treadonly roles: Acl.Roles\n\t}\n\n\texport type VariablesMap = {\n\t\treadonly [name: string]: Input.Condition\n\t}\n\n\texport interface MembershipVariable {\n\t\treadonly name: string\n\t\treadonly values: readonly string[]\n\t}\n\n\texport interface Membership {\n\t\treadonly role: string\n\t\treadonly variables: readonly MembershipVariable[]\n\t}\n}\n"],"names":["Acl","VariableType","Operation","SystemPermissionsLevel"],"mappings":";;AAGiBA,QAAAA,MAAAA;AAAAA,CAAV,CAAUA,SAAV;AACC,GAAA,CAAKC,kBAAL;AACNA,kBAAA,QAAS,IAAA;AACTA,kBAAA,YAAa,IAAA;AACbA,kBAAA,WAAY,IAAA;AAAA,EAHD,GAAAD,KAAA,iBAAAA,KAAA,eAAA,CAAA,EAAA;AAyDL,GAAA,CAAKE,eAAL;AACNA,eAAA,MAAO,IAAA;AACPA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AAAA,EAJE,GAAAF,KAAA,cAAAA,KAAA,YAAA,CAAA,EAAA;AAmDL,GAAA,CAAKG,4BAAL;AACNA,4BAAA,MAAO,IAAA;AACPA,4BAAA,KAAM,IAAA;AACNA,4BAAA,MAAO,IAAA;AAAA,EAHI,GAAAH,KAAA,2BAAAA,KAAA,yBAAA,CAAA,EAAA;AAAA,GA7GIA,QAAA,QAAAA,cAAA,CAAA,EAAA;"}
1
+ {"version":3,"file":"acl.cjs","sources":["../../../../../packages/schema/src/schema/acl.ts"],"sourcesContent":["import { Input } from './input'\nimport { JSONValue } from './json'\n\nexport namespace Acl {\n\texport enum VariableType {\n\t\tentity = 'entity',\n\t\tpredefined = 'predefined',\n\t\tcondition = 'condition',\n\n\t\t// currently unsupported\n\t\t// enum = 'enum',\n\t\t// column = 'column',\n\t}\n\n\texport type Variable =\n\t\t| EntityVariable\n\t\t| PredefinedVariable\n\t\t| ConditionVariable\n\t\t// | EnumVariable | ColumnValueVariable\n\n\n\n\texport type EntityVariable = {\n\t\treadonly type: VariableType.entity\n\t\treadonly entityName: string\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\texport type PredefinedVariableValue = 'identityID' | 'personID'\n\texport type PredefinedVariable = {\n\t\treadonly type: VariableType.predefined\n\t\treadonly value: PredefinedVariableValue\n\t}\n\n\n\texport type ConditionVariable = {\n\t\treadonly type: VariableType.condition\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\t// export interface EnumVariable {\n\t// \ttype: VariableType.enum\n\t// \tenumName: string\n\t// }\n\n\t// export interface ColumnValueVariable {\n\t// \ttype: VariableType.column\n\t// \tentityName: string\n\t// \tfieldName: string\n\t// }\n\n\texport type PredicateVariable = string //{ name: string }\n\texport type PredicateDefinition<E = never> = Input.Where<PredicateVariable | Input.Condition | E>\n\n\texport type PredicateMap = { readonly [name: string]: PredicateDefinition }\n\n\texport type EntityPermissions = {\n\t\treadonly predicates: PredicateMap\n\t\treadonly operations: EntityOperations\n\t}\n\n\texport enum Operation {\n\t\tread = 'read',\n\t\tcreate = 'create',\n\t\tupdate = 'update',\n\t\tdelete = 'delete',\n\t}\n\n\texport type EntityOperations = {\n\t\treadonly read?: FieldPermissions\n\t\treadonly create?: FieldPermissions\n\t\treadonly update?: FieldPermissions\n\t\treadonly delete?: Predicate\n\t\treadonly noRoot?: readonly `${Operation}`[]\n\n\t\treadonly customPrimary?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport type FieldPermissions = { readonly [field: string]: Predicate }\n\n\texport type PredicateReference = string\n\texport type Predicate = PredicateReference | boolean\n\n\texport type AnyStage = '*'\n\texport type StagesDefinition = AnyStage | readonly string[]\n\n\texport type MembershipVariableMatchRule = true | string\n\n\texport type MembershipVariablesMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly [targetVariable: string]: MembershipVariableMatchRule\n\t\t}\n\n\texport type MembershipRoleMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly variables?: MembershipVariablesMatchRule\n\t\t}\n\n\texport type MembershipMatchRule =\n\t\t| boolean\n\t\t| {\n\t\t\treadonly [role: string]: MembershipRoleMatchRule\n\t\t}\n\n\texport type TenantPermissions = {\n\t\treadonly invite?: MembershipMatchRule\n\t\treadonly unmanagedInvite?:MembershipMatchRule\n\t\treadonly view?: MembershipMatchRule\n\t\treadonly manage?: MembershipMatchRule\n\t}\n\n\texport enum SystemPermissionsLevel {\n\t\tnone = 'none',\n\t\tany = 'any',\n\t\tsome = 'some',\n\t}\n\n\t/**\n\t * @deprecated\n\t */\n\texport type LimitedSystemPermissionsLevel = 'any' | 'none'\n\n\texport type SystemPermissions = {\n\t\treadonly history?: boolean | LimitedSystemPermissionsLevel\n\t\treadonly migrate?: boolean\n\t\treadonly assumeIdentity?: boolean\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t}\n\n\texport type ContentPermissions = {\n\t\treadonly assumeMembership?: MembershipMatchRule\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport interface BaseRolePermissions {\n\t\treadonly inherits?: readonly string[]\n\t\treadonly implicit?: boolean\n\t\treadonly tenant?: TenantPermissions\n\t\treadonly system?: SystemPermissions\n\t\treadonly content?: ContentPermissions\n\t\treadonly variables: Acl.Variables\n\t\treadonly stages?: StagesDefinition\n\t\treadonly entities: Permissions\n\t\treadonly debug?: boolean\n\t}\n\n\texport type RolePermissions =\n\t\t& BaseRolePermissions\n\t\t& {\n\t\t\treadonly [key: string] : JSONValue\n\t\t}\n\texport type Permissions = {\n\t\treadonly [entity: string]: EntityPermissions\n\t}\n\n\texport type Roles = { readonly [role: string]: RolePermissions }\n\texport type Variables = { readonly [name: string]: Variable }\n\n\texport type Schema = {\n\t\treadonly customPrimary?: boolean\n\t\treadonly roles: Acl.Roles\n\t}\n\n\texport type VariablesMap = {\n\t\treadonly [name: string]: Input.Condition\n\t}\n\n\texport interface MembershipVariable {\n\t\treadonly name: string\n\t\treadonly values: readonly string[]\n\t}\n\n\texport interface Membership {\n\t\treadonly role: string\n\t\treadonly variables: readonly MembershipVariable[]\n\t}\n}\n"],"names":["Acl","VariableType","Operation","SystemPermissionsLevel"],"mappings":";;AAGiBA,QAAAA,MAAAA;AAAAA,CAAV,CAAUA,SAAV;AACC,GAAA,CAAKC,kBAAL;AACNA,kBAAA,QAAS,IAAA;AACTA,kBAAA,YAAa,IAAA;AACbA,kBAAA,WAAY,IAAA;AAAA,EAHD,GAAAD,KAAA,iBAAAA,KAAA,eAAA,CAAA,EAAA;AAyDL,GAAA,CAAKE,eAAL;AACNA,eAAA,MAAO,IAAA;AACPA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AAAA,EAJE,GAAAF,KAAA,cAAAA,KAAA,YAAA,CAAA,EAAA;AAqDL,GAAA,CAAKG,4BAAL;AACNA,4BAAA,MAAO,IAAA;AACPA,4BAAA,KAAM,IAAA;AACNA,4BAAA,MAAO,IAAA;AAAA,EAHI,GAAAH,KAAA,2BAAAA,KAAA,yBAAA,CAAA,EAAA;AAAA,GA/GIA,QAAA,QAAAA,cAAA,CAAA,EAAA;"}
@@ -1 +1 @@
1
- {"version":3,"file":"acl.js","sources":["../../../../../packages/schema/src/schema/acl.ts"],"sourcesContent":["import { Input } from './input'\nimport { JSONValue } from './json'\n\nexport namespace Acl {\n\texport enum VariableType {\n\t\tentity = 'entity',\n\t\tpredefined = 'predefined',\n\t\tcondition = 'condition',\n\n\t\t// currently unsupported\n\t\t// enum = 'enum',\n\t\t// column = 'column',\n\t}\n\n\texport type Variable =\n\t\t| EntityVariable\n\t\t| PredefinedVariable\n\t\t| ConditionVariable\n\t\t// | EnumVariable | ColumnValueVariable\n\n\n\n\texport type EntityVariable = {\n\t\treadonly type: VariableType.entity\n\t\treadonly entityName: string\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\texport type PredefinedVariableValue = 'identityID' | 'personID'\n\texport type PredefinedVariable = {\n\t\treadonly type: VariableType.predefined\n\t\treadonly value: PredefinedVariableValue\n\t}\n\n\n\texport type ConditionVariable = {\n\t\treadonly type: VariableType.condition\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\t// export interface EnumVariable {\n\t// \ttype: VariableType.enum\n\t// \tenumName: string\n\t// }\n\n\t// export interface ColumnValueVariable {\n\t// \ttype: VariableType.column\n\t// \tentityName: string\n\t// \tfieldName: string\n\t// }\n\n\texport type PredicateVariable = string //{ name: string }\n\texport type PredicateDefinition<E = never> = Input.Where<PredicateVariable | Input.Condition | E>\n\n\texport type PredicateMap = { readonly [name: string]: PredicateDefinition }\n\n\texport type EntityPermissions = {\n\t\treadonly predicates: PredicateMap\n\t\treadonly operations: EntityOperations\n\t}\n\n\texport enum Operation {\n\t\tread = 'read',\n\t\tcreate = 'create',\n\t\tupdate = 'update',\n\t\tdelete = 'delete',\n\t}\n\n\texport type EntityOperations = {\n\t\treadonly read?: FieldPermissions\n\t\treadonly create?: FieldPermissions\n\t\treadonly update?: FieldPermissions\n\t\treadonly delete?: Predicate\n\t\treadonly noRoot?: readonly `${Operation}`[]\n\n\t\treadonly customPrimary?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport type FieldPermissions = { readonly [field: string]: Predicate }\n\n\texport type PredicateReference = string\n\texport type Predicate = PredicateReference | boolean\n\n\texport type AnyStage = '*'\n\texport type StagesDefinition = AnyStage | readonly string[]\n\n\texport type MembershipVariableMatchRule = true | string\n\n\texport type MembershipVariablesMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly [targetVariable: string]: MembershipVariableMatchRule\n\t\t}\n\n\texport type MembershipRoleMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly variables?: MembershipVariablesMatchRule\n\t\t}\n\n\texport type MembershipMatchRule = {\n\t\treadonly [role: string]: MembershipRoleMatchRule\n\t}\n\n\texport type TenantPermissions = {\n\t\treadonly invite?: boolean | MembershipMatchRule\n\t\treadonly unmanagedInvite?: boolean | MembershipMatchRule\n\t\treadonly view?: MembershipMatchRule\n\t\treadonly manage?: MembershipMatchRule\n\t}\n\n\texport enum SystemPermissionsLevel {\n\t\tnone = 'none',\n\t\tany = 'any',\n\t\tsome = 'some',\n\t}\n\n\t/**\n\t * @deprecated\n\t */\n\texport type LimitedSystemPermissionsLevel = 'any' | 'none'\n\n\texport type SystemPermissions = {\n\t\treadonly history?: boolean | LimitedSystemPermissionsLevel\n\t\treadonly migrate?: boolean\n\t\treadonly assumeIdentity?: boolean\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t}\n\n\texport type ContentPermissions = {\n\t\treadonly assumeMembership?: MembershipMatchRule\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport interface BaseRolePermissions {\n\t\treadonly inherits?: readonly string[]\n\t\treadonly implicit?: boolean\n\t\treadonly tenant?: TenantPermissions\n\t\treadonly system?: SystemPermissions\n\t\treadonly content?: ContentPermissions\n\t\treadonly variables: Acl.Variables\n\t\treadonly stages?: StagesDefinition\n\t\treadonly entities: Permissions\n\t\treadonly debug?: boolean\n\t}\n\n\texport type RolePermissions =\n\t\t& BaseRolePermissions\n\t\t& {\n\t\t\treadonly [key: string] : JSONValue\n\t\t}\n\texport type Permissions = {\n\t\treadonly [entity: string]: EntityPermissions\n\t}\n\n\texport type Roles = { readonly [role: string]: RolePermissions }\n\texport type Variables = { readonly [name: string]: Variable }\n\n\texport type Schema = {\n\t\treadonly customPrimary?: boolean\n\t\treadonly roles: Acl.Roles\n\t}\n\n\texport type VariablesMap = {\n\t\treadonly [name: string]: Input.Condition\n\t}\n\n\texport interface MembershipVariable {\n\t\treadonly name: string\n\t\treadonly values: readonly string[]\n\t}\n\n\texport interface Membership {\n\t\treadonly role: string\n\t\treadonly variables: readonly MembershipVariable[]\n\t}\n}\n"],"names":["Acl","VariableType","Operation","SystemPermissionsLevel"],"mappings":"AAGiB,IAAA;AAAA,CAAV,CAAUA,SAAV;AACC,GAAA,CAAKC,kBAAL;AACNA,kBAAA,QAAS,IAAA;AACTA,kBAAA,YAAa,IAAA;AACbA,kBAAA,WAAY,IAAA;AAAA,EAHD,GAAAD,KAAA,iBAAAA,KAAA,eAAA,CAAA,EAAA;AAyDL,GAAA,CAAKE,eAAL;AACNA,eAAA,MAAO,IAAA;AACPA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AAAA,EAJE,GAAAF,KAAA,cAAAA,KAAA,YAAA,CAAA,EAAA;AAmDL,GAAA,CAAKG,4BAAL;AACNA,4BAAA,MAAO,IAAA;AACPA,4BAAA,KAAM,IAAA;AACNA,4BAAA,MAAO,IAAA;AAAA,EAHI,GAAAH,KAAA,2BAAAA,KAAA,yBAAA,CAAA,EAAA;AAAA,GA7GI,QAAA,MAAA,CAAA,EAAA;"}
1
+ {"version":3,"file":"acl.js","sources":["../../../../../packages/schema/src/schema/acl.ts"],"sourcesContent":["import { Input } from './input'\nimport { JSONValue } from './json'\n\nexport namespace Acl {\n\texport enum VariableType {\n\t\tentity = 'entity',\n\t\tpredefined = 'predefined',\n\t\tcondition = 'condition',\n\n\t\t// currently unsupported\n\t\t// enum = 'enum',\n\t\t// column = 'column',\n\t}\n\n\texport type Variable =\n\t\t| EntityVariable\n\t\t| PredefinedVariable\n\t\t| ConditionVariable\n\t\t// | EnumVariable | ColumnValueVariable\n\n\n\n\texport type EntityVariable = {\n\t\treadonly type: VariableType.entity\n\t\treadonly entityName: string\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\texport type PredefinedVariableValue = 'identityID' | 'personID'\n\texport type PredefinedVariable = {\n\t\treadonly type: VariableType.predefined\n\t\treadonly value: PredefinedVariableValue\n\t}\n\n\n\texport type ConditionVariable = {\n\t\treadonly type: VariableType.condition\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\t// export interface EnumVariable {\n\t// \ttype: VariableType.enum\n\t// \tenumName: string\n\t// }\n\n\t// export interface ColumnValueVariable {\n\t// \ttype: VariableType.column\n\t// \tentityName: string\n\t// \tfieldName: string\n\t// }\n\n\texport type PredicateVariable = string //{ name: string }\n\texport type PredicateDefinition<E = never> = Input.Where<PredicateVariable | Input.Condition | E>\n\n\texport type PredicateMap = { readonly [name: string]: PredicateDefinition }\n\n\texport type EntityPermissions = {\n\t\treadonly predicates: PredicateMap\n\t\treadonly operations: EntityOperations\n\t}\n\n\texport enum Operation {\n\t\tread = 'read',\n\t\tcreate = 'create',\n\t\tupdate = 'update',\n\t\tdelete = 'delete',\n\t}\n\n\texport type EntityOperations = {\n\t\treadonly read?: FieldPermissions\n\t\treadonly create?: FieldPermissions\n\t\treadonly update?: FieldPermissions\n\t\treadonly delete?: Predicate\n\t\treadonly noRoot?: readonly `${Operation}`[]\n\n\t\treadonly customPrimary?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport type FieldPermissions = { readonly [field: string]: Predicate }\n\n\texport type PredicateReference = string\n\texport type Predicate = PredicateReference | boolean\n\n\texport type AnyStage = '*'\n\texport type StagesDefinition = AnyStage | readonly string[]\n\n\texport type MembershipVariableMatchRule = true | string\n\n\texport type MembershipVariablesMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly [targetVariable: string]: MembershipVariableMatchRule\n\t\t}\n\n\texport type MembershipRoleMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly variables?: MembershipVariablesMatchRule\n\t\t}\n\n\texport type MembershipMatchRule =\n\t\t| boolean\n\t\t| {\n\t\t\treadonly [role: string]: MembershipRoleMatchRule\n\t\t}\n\n\texport type TenantPermissions = {\n\t\treadonly invite?: MembershipMatchRule\n\t\treadonly unmanagedInvite?:MembershipMatchRule\n\t\treadonly view?: MembershipMatchRule\n\t\treadonly manage?: MembershipMatchRule\n\t}\n\n\texport enum SystemPermissionsLevel {\n\t\tnone = 'none',\n\t\tany = 'any',\n\t\tsome = 'some',\n\t}\n\n\t/**\n\t * @deprecated\n\t */\n\texport type LimitedSystemPermissionsLevel = 'any' | 'none'\n\n\texport type SystemPermissions = {\n\t\treadonly history?: boolean | LimitedSystemPermissionsLevel\n\t\treadonly migrate?: boolean\n\t\treadonly assumeIdentity?: boolean\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t}\n\n\texport type ContentPermissions = {\n\t\treadonly assumeMembership?: MembershipMatchRule\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport interface BaseRolePermissions {\n\t\treadonly inherits?: readonly string[]\n\t\treadonly implicit?: boolean\n\t\treadonly tenant?: TenantPermissions\n\t\treadonly system?: SystemPermissions\n\t\treadonly content?: ContentPermissions\n\t\treadonly variables: Acl.Variables\n\t\treadonly stages?: StagesDefinition\n\t\treadonly entities: Permissions\n\t\treadonly debug?: boolean\n\t}\n\n\texport type RolePermissions =\n\t\t& BaseRolePermissions\n\t\t& {\n\t\t\treadonly [key: string] : JSONValue\n\t\t}\n\texport type Permissions = {\n\t\treadonly [entity: string]: EntityPermissions\n\t}\n\n\texport type Roles = { readonly [role: string]: RolePermissions }\n\texport type Variables = { readonly [name: string]: Variable }\n\n\texport type Schema = {\n\t\treadonly customPrimary?: boolean\n\t\treadonly roles: Acl.Roles\n\t}\n\n\texport type VariablesMap = {\n\t\treadonly [name: string]: Input.Condition\n\t}\n\n\texport interface MembershipVariable {\n\t\treadonly name: string\n\t\treadonly values: readonly string[]\n\t}\n\n\texport interface Membership {\n\t\treadonly role: string\n\t\treadonly variables: readonly MembershipVariable[]\n\t}\n}\n"],"names":["Acl","VariableType","Operation","SystemPermissionsLevel"],"mappings":"AAGiB,IAAA;AAAA,CAAV,CAAUA,SAAV;AACC,GAAA,CAAKC,kBAAL;AACNA,kBAAA,QAAS,IAAA;AACTA,kBAAA,YAAa,IAAA;AACbA,kBAAA,WAAY,IAAA;AAAA,EAHD,GAAAD,KAAA,iBAAAA,KAAA,eAAA,CAAA,EAAA;AAyDL,GAAA,CAAKE,eAAL;AACNA,eAAA,MAAO,IAAA;AACPA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AAAA,EAJE,GAAAF,KAAA,cAAAA,KAAA,YAAA,CAAA,EAAA;AAqDL,GAAA,CAAKG,4BAAL;AACNA,4BAAA,MAAO,IAAA;AACPA,4BAAA,KAAM,IAAA;AACNA,4BAAA,MAAO,IAAA;AAAA,EAHI,GAAAH,KAAA,2BAAAA,KAAA,yBAAA,CAAA,EAAA;AAAA,GA/GI,QAAA,MAAA,CAAA,EAAA;"}
@@ -1 +1 @@
1
- {"version":3,"file":"acl.cjs","sources":["../../../../../packages/schema/src/schema/acl.ts"],"sourcesContent":["import { Input } from './input'\nimport { JSONValue } from './json'\n\nexport namespace Acl {\n\texport enum VariableType {\n\t\tentity = 'entity',\n\t\tpredefined = 'predefined',\n\t\tcondition = 'condition',\n\n\t\t// currently unsupported\n\t\t// enum = 'enum',\n\t\t// column = 'column',\n\t}\n\n\texport type Variable =\n\t\t| EntityVariable\n\t\t| PredefinedVariable\n\t\t| ConditionVariable\n\t\t// | EnumVariable | ColumnValueVariable\n\n\n\n\texport type EntityVariable = {\n\t\treadonly type: VariableType.entity\n\t\treadonly entityName: string\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\texport type PredefinedVariableValue = 'identityID' | 'personID'\n\texport type PredefinedVariable = {\n\t\treadonly type: VariableType.predefined\n\t\treadonly value: PredefinedVariableValue\n\t}\n\n\n\texport type ConditionVariable = {\n\t\treadonly type: VariableType.condition\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\t// export interface EnumVariable {\n\t// \ttype: VariableType.enum\n\t// \tenumName: string\n\t// }\n\n\t// export interface ColumnValueVariable {\n\t// \ttype: VariableType.column\n\t// \tentityName: string\n\t// \tfieldName: string\n\t// }\n\n\texport type PredicateVariable = string //{ name: string }\n\texport type PredicateDefinition<E = never> = Input.Where<PredicateVariable | Input.Condition | E>\n\n\texport type PredicateMap = { readonly [name: string]: PredicateDefinition }\n\n\texport type EntityPermissions = {\n\t\treadonly predicates: PredicateMap\n\t\treadonly operations: EntityOperations\n\t}\n\n\texport enum Operation {\n\t\tread = 'read',\n\t\tcreate = 'create',\n\t\tupdate = 'update',\n\t\tdelete = 'delete',\n\t}\n\n\texport type EntityOperations = {\n\t\treadonly read?: FieldPermissions\n\t\treadonly create?: FieldPermissions\n\t\treadonly update?: FieldPermissions\n\t\treadonly delete?: Predicate\n\t\treadonly noRoot?: readonly `${Operation}`[]\n\n\t\treadonly customPrimary?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport type FieldPermissions = { readonly [field: string]: Predicate }\n\n\texport type PredicateReference = string\n\texport type Predicate = PredicateReference | boolean\n\n\texport type AnyStage = '*'\n\texport type StagesDefinition = AnyStage | readonly string[]\n\n\texport type MembershipVariableMatchRule = true | string\n\n\texport type MembershipVariablesMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly [targetVariable: string]: MembershipVariableMatchRule\n\t\t}\n\n\texport type MembershipRoleMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly variables?: MembershipVariablesMatchRule\n\t\t}\n\n\texport type MembershipMatchRule = {\n\t\treadonly [role: string]: MembershipRoleMatchRule\n\t}\n\n\texport type TenantPermissions = {\n\t\treadonly invite?: boolean | MembershipMatchRule\n\t\treadonly unmanagedInvite?: boolean | MembershipMatchRule\n\t\treadonly view?: MembershipMatchRule\n\t\treadonly manage?: MembershipMatchRule\n\t}\n\n\texport enum SystemPermissionsLevel {\n\t\tnone = 'none',\n\t\tany = 'any',\n\t\tsome = 'some',\n\t}\n\n\t/**\n\t * @deprecated\n\t */\n\texport type LimitedSystemPermissionsLevel = 'any' | 'none'\n\n\texport type SystemPermissions = {\n\t\treadonly history?: boolean | LimitedSystemPermissionsLevel\n\t\treadonly migrate?: boolean\n\t\treadonly assumeIdentity?: boolean\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t}\n\n\texport type ContentPermissions = {\n\t\treadonly assumeMembership?: MembershipMatchRule\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport interface BaseRolePermissions {\n\t\treadonly inherits?: readonly string[]\n\t\treadonly implicit?: boolean\n\t\treadonly tenant?: TenantPermissions\n\t\treadonly system?: SystemPermissions\n\t\treadonly content?: ContentPermissions\n\t\treadonly variables: Acl.Variables\n\t\treadonly stages?: StagesDefinition\n\t\treadonly entities: Permissions\n\t\treadonly debug?: boolean\n\t}\n\n\texport type RolePermissions =\n\t\t& BaseRolePermissions\n\t\t& {\n\t\t\treadonly [key: string] : JSONValue\n\t\t}\n\texport type Permissions = {\n\t\treadonly [entity: string]: EntityPermissions\n\t}\n\n\texport type Roles = { readonly [role: string]: RolePermissions }\n\texport type Variables = { readonly [name: string]: Variable }\n\n\texport type Schema = {\n\t\treadonly customPrimary?: boolean\n\t\treadonly roles: Acl.Roles\n\t}\n\n\texport type VariablesMap = {\n\t\treadonly [name: string]: Input.Condition\n\t}\n\n\texport interface MembershipVariable {\n\t\treadonly name: string\n\t\treadonly values: readonly string[]\n\t}\n\n\texport interface Membership {\n\t\treadonly role: string\n\t\treadonly variables: readonly MembershipVariable[]\n\t}\n}\n"],"names":["Acl","VariableType","Operation","SystemPermissionsLevel"],"mappings":";;AAGiBA,QAAAA,MAAAA;AAAAA,CAAV,CAAUA,SAAV;AACC,GAAA,CAAKC,kBAAL;AACNA,kBAAA,QAAS,IAAA;AACTA,kBAAA,YAAa,IAAA;AACbA,kBAAA,WAAY,IAAA;AAAA,EAHD,GAAAD,KAAA,iBAAAA,KAAA,eAAA,CAAA,EAAA;AAyDL,GAAA,CAAKE,eAAL;AACNA,eAAA,MAAO,IAAA;AACPA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AAAA,EAJE,GAAAF,KAAA,cAAAA,KAAA,YAAA,CAAA,EAAA;AAmDL,GAAA,CAAKG,4BAAL;AACNA,4BAAA,MAAO,IAAA;AACPA,4BAAA,KAAM,IAAA;AACNA,4BAAA,MAAO,IAAA;AAAA,EAHI,GAAAH,KAAA,2BAAAA,KAAA,yBAAA,CAAA,EAAA;AAAA,GA7GIA,QAAA,QAAAA,cAAA,CAAA,EAAA;"}
1
+ {"version":3,"file":"acl.cjs","sources":["../../../../../packages/schema/src/schema/acl.ts"],"sourcesContent":["import { Input } from './input'\nimport { JSONValue } from './json'\n\nexport namespace Acl {\n\texport enum VariableType {\n\t\tentity = 'entity',\n\t\tpredefined = 'predefined',\n\t\tcondition = 'condition',\n\n\t\t// currently unsupported\n\t\t// enum = 'enum',\n\t\t// column = 'column',\n\t}\n\n\texport type Variable =\n\t\t| EntityVariable\n\t\t| PredefinedVariable\n\t\t| ConditionVariable\n\t\t// | EnumVariable | ColumnValueVariable\n\n\n\n\texport type EntityVariable = {\n\t\treadonly type: VariableType.entity\n\t\treadonly entityName: string\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\texport type PredefinedVariableValue = 'identityID' | 'personID'\n\texport type PredefinedVariable = {\n\t\treadonly type: VariableType.predefined\n\t\treadonly value: PredefinedVariableValue\n\t}\n\n\n\texport type ConditionVariable = {\n\t\treadonly type: VariableType.condition\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\t// export interface EnumVariable {\n\t// \ttype: VariableType.enum\n\t// \tenumName: string\n\t// }\n\n\t// export interface ColumnValueVariable {\n\t// \ttype: VariableType.column\n\t// \tentityName: string\n\t// \tfieldName: string\n\t// }\n\n\texport type PredicateVariable = string //{ name: string }\n\texport type PredicateDefinition<E = never> = Input.Where<PredicateVariable | Input.Condition | E>\n\n\texport type PredicateMap = { readonly [name: string]: PredicateDefinition }\n\n\texport type EntityPermissions = {\n\t\treadonly predicates: PredicateMap\n\t\treadonly operations: EntityOperations\n\t}\n\n\texport enum Operation {\n\t\tread = 'read',\n\t\tcreate = 'create',\n\t\tupdate = 'update',\n\t\tdelete = 'delete',\n\t}\n\n\texport type EntityOperations = {\n\t\treadonly read?: FieldPermissions\n\t\treadonly create?: FieldPermissions\n\t\treadonly update?: FieldPermissions\n\t\treadonly delete?: Predicate\n\t\treadonly noRoot?: readonly `${Operation}`[]\n\n\t\treadonly customPrimary?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport type FieldPermissions = { readonly [field: string]: Predicate }\n\n\texport type PredicateReference = string\n\texport type Predicate = PredicateReference | boolean\n\n\texport type AnyStage = '*'\n\texport type StagesDefinition = AnyStage | readonly string[]\n\n\texport type MembershipVariableMatchRule = true | string\n\n\texport type MembershipVariablesMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly [targetVariable: string]: MembershipVariableMatchRule\n\t\t}\n\n\texport type MembershipRoleMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly variables?: MembershipVariablesMatchRule\n\t\t}\n\n\texport type MembershipMatchRule =\n\t\t| boolean\n\t\t| {\n\t\t\treadonly [role: string]: MembershipRoleMatchRule\n\t\t}\n\n\texport type TenantPermissions = {\n\t\treadonly invite?: MembershipMatchRule\n\t\treadonly unmanagedInvite?:MembershipMatchRule\n\t\treadonly view?: MembershipMatchRule\n\t\treadonly manage?: MembershipMatchRule\n\t}\n\n\texport enum SystemPermissionsLevel {\n\t\tnone = 'none',\n\t\tany = 'any',\n\t\tsome = 'some',\n\t}\n\n\t/**\n\t * @deprecated\n\t */\n\texport type LimitedSystemPermissionsLevel = 'any' | 'none'\n\n\texport type SystemPermissions = {\n\t\treadonly history?: boolean | LimitedSystemPermissionsLevel\n\t\treadonly migrate?: boolean\n\t\treadonly assumeIdentity?: boolean\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t}\n\n\texport type ContentPermissions = {\n\t\treadonly assumeMembership?: MembershipMatchRule\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport interface BaseRolePermissions {\n\t\treadonly inherits?: readonly string[]\n\t\treadonly implicit?: boolean\n\t\treadonly tenant?: TenantPermissions\n\t\treadonly system?: SystemPermissions\n\t\treadonly content?: ContentPermissions\n\t\treadonly variables: Acl.Variables\n\t\treadonly stages?: StagesDefinition\n\t\treadonly entities: Permissions\n\t\treadonly debug?: boolean\n\t}\n\n\texport type RolePermissions =\n\t\t& BaseRolePermissions\n\t\t& {\n\t\t\treadonly [key: string] : JSONValue\n\t\t}\n\texport type Permissions = {\n\t\treadonly [entity: string]: EntityPermissions\n\t}\n\n\texport type Roles = { readonly [role: string]: RolePermissions }\n\texport type Variables = { readonly [name: string]: Variable }\n\n\texport type Schema = {\n\t\treadonly customPrimary?: boolean\n\t\treadonly roles: Acl.Roles\n\t}\n\n\texport type VariablesMap = {\n\t\treadonly [name: string]: Input.Condition\n\t}\n\n\texport interface MembershipVariable {\n\t\treadonly name: string\n\t\treadonly values: readonly string[]\n\t}\n\n\texport interface Membership {\n\t\treadonly role: string\n\t\treadonly variables: readonly MembershipVariable[]\n\t}\n}\n"],"names":["Acl","VariableType","Operation","SystemPermissionsLevel"],"mappings":";;AAGiBA,QAAAA,MAAAA;AAAAA,CAAV,CAAUA,SAAV;AACC,GAAA,CAAKC,kBAAL;AACNA,kBAAA,QAAS,IAAA;AACTA,kBAAA,YAAa,IAAA;AACbA,kBAAA,WAAY,IAAA;AAAA,EAHD,GAAAD,KAAA,iBAAAA,KAAA,eAAA,CAAA,EAAA;AAyDL,GAAA,CAAKE,eAAL;AACNA,eAAA,MAAO,IAAA;AACPA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AAAA,EAJE,GAAAF,KAAA,cAAAA,KAAA,YAAA,CAAA,EAAA;AAqDL,GAAA,CAAKG,4BAAL;AACNA,4BAAA,MAAO,IAAA;AACPA,4BAAA,KAAM,IAAA;AACNA,4BAAA,MAAO,IAAA;AAAA,EAHI,GAAAH,KAAA,2BAAAA,KAAA,yBAAA,CAAA,EAAA;AAAA,GA/GIA,QAAA,QAAAA,cAAA,CAAA,EAAA;"}
@@ -1 +1 @@
1
- {"version":3,"file":"acl.js","sources":["../../../../../packages/schema/src/schema/acl.ts"],"sourcesContent":["import { Input } from './input'\nimport { JSONValue } from './json'\n\nexport namespace Acl {\n\texport enum VariableType {\n\t\tentity = 'entity',\n\t\tpredefined = 'predefined',\n\t\tcondition = 'condition',\n\n\t\t// currently unsupported\n\t\t// enum = 'enum',\n\t\t// column = 'column',\n\t}\n\n\texport type Variable =\n\t\t| EntityVariable\n\t\t| PredefinedVariable\n\t\t| ConditionVariable\n\t\t// | EnumVariable | ColumnValueVariable\n\n\n\n\texport type EntityVariable = {\n\t\treadonly type: VariableType.entity\n\t\treadonly entityName: string\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\texport type PredefinedVariableValue = 'identityID' | 'personID'\n\texport type PredefinedVariable = {\n\t\treadonly type: VariableType.predefined\n\t\treadonly value: PredefinedVariableValue\n\t}\n\n\n\texport type ConditionVariable = {\n\t\treadonly type: VariableType.condition\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\t// export interface EnumVariable {\n\t// \ttype: VariableType.enum\n\t// \tenumName: string\n\t// }\n\n\t// export interface ColumnValueVariable {\n\t// \ttype: VariableType.column\n\t// \tentityName: string\n\t// \tfieldName: string\n\t// }\n\n\texport type PredicateVariable = string //{ name: string }\n\texport type PredicateDefinition<E = never> = Input.Where<PredicateVariable | Input.Condition | E>\n\n\texport type PredicateMap = { readonly [name: string]: PredicateDefinition }\n\n\texport type EntityPermissions = {\n\t\treadonly predicates: PredicateMap\n\t\treadonly operations: EntityOperations\n\t}\n\n\texport enum Operation {\n\t\tread = 'read',\n\t\tcreate = 'create',\n\t\tupdate = 'update',\n\t\tdelete = 'delete',\n\t}\n\n\texport type EntityOperations = {\n\t\treadonly read?: FieldPermissions\n\t\treadonly create?: FieldPermissions\n\t\treadonly update?: FieldPermissions\n\t\treadonly delete?: Predicate\n\t\treadonly noRoot?: readonly `${Operation}`[]\n\n\t\treadonly customPrimary?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport type FieldPermissions = { readonly [field: string]: Predicate }\n\n\texport type PredicateReference = string\n\texport type Predicate = PredicateReference | boolean\n\n\texport type AnyStage = '*'\n\texport type StagesDefinition = AnyStage | readonly string[]\n\n\texport type MembershipVariableMatchRule = true | string\n\n\texport type MembershipVariablesMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly [targetVariable: string]: MembershipVariableMatchRule\n\t\t}\n\n\texport type MembershipRoleMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly variables?: MembershipVariablesMatchRule\n\t\t}\n\n\texport type MembershipMatchRule = {\n\t\treadonly [role: string]: MembershipRoleMatchRule\n\t}\n\n\texport type TenantPermissions = {\n\t\treadonly invite?: boolean | MembershipMatchRule\n\t\treadonly unmanagedInvite?: boolean | MembershipMatchRule\n\t\treadonly view?: MembershipMatchRule\n\t\treadonly manage?: MembershipMatchRule\n\t}\n\n\texport enum SystemPermissionsLevel {\n\t\tnone = 'none',\n\t\tany = 'any',\n\t\tsome = 'some',\n\t}\n\n\t/**\n\t * @deprecated\n\t */\n\texport type LimitedSystemPermissionsLevel = 'any' | 'none'\n\n\texport type SystemPermissions = {\n\t\treadonly history?: boolean | LimitedSystemPermissionsLevel\n\t\treadonly migrate?: boolean\n\t\treadonly assumeIdentity?: boolean\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t}\n\n\texport type ContentPermissions = {\n\t\treadonly assumeMembership?: MembershipMatchRule\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport interface BaseRolePermissions {\n\t\treadonly inherits?: readonly string[]\n\t\treadonly implicit?: boolean\n\t\treadonly tenant?: TenantPermissions\n\t\treadonly system?: SystemPermissions\n\t\treadonly content?: ContentPermissions\n\t\treadonly variables: Acl.Variables\n\t\treadonly stages?: StagesDefinition\n\t\treadonly entities: Permissions\n\t\treadonly debug?: boolean\n\t}\n\n\texport type RolePermissions =\n\t\t& BaseRolePermissions\n\t\t& {\n\t\t\treadonly [key: string] : JSONValue\n\t\t}\n\texport type Permissions = {\n\t\treadonly [entity: string]: EntityPermissions\n\t}\n\n\texport type Roles = { readonly [role: string]: RolePermissions }\n\texport type Variables = { readonly [name: string]: Variable }\n\n\texport type Schema = {\n\t\treadonly customPrimary?: boolean\n\t\treadonly roles: Acl.Roles\n\t}\n\n\texport type VariablesMap = {\n\t\treadonly [name: string]: Input.Condition\n\t}\n\n\texport interface MembershipVariable {\n\t\treadonly name: string\n\t\treadonly values: readonly string[]\n\t}\n\n\texport interface Membership {\n\t\treadonly role: string\n\t\treadonly variables: readonly MembershipVariable[]\n\t}\n}\n"],"names":["Acl","VariableType","Operation","SystemPermissionsLevel"],"mappings":"AAGiB,IAAA;AAAA,CAAV,CAAUA,SAAV;AACC,GAAA,CAAKC,kBAAL;AACNA,kBAAA,QAAS,IAAA;AACTA,kBAAA,YAAa,IAAA;AACbA,kBAAA,WAAY,IAAA;AAAA,EAHD,GAAAD,KAAA,iBAAAA,KAAA,eAAA,CAAA,EAAA;AAyDL,GAAA,CAAKE,eAAL;AACNA,eAAA,MAAO,IAAA;AACPA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AAAA,EAJE,GAAAF,KAAA,cAAAA,KAAA,YAAA,CAAA,EAAA;AAmDL,GAAA,CAAKG,4BAAL;AACNA,4BAAA,MAAO,IAAA;AACPA,4BAAA,KAAM,IAAA;AACNA,4BAAA,MAAO,IAAA;AAAA,EAHI,GAAAH,KAAA,2BAAAA,KAAA,yBAAA,CAAA,EAAA;AAAA,GA7GI,QAAA,MAAA,CAAA,EAAA;"}
1
+ {"version":3,"file":"acl.js","sources":["../../../../../packages/schema/src/schema/acl.ts"],"sourcesContent":["import { Input } from './input'\nimport { JSONValue } from './json'\n\nexport namespace Acl {\n\texport enum VariableType {\n\t\tentity = 'entity',\n\t\tpredefined = 'predefined',\n\t\tcondition = 'condition',\n\n\t\t// currently unsupported\n\t\t// enum = 'enum',\n\t\t// column = 'column',\n\t}\n\n\texport type Variable =\n\t\t| EntityVariable\n\t\t| PredefinedVariable\n\t\t| ConditionVariable\n\t\t// | EnumVariable | ColumnValueVariable\n\n\n\n\texport type EntityVariable = {\n\t\treadonly type: VariableType.entity\n\t\treadonly entityName: string\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\texport type PredefinedVariableValue = 'identityID' | 'personID'\n\texport type PredefinedVariable = {\n\t\treadonly type: VariableType.predefined\n\t\treadonly value: PredefinedVariableValue\n\t}\n\n\n\texport type ConditionVariable = {\n\t\treadonly type: VariableType.condition\n\t\treadonly fallback?: Input.Condition\n\t}\n\n\t// export interface EnumVariable {\n\t// \ttype: VariableType.enum\n\t// \tenumName: string\n\t// }\n\n\t// export interface ColumnValueVariable {\n\t// \ttype: VariableType.column\n\t// \tentityName: string\n\t// \tfieldName: string\n\t// }\n\n\texport type PredicateVariable = string //{ name: string }\n\texport type PredicateDefinition<E = never> = Input.Where<PredicateVariable | Input.Condition | E>\n\n\texport type PredicateMap = { readonly [name: string]: PredicateDefinition }\n\n\texport type EntityPermissions = {\n\t\treadonly predicates: PredicateMap\n\t\treadonly operations: EntityOperations\n\t}\n\n\texport enum Operation {\n\t\tread = 'read',\n\t\tcreate = 'create',\n\t\tupdate = 'update',\n\t\tdelete = 'delete',\n\t}\n\n\texport type EntityOperations = {\n\t\treadonly read?: FieldPermissions\n\t\treadonly create?: FieldPermissions\n\t\treadonly update?: FieldPermissions\n\t\treadonly delete?: Predicate\n\t\treadonly noRoot?: readonly `${Operation}`[]\n\n\t\treadonly customPrimary?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport type FieldPermissions = { readonly [field: string]: Predicate }\n\n\texport type PredicateReference = string\n\texport type Predicate = PredicateReference | boolean\n\n\texport type AnyStage = '*'\n\texport type StagesDefinition = AnyStage | readonly string[]\n\n\texport type MembershipVariableMatchRule = true | string\n\n\texport type MembershipVariablesMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly [targetVariable: string]: MembershipVariableMatchRule\n\t\t}\n\n\texport type MembershipRoleMatchRule =\n\t\t| true\n\t\t| {\n\t\t\treadonly variables?: MembershipVariablesMatchRule\n\t\t}\n\n\texport type MembershipMatchRule =\n\t\t| boolean\n\t\t| {\n\t\t\treadonly [role: string]: MembershipRoleMatchRule\n\t\t}\n\n\texport type TenantPermissions = {\n\t\treadonly invite?: MembershipMatchRule\n\t\treadonly unmanagedInvite?:MembershipMatchRule\n\t\treadonly view?: MembershipMatchRule\n\t\treadonly manage?: MembershipMatchRule\n\t}\n\n\texport enum SystemPermissionsLevel {\n\t\tnone = 'none',\n\t\tany = 'any',\n\t\tsome = 'some',\n\t}\n\n\t/**\n\t * @deprecated\n\t */\n\texport type LimitedSystemPermissionsLevel = 'any' | 'none'\n\n\texport type SystemPermissions = {\n\t\treadonly history?: boolean | LimitedSystemPermissionsLevel\n\t\treadonly migrate?: boolean\n\t\treadonly assumeIdentity?: boolean\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t}\n\n\texport type ContentPermissions = {\n\t\treadonly assumeMembership?: MembershipMatchRule\n\t\treadonly export?: boolean\n\t\treadonly import?: boolean\n\t\treadonly refreshMaterializedView?: boolean\n\t}\n\n\texport interface BaseRolePermissions {\n\t\treadonly inherits?: readonly string[]\n\t\treadonly implicit?: boolean\n\t\treadonly tenant?: TenantPermissions\n\t\treadonly system?: SystemPermissions\n\t\treadonly content?: ContentPermissions\n\t\treadonly variables: Acl.Variables\n\t\treadonly stages?: StagesDefinition\n\t\treadonly entities: Permissions\n\t\treadonly debug?: boolean\n\t}\n\n\texport type RolePermissions =\n\t\t& BaseRolePermissions\n\t\t& {\n\t\t\treadonly [key: string] : JSONValue\n\t\t}\n\texport type Permissions = {\n\t\treadonly [entity: string]: EntityPermissions\n\t}\n\n\texport type Roles = { readonly [role: string]: RolePermissions }\n\texport type Variables = { readonly [name: string]: Variable }\n\n\texport type Schema = {\n\t\treadonly customPrimary?: boolean\n\t\treadonly roles: Acl.Roles\n\t}\n\n\texport type VariablesMap = {\n\t\treadonly [name: string]: Input.Condition\n\t}\n\n\texport interface MembershipVariable {\n\t\treadonly name: string\n\t\treadonly values: readonly string[]\n\t}\n\n\texport interface Membership {\n\t\treadonly role: string\n\t\treadonly variables: readonly MembershipVariable[]\n\t}\n}\n"],"names":["Acl","VariableType","Operation","SystemPermissionsLevel"],"mappings":"AAGiB,IAAA;AAAA,CAAV,CAAUA,SAAV;AACC,GAAA,CAAKC,kBAAL;AACNA,kBAAA,QAAS,IAAA;AACTA,kBAAA,YAAa,IAAA;AACbA,kBAAA,WAAY,IAAA;AAAA,EAHD,GAAAD,KAAA,iBAAAA,KAAA,eAAA,CAAA,EAAA;AAyDL,GAAA,CAAKE,eAAL;AACNA,eAAA,MAAO,IAAA;AACPA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AACTA,eAAA,QAAS,IAAA;AAAA,EAJE,GAAAF,KAAA,cAAAA,KAAA,YAAA,CAAA,EAAA;AAqDL,GAAA,CAAKG,4BAAL;AACNA,4BAAA,MAAO,IAAA;AACPA,4BAAA,KAAM,IAAA;AACNA,4BAAA,MAAO,IAAA;AAAA,EAHI,GAAAH,KAAA,2BAAAA,KAAA,yBAAA,CAAA,EAAA;AAAA,GA/GI,QAAA,MAAA,CAAA,EAAA;"}
@@ -59,12 +59,12 @@ export declare namespace Acl {
59
59
  type MembershipRoleMatchRule = true | {
60
60
  readonly variables?: MembershipVariablesMatchRule;
61
61
  };
62
- type MembershipMatchRule = {
62
+ type MembershipMatchRule = boolean | {
63
63
  readonly [role: string]: MembershipRoleMatchRule;
64
64
  };
65
65
  type TenantPermissions = {
66
- readonly invite?: boolean | MembershipMatchRule;
67
- readonly unmanagedInvite?: boolean | MembershipMatchRule;
66
+ readonly invite?: MembershipMatchRule;
67
+ readonly unmanagedInvite?: MembershipMatchRule;
68
68
  readonly view?: MembershipMatchRule;
69
69
  readonly manage?: MembershipMatchRule;
70
70
  };
@@ -1 +1 @@
1
- {"version":3,"file":"acl.d.ts","sourceRoot":"","sources":["../../../src/schema/acl.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"acl.d.ts","sourceRoot":"","sources":["../../../src/schema/acl.ts"],"names":[],"mappings":"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"}
@@ -1 +1 @@
1
- {"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/prop-types/index.d.ts","../../../../node_modules/@types/react/index.d.ts","../../../../node_modules/@types/react/jsx-runtime.d.ts","../../src/ProjectRole.ts","../../src/schema/value.ts","../../src/schema/input.ts","../../src/schema/json.ts","../../src/schema/acl.ts","../../src/schema/actions.ts","../../src/schema/actionsPayload.ts","../../src/schema/model.ts","../../src/schema/result.ts","../../src/schema/settings.ts","../../src/schema/validation.ts","../../src/schema/index.ts","../../src/index.ts","../../../../node_modules/@types/node/compatibility/disposable.d.ts","../../../../node_modules/@types/node/compatibility/indexable.d.ts","../../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/@types/node/compatibility/index.d.ts","../../../../node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/file.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/util.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/eventsource.d.ts","../../../../node_modules/undici-types/filereader.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/index.d.ts","../../../../node_modules/@types/accepts/index.d.ts","../../../../node_modules/@types/aria-query/index.d.ts","../../../../node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/@types/babel__template/index.d.ts","../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/@types/babel__core/index.d.ts","../../../../node_modules/@types/bcryptjs/index.d.ts","../../../../node_modules/@types/connect/index.d.ts","../../../../node_modules/@types/body-parser/index.d.ts","../../../../node_modules/@types/ws/index.d.ts","../../../../node_modules/bun-types/fetch.d.ts","../../../../node_modules/bun-types/globals.d.ts","../../../../node_modules/bun-types/bun.d.ts","../../../../node_modules/bun-types/overrides.d.ts","../../../../node_modules/bun-types/ffi.d.ts","../../../../node_modules/bun-types/test.d.ts","../../../../node_modules/bun-types/html-rewriter.d.ts","../../../../node_modules/bun-types/jsc.d.ts","../../../../node_modules/bun-types/sqlite.d.ts","../../../../node_modules/bun-types/wasm.d.ts","../../../../node_modules/bun-types/deprecated.d.ts","../../../../node_modules/bun-types/index.d.ts","../../../../node_modules/@types/bun/index.d.ts","../../../../node_modules/@types/content-disposition/index.d.ts","../../../../node_modules/@types/mime/index.d.ts","../../../../node_modules/@types/send/index.d.ts","../../../../node_modules/@types/qs/index.d.ts","../../../../node_modules/@types/range-parser/index.d.ts","../../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../../node_modules/@types/http-errors/index.d.ts","../../../../node_modules/@types/serve-static/index.d.ts","../../../../node_modules/@types/express/index.d.ts","../../../../node_modules/@types/keygrip/index.d.ts","../../../../node_modules/@types/cookies/index.d.ts","../../../../node_modules/@types/degit/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/jsonfile/index.d.ts","../../../../node_modules/@types/jsonfile/utils.d.ts","../../../../node_modules/@types/fs-extra/index.d.ts","../../../../node_modules/@types/http-assert/index.d.ts","../../../../node_modules/@types/is-hotkey/index.d.ts","../../../../node_modules/@types/js-levenshtein/index.d.ts","../../../../node_modules/@types/js-yaml/index.d.ts","../../../../node_modules/@types/json-schema/index.d.ts","../../../../node_modules/@types/koa-compose/index.d.ts","../../../../node_modules/@types/koa/index.d.ts","../../../../node_modules/@types/koa-bodyparser/index.d.ts","../../../../node_modules/@types/koa-compress/index.d.ts","../../../../node_modules/@types/koa__cors/index.d.ts","../../../../node_modules/@types/mime-types/index.d.ts","../../../../node_modules/@types/mustache/index.d.ts","../../../../node_modules/form-data/index.d.ts","../../../../node_modules/@types/node-fetch/externals.d.ts","../../../../node_modules/@types/node-fetch/index.d.ts","../../../../node_modules/@types/nodemailer/lib/dkim/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts","../../../../node_modules/@types/nodemailer/lib/xoauth2/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mailer/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts","../../../../node_modules/@types/nodemailer/lib/shared/index.d.ts","../../../../node_modules/@types/nodemailer/lib/json-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/sendmail-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/ses-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-pool/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/stream-transport/index.d.ts","../../../../node_modules/@types/nodemailer/index.d.ts","../../../../node_modules/@types/npm-package-arg/index.d.ts","../../../../node_modules/@types/pg/node_modules/pg-types/index.d.ts","../../../../node_modules/pg-protocol/dist/messages.d.ts","../../../../node_modules/pg-protocol/dist/serializer.d.ts","../../../../node_modules/pg-protocol/dist/parser.d.ts","../../../../node_modules/pg-protocol/dist/index.d.ts","../../../../node_modules/@types/pg/index.d.ts","../../../../node_modules/kleur/kleur.d.ts","../../../../node_modules/@types/prompts/index.d.ts","../../../../node_modules/@types/react-dom/index.d.ts","../../../../node_modules/@types/semver/classes/semver.d.ts","../../../../node_modules/@types/semver/functions/parse.d.ts","../../../../node_modules/@types/semver/functions/valid.d.ts","../../../../node_modules/@types/semver/functions/clean.d.ts","../../../../node_modules/@types/semver/functions/inc.d.ts","../../../../node_modules/@types/semver/functions/diff.d.ts","../../../../node_modules/@types/semver/functions/major.d.ts","../../../../node_modules/@types/semver/functions/minor.d.ts","../../../../node_modules/@types/semver/functions/patch.d.ts","../../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../../node_modules/@types/semver/functions/compare.d.ts","../../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../../node_modules/@types/semver/functions/sort.d.ts","../../../../node_modules/@types/semver/functions/rsort.d.ts","../../../../node_modules/@types/semver/functions/gt.d.ts","../../../../node_modules/@types/semver/functions/lt.d.ts","../../../../node_modules/@types/semver/functions/eq.d.ts","../../../../node_modules/@types/semver/functions/neq.d.ts","../../../../node_modules/@types/semver/functions/gte.d.ts","../../../../node_modules/@types/semver/functions/lte.d.ts","../../../../node_modules/@types/semver/functions/cmp.d.ts","../../../../node_modules/@types/semver/functions/coerce.d.ts","../../../../node_modules/@types/semver/classes/comparator.d.ts","../../../../node_modules/@types/semver/classes/range.d.ts","../../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../../node_modules/@types/semver/ranges/valid.d.ts","../../../../node_modules/@types/semver/ranges/outside.d.ts","../../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../../node_modules/@types/semver/ranges/subset.d.ts","../../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../../node_modules/@types/semver/index.d.ts"],"fileIdsList":[[104,147,199,211,219],[104,147,211,219],[104,147,162,196,211,219],[104,147,199,200,201,202,203,211,219],[104,147,199,201,211,219],[104,147,162,196,206,211,219],[104,147,211,219,220],[104,147,162,196,206,211,219,230,231],[104,147,159,211,219],[104,147,159,162,196,211,219,224,225,226],[104,147,207,211,219,225,227,229],[104,147,160,196,211,219,235,236],[104,147,160,189,196,211,219],[104,147,211,219,244],[104,147,195,196,211,219,244],[104,146,147,159,162,163,167,173,189,196,197,211,219,222,228,231,232,238,243],[104,147,162,189,196,211,219,250,251],[104,144,147,211,219],[104,146,147,211,219],[147,211,219],[104,147,152,181,211,219],[104,147,148,153,159,160,167,178,189,211,219],[104,147,148,149,159,167,211,219],[99,100,101,104,147,211,219],[104,147,150,190,211,219],[104,147,151,152,160,168,211,219],[104,147,152,178,186,211,219],[104,147,153,155,159,167,211,219],[104,146,147,154,211,219],[104,147,155,156,211,219],[104,147,157,159,211,219],[104,146,147,159,211,219],[104,147,159,160,161,178,189,211,219],[104,147,159,160,161,174,178,181,211,212,219],[104,142,147,194,211,219],[104,147,155,159,162,167,178,189,211,219],[104,147,159,160,162,163,167,178,186,189,211,219],[104,147,162,164,178,186,189,211,219],[102,103,104,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,211,219],[104,147,159,165,211,219],[104,147,166,189,194,211,219],[104,147,155,159,167,178,211,219],[104,147,168,211,219],[104,147,169,211,219],[104,146,147,170,211,219],[104,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,211,212,219],[104,147,172,211,219],[104,147,173,211,219],[104,147,159,174,175,211,219],[104,147,174,176,190,192,211,219],[104,147,159,178,179,181,211,219],[104,147,178,180,211,219],[104,147,178,179,211,219],[104,147,181,211,219],[104,147,182,211,219],[104,144,147,178,211,219],[104,147,159,184,185,211,219],[104,147,184,185,211,219],[104,147,152,167,178,186,211,212,219],[104,147,187,211,219],[104,147,167,188,211,219],[104,147,162,173,189,211,219],[104,147,152,190,211,219],[104,147,178,191,211,219],[104,147,166,192,211,219],[104,147,193,211,219],[104,147,152,159,161,170,178,189,192,194,211,219],[104,147,178,195,211,219],[104,147,196,211,219,254,256,260,261,262,263,264,265],[104,147,178,196,211,219],[104,147,159,196,211,219,254,256,257,259,266],[104,147,159,167,178,189,196,211,219,253,254,255,257,258,259,266],[104,147,178,196,211,219,256,257],[104,147,178,196,211,219,256],[104,147,196,211,219,254,256,257,259,266],[104,147,178,196,211,219,258],[104,147,159,167,178,186,196,211,212,219,255,257,259],[104,147,159,196,211,219,254,256,257,258,259,266],[104,147,159,178,196,211,219,254,255,256,257,258,259,266],[104,147,159,178,196,211,219,254,256,257,259,266],[104,147,162,178,196,211,219,259],[104,147,159,178,186,196,211,212,219,268,269,272,273],[104,147,178,196,211,219,274],[84,104,147,211,219],[81,82,83,104,147,211,219],[104,147,211,219,277,316],[104,147,211,219,277,301,316],[104,147,211,219,316],[104,147,211,219,277],[104,147,211,219,277,302,316],[104,147,211,219,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315],[104,147,211,219,302,316],[104,147,160,178,196,211,219,223],[104,147,162,196,211,219,224,228],[104,147,159,162,164,178,186,189,195,196,211,212,219],[104,147,152,186,190,212,219],[104,147,211],[104,142,147,211,219],[104,142,147,152,170,178,181,190,194,208,209,211,219],[104,147,196,208,209,210,211,212,213,214,215,216,217,218,219],[104,147,161,186,211,219],[104,147,211,214,219],[104,147,162,178,196,211,219],[104,147,196,211,219,269,270,271],[104,147,196,211,219],[104,147,178,196,211,219,269],[104,114,118,147,189,211,219],[104,114,147,178,189,211,219],[104,109,147,211,219],[104,111,114,147,186,189,211,212,219],[104,147,167,186,211,212,219],[104,109,147,196,211,219],[104,111,114,147,167,189,211,219],[104,106,107,110,113,147,159,178,189,211,219],[104,114,121,147,211,219],[104,106,112,147,211,219],[104,114,135,136,147,211,219],[104,110,114,147,181,189,196,211,219],[104,135,147,196,211,219],[104,108,109,147,196,211,219],[104,114,147,211,219],[104,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,147,211,219],[104,114,129,147,211,219],[104,114,121,122,147,211,219],[104,112,114,122,123,147,211,219],[104,113,147,211,219],[104,106,109,114,147,211,219],[104,114,118,122,123,147,211,219],[104,118,147,211,219],[104,112,114,117,147,189,211,219],[104,106,111,114,121,147,211,219],[104,147,178,211,219],[104,109,114,135,147,194,196,211,219],[85,104,147,211,219],[85,86,97,104,147,211,219],[85,88,89,104,147,211,219],[85,89,104,147,211,219],[85,87,88,89,90,91,92,93,94,95,96,104,147,211,219],[85,87,104,147,211,219]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"65ff5a0aefd7817a03c1ad04fee85c9cdd3ec415cc3c9efec85d8008d4d5e4ee","impliedFormat":1},{"version":"aea201321e7df78b294c9c39c61503ed81fb73b1b1703240013b557dfa25b016","affectsGlobalScope":true,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"b0d74cce9e676c2b6c48208ef6c1fabad459205f23e4dde2338c7829dff709ba","signature":"466df547af9cf3861658b08baf3ecbd41c0eaad2101378fadfa54ab24db103e6"},{"version":"72c7269d60a743e28df9b1e5c3afbe833f95fa7821ee24b1a3cd090898ff368d","signature":"67070445e9cb6a031953839e5f673d751255409d0ecd2ce8a8bd8f09bb4a07f2"},{"version":"77f540a9fcb61ade39b8b027e650afdf88bb4c6f9a3e6cc4cc1bdce8418c748e","signature":"91789a99e4f308f5f34ac7dd87445c81ff6ecd2d1255c991b3961a91ae7adb9d"},{"version":"8400bff5f2de1f00f071ac265cf7fab8d6f3aeead7550e8973982c8822667b97","signature":"b1296831e111197bd9ebd73f0d15ad0fe2e11fcc51a6302edb23ffd93794db36"},{"version":"ca3f7d7b7f28635112585ed564ff03a76f97673fb1e30a1e48c44cec3a7a4eaf","signature":"f1eff102a645ac08cbd3774a8853585007bc6cac147771df34f35fc4253daba6"},{"version":"fb65bb7426501402feebb61da84888967f80b47136af89809077412c244356ac","signature":"ec0b1ad8de385d526b4e16c7ab8da4b84c1fb15a680d4c82b0e0b5f70e9f80c5"},{"version":"d2e93f537b86ee2f10c76708520a173188e8fb081045da7eb60e28de88b384ca","signature":"462c0b72a4911d6356ebbfed5dedd9682edf2bd60bcf6ea025539f1cd8c64bf4"},{"version":"fca6a68f840397c71773cf1e94895e0f65877f447e1942108d057250467460ef","signature":"85fa570b595ee21d9c853453fd2d5a529012b2a231b4ded46a4355ca09ac9035"},{"version":"73f344593733ca1af0ba8ffc6295b418bf5b4ad1a373a1480a884b7b1e283c9c","signature":"f42116e2e8ad600dc90bdf8ceade9dcf593c35812d8aaba9c03a3f1dbb87330e"},{"version":"e69edd6b0cdca3f611af48c8aac743fd929c35cbb026c7630cddccdbdf5e56a4","signature":"54410f2253354330ff63801044c8d826de679724d9b60d5d3053d3af6aee993f"},{"version":"c88218c1acee8645370add51cceb22b3b8e9af4e069fade9f606ddf8a13f977e","signature":"dff2fee737ebe5174f549c9f28e114c0cabac4b5fe4e364654465ba528979ba4"},{"version":"6dd63c3f324b584c843826db188b8dec1d55b4940817f7abac84ceda4b17e977","signature":"ad1f130d5fb49665e218d5366db67ead55593335a2c02733ae5f8466a99def53"},{"version":"c2e2372d5768b6d90e82087d5ef0feebbb2449c153b80c45c2e323e0d2b2f22a","signature":"92404f0f42ffd8d939cf6fb1a911235e931981f94dcab0e85f9ae5faf876ea3c"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b80c6175da9de59bace50a72c2d68490d4ab5b07016ff5367bc7ba33cf2f219","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"08faa97886e71757779428dd4c69a545c32c85fd629d1116d42710b32c6378bc","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b042aa5d277ad6963e2837179fd2f8fbb01968ac67115b0833c0244e93d1d50","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36","impliedFormat":1},{"version":"23cfd70b42094e54cc3c5dab996d81b97e2b6f38ccb24ead85454b8ddfe2fc4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"a3e8bafb2af8e850c644f4be7f5156cf7d23b7bfdc3b786bd4d10ed40329649c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"f77d9188e41291acf14f476e931972460a303e1952538f9546e7b370cb8d0d20","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","impliedFormat":1},{"version":"5a369483ac4cfbdf0331c248deeb36140e6907db5e1daed241546b4a2055f82c","impliedFormat":1},{"version":"e8f5b5cc36615c17d330eaf8eebbc0d6bdd942c25991f96ef122f246f4ff722f","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4a806152acbef81593f96cae6f2b04784d776457d97adbe2694478b243fcf03","impliedFormat":1},{"version":"71adf5dbc59568663d252a46179e71e4d544c053978bfc526d11543a3f716f42","impliedFormat":1},{"version":"c60db41f7bee80fb80c0b12819f5e465c8c8b465578da43e36d04f4a4646f57d","impliedFormat":1},{"version":"93bd413918fa921c8729cef45302b24d8b6c7855d72d5bf82d3972595ae8dcbf","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e","impliedFormat":1},{"version":"e184c4b8918ef56c8c9e68bd79f3f3780e2d0d75bf2b8a41da1509a40c2deb46","affectsGlobalScope":true,"impliedFormat":1},{"version":"d206b4baf4ddcc15d9d69a9a2f4999a72a2c6adeaa8af20fa7a9960816287555","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"70731d10d5311bd4cf710ef7f6539b62660f4b0bfdbb3f9fbe1d25fe6366a7fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b19db3600a17af69d4f33d08cc7076a7d19fb65bb36e442cac58929ec7c9482","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"137c2894e8f3e9672d401cc0a305dc7b1db7c69511cf6d3970fb53302f9eae09","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"ba1f814c22fd970255ddd60d61fb7e00c28271c933ab5d5cc19cd3ca66b8f57c","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"295f068af94245ee9d780555351bef98adfd58f8baf0b9dadbc31a489b881f8b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"09d479208911ac3ac6a7c2fe86217fc1abe6c4f04e2d52e4890e500699eeab32","affectsGlobalScope":true,"impliedFormat":1},{"version":"27d8987fd22d92efe6560cf0ce11767bf089903ffe26047727debfd1f3bf438b","affectsGlobalScope":true,"impliedFormat":1},{"version":"578d8bb6dcb2a1c03c4c3f8eb71abc9677e1a5c788b7f24848e3138ce17f3400","impliedFormat":1},{"version":"4f029899f9bae07e225c43aef893590541b2b43267383bf5e32e3a884d219ed5","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"5b566927cad2ed2139655d55d690ffa87df378b956e7fe1c96024c4d9f75c4cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"bce947017cb7a2deebcc4f5ba04cead891ce6ad1602a4438ae45ed9aa1f39104","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"e2c72c065a36bc9ab2a00ac6a6f51e71501619a72c0609defd304d46610487a4","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"616075a6ac578cf5a013ee12964188b4412823796ce0b202c6f1d2e4ca8480d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1},{"version":"87f287f296f3ff07dbd14ea7853c2400d995dccd7bd83206196d6c0974774e96","impliedFormat":1},{"version":"ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","impliedFormat":1},{"version":"03f1d83d61696326ea29c8a1c15cbaccf61e92598d53f2ccae06078531f42448","impliedFormat":1},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"3a9313fe5ace558b8b18e85f931da10b259e738775f411c061e5f15787b138eb","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"a3d3f704c5339a36da3ca8c62b29072f87e86c783b8452d235992142ec71aa2d","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"eb15edfcef078300657e1d5d678e1944b3518c2dd8f26792fdba2fe29f73d32b","impliedFormat":1},{"version":"720f5d028d71bc22ed4a5311a6ea884329db475d994f805ea86470111eccc1a1","impliedFormat":1},{"version":"8c4df6bbce66d5c39a40a642ce426ec1b2daf16e5be2e4c88751dab596745ab6","affectsGlobalScope":true,"impliedFormat":1},{"version":"fd5e0d9b6792c4789055b2e44381f89d1328c7afa9e03755571f683b0732ed2b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3de9f829f53966384023e023185c0515d18b747f0001924a1919751e6ac5308d","affectsGlobalScope":true,"impliedFormat":1},{"version":"75e5eba775a6a65a949380d689933849e190fef8a12867eb6fe884141af09d30","impliedFormat":1},{"version":"8a5b54c46c65f2f4f7d594dfd9a9bc4fb719d7a2a65d4f582aa7240ca5145a03","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b8af6e8cf44313406800b820bffc49e83a8ec4598772db25954d03a86c96818","affectsGlobalScope":true,"impliedFormat":1},{"version":"95d4d18508a76d6a7036029d974d27e5ffddd742650f967dca22cf035518ca28","impliedFormat":1},{"version":"c3b50cb839f257e949470080b12c737ce0e585d198690dffc8cc4dd91821b083","impliedFormat":1},{"version":"d2e66d9477edaa0e4dea79d699f0855a5a7419915da740e28fbfdb322c6a60a6","affectsGlobalScope":true,"impliedFormat":1},{"version":"ca69bbf884a17e7a485bb4fcd129386874050916b275e414af14b2170b4ea728","affectsGlobalScope":true,"impliedFormat":1},{"version":"b52c121cd491cfdbea04c3a77d23e193c23cb411e7598a04ba13a4592842fe2f","impliedFormat":1},{"version":"37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","impliedFormat":1},{"version":"0504070e7eaba788f5d0d5926782ed177f1db01cee28363c488fae94950c0bbc","impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"f0c3a51c7314523b169d4756b2df6e3e59a3f0d9bc4848248362edaf75b5d315","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"a899915e1fc41c6130d906ae77067b63ff2d678bb842b4c7a0741dca7f55c218","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","impliedFormat":1},{"version":"6847334317c1bc1e6fc4b679b0095bbd2b6ee3b85fe3f26fc26bac462f68ef5e","impliedFormat":1},{"version":"2224f3072e3cc07906eeed5c71746779511fba2dd224addc5489bcdb489bdee5","impliedFormat":1},{"version":"571b035692196df4a26d3dae3c0319bc640d5f07bab3011fb72a8743499dd2f8","impliedFormat":1},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"211440ce81e87b3491cdf07155881344b0a61566df6e749acff0be7e8b9d1a07","impliedFormat":1},{"version":"5d9a0b6e6be8dbb259f64037bce02f34692e8c1519f5cd5d467d7fa4490dced4","impliedFormat":1},{"version":"880da0e0f3ebca42f9bd1bc2d3e5e7df33f2619d85f18ee0ed4bd16d1800bc32","impliedFormat":1},{"version":"fbf802b3a028f5eb22ad406ee5fc7c368f0acfd3a2a6d0f805120766f5717ec8","impliedFormat":1},{"version":"0112a7f3c11fc4792e70f5d0d5c9f80ee6a1c5c548723714433da6a03307e87b","impliedFormat":1},{"version":"a8d630427635fa316e57fa4949132acde9cf23aa067220bffea30612497824cc","impliedFormat":1},{"version":"7a1dd1e9c8bf5e23129495b10718b280340c7500570e0cfe5cffcdee51e13e48","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"7e8d3f08435ad2cefe67f58182618bfc9a0a29db08cf2544b94cbcae754a9bd9","impliedFormat":1},{"version":"8cf9b9045a614f883b623c2f1a631ec6a93321747e933330b2eec0ee47164a34","impliedFormat":1},{"version":"cee62e64fc4bdfb3798ab8e21486fadd2027ce4128349989acc63905366f91c5","impliedFormat":1},{"version":"f4b436d9b250c7e7087edef00fc0ecf9a62cbbbfe0f1d1c4f3888f1355c17eeb","impliedFormat":1},{"version":"643976e0b3d579304eafdb817bffc5b33bd8f99636ba9f5ee7a8d33288c1ae94","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"b58c81d4cc365d3986aee6c2a86592edc50f141b796899079196ffb103047390","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"b70c7ea83a7d0de17a791d9b5283f664033a96362c42cc4d2b2e0bdaa65ef7d1","impliedFormat":1},{"version":"6825eb4d1c8beb77e9ed6681c830326a15ebf52b171f83ffbca1b1574c90a3b0","impliedFormat":1},{"version":"1741975791f9be7f803a826457273094096e8bba7a50f8fa960d5ed2328cdbcc","impliedFormat":1},{"version":"6ec0d1c15d14d63d08ccb10d09d839bf8a724f6b4b9ed134a3ab5042c54a7721","impliedFormat":1},{"version":"043a3b03dcb40d6b87d36ad26378c80086905232ee5602f067eaaed21baa42ef","impliedFormat":1},{"version":"b61028c5e29a0691e91a03fa2c4501ea7ed27f8fa536286dc2887a39a38b6c44","impliedFormat":1},{"version":"2c3bcb8a4ea2fcb4208a06672af7540dd65bf08298d742f041ffa6cbe487cf80","impliedFormat":1},{"version":"1cce0460d75645fc40044c729da9a16c2e0dabe11a58b5e4bfd62ac840a1835d","impliedFormat":1},{"version":"c784a9f75a6f27cf8c43cc9a12c66d68d3beb2e7376e1babfae5ae4998ffbc4a","impliedFormat":1},{"version":"feb4c51948d875fdbbaa402dad77ee40cf1752b179574094b613d8ad98921ce1","impliedFormat":1},{"version":"a6d3984b706cefe5f4a83c1d3f0918ff603475a2a3afa9d247e4114f18b1f1ef","impliedFormat":1},{"version":"b457d606cabde6ea3b0bc32c23dc0de1c84bb5cb06d9e101f7076440fc244727","impliedFormat":1},{"version":"9d59919309a2d462b249abdefba8ca36b06e8e480a77b36c0d657f83a63af465","impliedFormat":1},{"version":"9faa2661daa32d2369ec31e583df91fd556f74bcbd036dab54184303dee4f311","impliedFormat":1},{"version":"ba2e5b6da441b8cf9baddc30520c59dc3ab47ad3674f6cb51f64e7e1f662df12","impliedFormat":1},{"version":"da3d9c69fe4d916969f59b6553ac79b49e8dea8d35084733c396a3555d155f56","impliedFormat":1},{"version":"a589f9f052276a3fc00b75e62f73b93ea568fce3e935b86ed7052945f99d9dc2","impliedFormat":1},{"version":"17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","impliedFormat":1},{"version":"6e5c9272f6b3783be7bdddaf207cccdb8e033be3d14c5beacc03ae9d27d50929","impliedFormat":1},{"version":"9b4f7ff9681448c72abe38ea8eefd7ffe0c3aefe495137f02012a08801373f71","impliedFormat":1},{"version":"0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f","impliedFormat":1},{"version":"1fcf48177cd64f25c193ecc0bf33995d54ea527e29f7faf8cf666f54f3fa0375","impliedFormat":1},{"version":"6ab263df6465e2ed8f1d02922bae18bb5b407020767de021449a4c509859b22e","impliedFormat":1},{"version":"6805621d9f970cda51ab1516e051febe5f3ec0e45b371c7ad98ac2700d13d57c","impliedFormat":1},{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","impliedFormat":1},{"version":"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","impliedFormat":1}],"root":[[86,98]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":4,"module":99,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7,"useDefineForClassFields":true},"referencedMap":[[201,1],[199,2],[197,3],[198,2],[204,4],[200,1],[202,5],[203,1],[205,2],[207,6],[221,7],[206,3],[222,2],[232,8],[233,9],[234,2],[227,10],[230,11],[237,12],[238,2],[228,2],[239,2],[240,2],[241,2],[242,2],[235,13],[236,2],[231,2],[245,14],[243,14],[246,15],[244,16],[247,14],[248,2],[223,2],[249,2],[251,2],[252,17],[144,18],[145,18],[146,19],[104,20],[147,21],[148,22],[149,23],[99,2],[102,24],[100,2],[101,2],[150,25],[151,26],[152,27],[153,28],[154,29],[155,30],[156,30],[158,9],[157,31],[159,32],[160,33],[161,34],[143,35],[103,2],[162,36],[163,37],[164,38],[196,39],[165,40],[166,41],[167,42],[168,43],[169,44],[170,45],[171,46],[172,47],[173,48],[174,49],[175,49],[176,50],[177,2],[178,51],[180,52],[179,53],[181,54],[182,55],[183,56],[184,57],[185,58],[186,59],[187,60],[188,61],[189,62],[190,63],[191,64],[192,65],[193,66],[194,67],[195,68],[266,69],[253,70],[260,71],[256,72],[254,73],[257,74],[261,75],[262,71],[259,76],[258,77],[263,78],[264,79],[265,80],[255,81],[267,2],[273,82],[268,2],[275,83],[83,2],[225,2],[226,2],[276,84],[81,2],[84,85],[85,84],[301,86],[302,87],[277,88],[280,88],[299,86],[300,86],[290,86],[289,89],[287,86],[282,86],[295,86],[293,86],[297,86],[281,86],[294,86],[298,86],[283,86],[284,86],[296,86],[278,86],[285,86],[286,86],[288,86],[292,86],[303,90],[291,86],[279,86],[316,91],[315,2],[310,90],[312,92],[311,90],[304,90],[305,90],[307,90],[309,90],[313,92],[314,92],[306,92],[308,92],[224,93],[229,94],[208,95],[105,2],[211,96],[219,97],[209,98],[213,2],[210,99],[215,2],[220,100],[216,2],[212,101],[217,2],[214,102],[218,2],[82,2],[250,103],[274,2],[272,104],[269,105],[271,106],[270,2],[79,2],[80,2],[13,2],[14,2],[16,2],[15,2],[2,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[24,2],[3,2],[25,2],[26,2],[4,2],[27,2],[31,2],[28,2],[29,2],[30,2],[32,2],[33,2],[34,2],[5,2],[35,2],[36,2],[37,2],[38,2],[6,2],[42,2],[39,2],[40,2],[41,2],[43,2],[7,2],[44,2],[49,2],[50,2],[45,2],[46,2],[47,2],[48,2],[8,2],[54,2],[51,2],[52,2],[53,2],[55,2],[9,2],[56,2],[57,2],[58,2],[60,2],[59,2],[61,2],[62,2],[10,2],[63,2],[64,2],[65,2],[11,2],[66,2],[67,2],[68,2],[69,2],[70,2],[1,2],[71,2],[72,2],[12,2],[76,2],[74,2],[78,2],[73,2],[77,2],[75,2],[121,107],[131,108],[120,107],[141,109],[112,110],[111,111],[140,105],[134,112],[139,113],[114,114],[128,115],[113,116],[137,117],[109,118],[108,105],[138,119],[110,120],[115,121],[116,2],[119,121],[106,2],[142,122],[132,123],[123,124],[124,125],[126,126],[122,127],[125,128],[135,105],[117,129],[118,130],[127,131],[107,132],[130,123],[129,121],[133,2],[136,133],[86,134],[98,135],[90,136],[91,137],[92,136],[97,138],[88,139],[89,134],[93,136],[94,139],[95,134],[96,137],[87,134]],"latestChangedDtsFile":"./index.d.ts","version":"5.8.2"}
1
+ {"fileNames":["../../../../node_modules/typescript/lib/lib.es5.d.ts","../../../../node_modules/typescript/lib/lib.es2015.d.ts","../../../../node_modules/typescript/lib/lib.es2016.d.ts","../../../../node_modules/typescript/lib/lib.es2017.d.ts","../../../../node_modules/typescript/lib/lib.es2018.d.ts","../../../../node_modules/typescript/lib/lib.es2019.d.ts","../../../../node_modules/typescript/lib/lib.es2020.d.ts","../../../../node_modules/typescript/lib/lib.es2021.d.ts","../../../../node_modules/typescript/lib/lib.es2022.d.ts","../../../../node_modules/typescript/lib/lib.es2023.d.ts","../../../../node_modules/typescript/lib/lib.es2024.d.ts","../../../../node_modules/typescript/lib/lib.esnext.d.ts","../../../../node_modules/typescript/lib/lib.dom.d.ts","../../../../node_modules/typescript/lib/lib.dom.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../../../node_modules/typescript/lib/lib.es2016.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.arraybuffer.d.ts","../../../../node_modules/typescript/lib/lib.es2017.date.d.ts","../../../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../../../node_modules/typescript/lib/lib.es2019.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../../../node_modules/typescript/lib/lib.es2020.date.d.ts","../../../../node_modules/typescript/lib/lib.es2020.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2020.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2020.string.d.ts","../../../../node_modules/typescript/lib/lib.es2020.symbol.wellknown.d.ts","../../../../node_modules/typescript/lib/lib.es2020.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2020.number.d.ts","../../../../node_modules/typescript/lib/lib.es2021.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2021.string.d.ts","../../../../node_modules/typescript/lib/lib.es2021.weakref.d.ts","../../../../node_modules/typescript/lib/lib.es2021.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.array.d.ts","../../../../node_modules/typescript/lib/lib.es2022.error.d.ts","../../../../node_modules/typescript/lib/lib.es2022.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2022.object.d.ts","../../../../node_modules/typescript/lib/lib.es2022.string.d.ts","../../../../node_modules/typescript/lib/lib.es2022.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2023.array.d.ts","../../../../node_modules/typescript/lib/lib.es2023.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2023.intl.d.ts","../../../../node_modules/typescript/lib/lib.es2024.arraybuffer.d.ts","../../../../node_modules/typescript/lib/lib.es2024.collection.d.ts","../../../../node_modules/typescript/lib/lib.es2024.object.d.ts","../../../../node_modules/typescript/lib/lib.es2024.promise.d.ts","../../../../node_modules/typescript/lib/lib.es2024.regexp.d.ts","../../../../node_modules/typescript/lib/lib.es2024.sharedmemory.d.ts","../../../../node_modules/typescript/lib/lib.es2024.string.d.ts","../../../../node_modules/typescript/lib/lib.esnext.array.d.ts","../../../../node_modules/typescript/lib/lib.esnext.collection.d.ts","../../../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../../../node_modules/typescript/lib/lib.esnext.disposable.d.ts","../../../../node_modules/typescript/lib/lib.esnext.promise.d.ts","../../../../node_modules/typescript/lib/lib.esnext.decorators.d.ts","../../../../node_modules/typescript/lib/lib.esnext.iterator.d.ts","../../../../node_modules/typescript/lib/lib.esnext.float16.d.ts","../../../../node_modules/typescript/lib/lib.decorators.d.ts","../../../../node_modules/typescript/lib/lib.decorators.legacy.d.ts","../../../../node_modules/@types/react/global.d.ts","../../../../node_modules/csstype/index.d.ts","../../../../node_modules/@types/prop-types/index.d.ts","../../../../node_modules/@types/react/index.d.ts","../../../../node_modules/@types/react/jsx-runtime.d.ts","../../src/ProjectRole.ts","../../src/schema/value.ts","../../src/schema/input.ts","../../src/schema/json.ts","../../src/schema/acl.ts","../../src/schema/actions.ts","../../src/schema/actionsPayload.ts","../../src/schema/model.ts","../../src/schema/result.ts","../../src/schema/settings.ts","../../src/schema/validation.ts","../../src/schema/index.ts","../../src/index.ts","../../../../node_modules/@types/node/compatibility/disposable.d.ts","../../../../node_modules/@types/node/compatibility/indexable.d.ts","../../../../node_modules/@types/node/compatibility/iterators.d.ts","../../../../node_modules/@types/node/compatibility/index.d.ts","../../../../node_modules/@types/node/globals.typedarray.d.ts","../../../../node_modules/@types/node/buffer.buffer.d.ts","../../../../node_modules/buffer/index.d.ts","../../../../node_modules/undici-types/header.d.ts","../../../../node_modules/undici-types/readable.d.ts","../../../../node_modules/undici-types/file.d.ts","../../../../node_modules/undici-types/fetch.d.ts","../../../../node_modules/undici-types/formdata.d.ts","../../../../node_modules/undici-types/connector.d.ts","../../../../node_modules/undici-types/client.d.ts","../../../../node_modules/undici-types/errors.d.ts","../../../../node_modules/undici-types/dispatcher.d.ts","../../../../node_modules/undici-types/global-dispatcher.d.ts","../../../../node_modules/undici-types/global-origin.d.ts","../../../../node_modules/undici-types/pool-stats.d.ts","../../../../node_modules/undici-types/pool.d.ts","../../../../node_modules/undici-types/handlers.d.ts","../../../../node_modules/undici-types/balanced-pool.d.ts","../../../../node_modules/undici-types/agent.d.ts","../../../../node_modules/undici-types/mock-interceptor.d.ts","../../../../node_modules/undici-types/mock-agent.d.ts","../../../../node_modules/undici-types/mock-client.d.ts","../../../../node_modules/undici-types/mock-pool.d.ts","../../../../node_modules/undici-types/mock-errors.d.ts","../../../../node_modules/undici-types/proxy-agent.d.ts","../../../../node_modules/undici-types/env-http-proxy-agent.d.ts","../../../../node_modules/undici-types/retry-handler.d.ts","../../../../node_modules/undici-types/retry-agent.d.ts","../../../../node_modules/undici-types/api.d.ts","../../../../node_modules/undici-types/interceptors.d.ts","../../../../node_modules/undici-types/util.d.ts","../../../../node_modules/undici-types/cookies.d.ts","../../../../node_modules/undici-types/patch.d.ts","../../../../node_modules/undici-types/websocket.d.ts","../../../../node_modules/undici-types/eventsource.d.ts","../../../../node_modules/undici-types/filereader.d.ts","../../../../node_modules/undici-types/diagnostics-channel.d.ts","../../../../node_modules/undici-types/content-type.d.ts","../../../../node_modules/undici-types/cache.d.ts","../../../../node_modules/undici-types/index.d.ts","../../../../node_modules/@types/node/globals.d.ts","../../../../node_modules/@types/node/assert.d.ts","../../../../node_modules/@types/node/assert/strict.d.ts","../../../../node_modules/@types/node/async_hooks.d.ts","../../../../node_modules/@types/node/buffer.d.ts","../../../../node_modules/@types/node/child_process.d.ts","../../../../node_modules/@types/node/cluster.d.ts","../../../../node_modules/@types/node/console.d.ts","../../../../node_modules/@types/node/constants.d.ts","../../../../node_modules/@types/node/crypto.d.ts","../../../../node_modules/@types/node/dgram.d.ts","../../../../node_modules/@types/node/diagnostics_channel.d.ts","../../../../node_modules/@types/node/dns.d.ts","../../../../node_modules/@types/node/dns/promises.d.ts","../../../../node_modules/@types/node/domain.d.ts","../../../../node_modules/@types/node/dom-events.d.ts","../../../../node_modules/@types/node/events.d.ts","../../../../node_modules/@types/node/fs.d.ts","../../../../node_modules/@types/node/fs/promises.d.ts","../../../../node_modules/@types/node/http.d.ts","../../../../node_modules/@types/node/http2.d.ts","../../../../node_modules/@types/node/https.d.ts","../../../../node_modules/@types/node/inspector.d.ts","../../../../node_modules/@types/node/module.d.ts","../../../../node_modules/@types/node/net.d.ts","../../../../node_modules/@types/node/os.d.ts","../../../../node_modules/@types/node/path.d.ts","../../../../node_modules/@types/node/perf_hooks.d.ts","../../../../node_modules/@types/node/process.d.ts","../../../../node_modules/@types/node/punycode.d.ts","../../../../node_modules/@types/node/querystring.d.ts","../../../../node_modules/@types/node/readline.d.ts","../../../../node_modules/@types/node/readline/promises.d.ts","../../../../node_modules/@types/node/repl.d.ts","../../../../node_modules/@types/node/sea.d.ts","../../../../node_modules/@types/node/stream.d.ts","../../../../node_modules/@types/node/stream/promises.d.ts","../../../../node_modules/@types/node/stream/consumers.d.ts","../../../../node_modules/@types/node/stream/web.d.ts","../../../../node_modules/@types/node/string_decoder.d.ts","../../../../node_modules/@types/node/test.d.ts","../../../../node_modules/@types/node/timers.d.ts","../../../../node_modules/@types/node/timers/promises.d.ts","../../../../node_modules/@types/node/tls.d.ts","../../../../node_modules/@types/node/trace_events.d.ts","../../../../node_modules/@types/node/tty.d.ts","../../../../node_modules/@types/node/url.d.ts","../../../../node_modules/@types/node/util.d.ts","../../../../node_modules/@types/node/v8.d.ts","../../../../node_modules/@types/node/vm.d.ts","../../../../node_modules/@types/node/wasi.d.ts","../../../../node_modules/@types/node/worker_threads.d.ts","../../../../node_modules/@types/node/zlib.d.ts","../../../../node_modules/@types/node/index.d.ts","../../../../node_modules/@types/accepts/index.d.ts","../../../../node_modules/@types/aria-query/index.d.ts","../../../../node_modules/@babel/types/lib/index.d.ts","../../../../node_modules/@types/babel__generator/index.d.ts","../../../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../../../node_modules/@types/babel__template/index.d.ts","../../../../node_modules/@types/babel__traverse/index.d.ts","../../../../node_modules/@types/babel__core/index.d.ts","../../../../node_modules/@types/bcryptjs/index.d.ts","../../../../node_modules/@types/connect/index.d.ts","../../../../node_modules/@types/body-parser/index.d.ts","../../../../node_modules/@types/ws/index.d.ts","../../../../node_modules/bun-types/fetch.d.ts","../../../../node_modules/bun-types/globals.d.ts","../../../../node_modules/bun-types/bun.d.ts","../../../../node_modules/bun-types/overrides.d.ts","../../../../node_modules/bun-types/ffi.d.ts","../../../../node_modules/bun-types/test.d.ts","../../../../node_modules/bun-types/html-rewriter.d.ts","../../../../node_modules/bun-types/jsc.d.ts","../../../../node_modules/bun-types/sqlite.d.ts","../../../../node_modules/bun-types/wasm.d.ts","../../../../node_modules/bun-types/deprecated.d.ts","../../../../node_modules/bun-types/index.d.ts","../../../../node_modules/@types/bun/index.d.ts","../../../../node_modules/@types/content-disposition/index.d.ts","../../../../node_modules/@types/mime/index.d.ts","../../../../node_modules/@types/send/index.d.ts","../../../../node_modules/@types/qs/index.d.ts","../../../../node_modules/@types/range-parser/index.d.ts","../../../../node_modules/@types/express-serve-static-core/index.d.ts","../../../../node_modules/@types/http-errors/index.d.ts","../../../../node_modules/@types/serve-static/index.d.ts","../../../../node_modules/@types/express/index.d.ts","../../../../node_modules/@types/keygrip/index.d.ts","../../../../node_modules/@types/cookies/index.d.ts","../../../../node_modules/@types/degit/index.d.ts","../../../../node_modules/@types/estree/index.d.ts","../../../../node_modules/@types/jsonfile/index.d.ts","../../../../node_modules/@types/jsonfile/utils.d.ts","../../../../node_modules/@types/fs-extra/index.d.ts","../../../../node_modules/@types/http-assert/index.d.ts","../../../../node_modules/@types/is-hotkey/index.d.ts","../../../../node_modules/@types/js-levenshtein/index.d.ts","../../../../node_modules/@types/js-yaml/index.d.ts","../../../../node_modules/@types/json-schema/index.d.ts","../../../../node_modules/@types/koa-compose/index.d.ts","../../../../node_modules/@types/koa/index.d.ts","../../../../node_modules/@types/koa-bodyparser/index.d.ts","../../../../node_modules/@types/koa-compress/index.d.ts","../../../../node_modules/@types/koa__cors/index.d.ts","../../../../node_modules/@types/mime-types/index.d.ts","../../../../node_modules/@types/mustache/index.d.ts","../../../../node_modules/form-data/index.d.ts","../../../../node_modules/@types/node-fetch/externals.d.ts","../../../../node_modules/@types/node-fetch/index.d.ts","../../../../node_modules/@types/nodemailer/lib/dkim/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mailer/mail-message.d.ts","../../../../node_modules/@types/nodemailer/lib/xoauth2/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mailer/index.d.ts","../../../../node_modules/@types/nodemailer/lib/mime-node/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-connection/index.d.ts","../../../../node_modules/@types/nodemailer/lib/shared/index.d.ts","../../../../node_modules/@types/nodemailer/lib/json-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/sendmail-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/ses-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-pool/index.d.ts","../../../../node_modules/@types/nodemailer/lib/smtp-transport/index.d.ts","../../../../node_modules/@types/nodemailer/lib/stream-transport/index.d.ts","../../../../node_modules/@types/nodemailer/index.d.ts","../../../../node_modules/@types/npm-package-arg/index.d.ts","../../../../node_modules/@types/pg/node_modules/pg-types/index.d.ts","../../../../node_modules/pg-protocol/dist/messages.d.ts","../../../../node_modules/pg-protocol/dist/serializer.d.ts","../../../../node_modules/pg-protocol/dist/parser.d.ts","../../../../node_modules/pg-protocol/dist/index.d.ts","../../../../node_modules/@types/pg/index.d.ts","../../../../node_modules/kleur/kleur.d.ts","../../../../node_modules/@types/prompts/index.d.ts","../../../../node_modules/@types/react-dom/index.d.ts","../../../../node_modules/@types/semver/classes/semver.d.ts","../../../../node_modules/@types/semver/functions/parse.d.ts","../../../../node_modules/@types/semver/functions/valid.d.ts","../../../../node_modules/@types/semver/functions/clean.d.ts","../../../../node_modules/@types/semver/functions/inc.d.ts","../../../../node_modules/@types/semver/functions/diff.d.ts","../../../../node_modules/@types/semver/functions/major.d.ts","../../../../node_modules/@types/semver/functions/minor.d.ts","../../../../node_modules/@types/semver/functions/patch.d.ts","../../../../node_modules/@types/semver/functions/prerelease.d.ts","../../../../node_modules/@types/semver/functions/compare.d.ts","../../../../node_modules/@types/semver/functions/rcompare.d.ts","../../../../node_modules/@types/semver/functions/compare-loose.d.ts","../../../../node_modules/@types/semver/functions/compare-build.d.ts","../../../../node_modules/@types/semver/functions/sort.d.ts","../../../../node_modules/@types/semver/functions/rsort.d.ts","../../../../node_modules/@types/semver/functions/gt.d.ts","../../../../node_modules/@types/semver/functions/lt.d.ts","../../../../node_modules/@types/semver/functions/eq.d.ts","../../../../node_modules/@types/semver/functions/neq.d.ts","../../../../node_modules/@types/semver/functions/gte.d.ts","../../../../node_modules/@types/semver/functions/lte.d.ts","../../../../node_modules/@types/semver/functions/cmp.d.ts","../../../../node_modules/@types/semver/functions/coerce.d.ts","../../../../node_modules/@types/semver/classes/comparator.d.ts","../../../../node_modules/@types/semver/classes/range.d.ts","../../../../node_modules/@types/semver/functions/satisfies.d.ts","../../../../node_modules/@types/semver/ranges/max-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/min-satisfying.d.ts","../../../../node_modules/@types/semver/ranges/to-comparators.d.ts","../../../../node_modules/@types/semver/ranges/min-version.d.ts","../../../../node_modules/@types/semver/ranges/valid.d.ts","../../../../node_modules/@types/semver/ranges/outside.d.ts","../../../../node_modules/@types/semver/ranges/gtr.d.ts","../../../../node_modules/@types/semver/ranges/ltr.d.ts","../../../../node_modules/@types/semver/ranges/intersects.d.ts","../../../../node_modules/@types/semver/ranges/simplify.d.ts","../../../../node_modules/@types/semver/ranges/subset.d.ts","../../../../node_modules/@types/semver/internals/identifiers.d.ts","../../../../node_modules/@types/semver/index.d.ts"],"fileIdsList":[[104,147,199,211,219],[104,147,211,219],[104,147,162,196,211,219],[104,147,199,200,201,202,203,211,219],[104,147,199,201,211,219],[104,147,162,196,206,211,219],[104,147,211,219,220],[104,147,162,196,206,211,219,230,231],[104,147,159,211,219],[104,147,159,162,196,211,219,224,225,226],[104,147,207,211,219,225,227,229],[104,147,160,196,211,219,235,236],[104,147,160,189,196,211,219],[104,147,211,219,244],[104,147,195,196,211,219,244],[104,146,147,159,162,163,167,173,189,196,197,211,219,222,228,231,232,238,243],[104,147,162,189,196,211,219,250,251],[104,144,147,211,219],[104,146,147,211,219],[147,211,219],[104,147,152,181,211,219],[104,147,148,153,159,160,167,178,189,211,219],[104,147,148,149,159,167,211,219],[99,100,101,104,147,211,219],[104,147,150,190,211,219],[104,147,151,152,160,168,211,219],[104,147,152,178,186,211,219],[104,147,153,155,159,167,211,219],[104,146,147,154,211,219],[104,147,155,156,211,219],[104,147,157,159,211,219],[104,146,147,159,211,219],[104,147,159,160,161,178,189,211,219],[104,147,159,160,161,174,178,181,211,212,219],[104,142,147,194,211,219],[104,147,155,159,162,167,178,189,211,219],[104,147,159,160,162,163,167,178,186,189,211,219],[104,147,162,164,178,186,189,211,219],[102,103,104,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,211,219],[104,147,159,165,211,219],[104,147,166,189,194,211,219],[104,147,155,159,167,178,211,219],[104,147,168,211,219],[104,147,169,211,219],[104,146,147,170,211,219],[104,144,145,146,147,148,149,150,151,152,153,154,155,156,157,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,211,212,219],[104,147,172,211,219],[104,147,173,211,219],[104,147,159,174,175,211,219],[104,147,174,176,190,192,211,219],[104,147,159,178,179,181,211,219],[104,147,178,180,211,219],[104,147,178,179,211,219],[104,147,181,211,219],[104,147,182,211,219],[104,144,147,178,211,219],[104,147,159,184,185,211,219],[104,147,184,185,211,219],[104,147,152,167,178,186,211,212,219],[104,147,187,211,219],[104,147,167,188,211,219],[104,147,162,173,189,211,219],[104,147,152,190,211,219],[104,147,178,191,211,219],[104,147,166,192,211,219],[104,147,193,211,219],[104,147,152,159,161,170,178,189,192,194,211,219],[104,147,178,195,211,219],[104,147,196,211,219,254,256,260,261,262,263,264,265],[104,147,178,196,211,219],[104,147,159,196,211,219,254,256,257,259,266],[104,147,159,167,178,189,196,211,219,253,254,255,257,258,259,266],[104,147,178,196,211,219,256,257],[104,147,178,196,211,219,256],[104,147,196,211,219,254,256,257,259,266],[104,147,178,196,211,219,258],[104,147,159,167,178,186,196,211,212,219,255,257,259],[104,147,159,196,211,219,254,256,257,258,259,266],[104,147,159,178,196,211,219,254,255,256,257,258,259,266],[104,147,159,178,196,211,219,254,256,257,259,266],[104,147,162,178,196,211,219,259],[104,147,159,178,186,196,211,212,219,268,269,272,273],[104,147,178,196,211,219,274],[84,104,147,211,219],[81,82,83,104,147,211,219],[104,147,211,219,277,316],[104,147,211,219,277,301,316],[104,147,211,219,316],[104,147,211,219,277],[104,147,211,219,277,302,316],[104,147,211,219,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315],[104,147,211,219,302,316],[104,147,160,178,196,211,219,223],[104,147,162,196,211,219,224,228],[104,147,159,162,164,178,186,189,195,196,211,212,219],[104,147,152,186,190,212,219],[104,147,211],[104,142,147,211,219],[104,142,147,152,170,178,181,190,194,208,209,211,219],[104,147,196,208,209,210,211,212,213,214,215,216,217,218,219],[104,147,161,186,211,219],[104,147,211,214,219],[104,147,162,178,196,211,219],[104,147,196,211,219,269,270,271],[104,147,196,211,219],[104,147,178,196,211,219,269],[104,114,118,147,189,211,219],[104,114,147,178,189,211,219],[104,109,147,211,219],[104,111,114,147,186,189,211,212,219],[104,147,167,186,211,212,219],[104,109,147,196,211,219],[104,111,114,147,167,189,211,219],[104,106,107,110,113,147,159,178,189,211,219],[104,114,121,147,211,219],[104,106,112,147,211,219],[104,114,135,136,147,211,219],[104,110,114,147,181,189,196,211,219],[104,135,147,196,211,219],[104,108,109,147,196,211,219],[104,114,147,211,219],[104,108,109,110,111,112,113,114,115,116,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,136,137,138,139,140,141,147,211,219],[104,114,129,147,211,219],[104,114,121,122,147,211,219],[104,112,114,122,123,147,211,219],[104,113,147,211,219],[104,106,109,114,147,211,219],[104,114,118,122,123,147,211,219],[104,118,147,211,219],[104,112,114,117,147,189,211,219],[104,106,111,114,121,147,211,219],[104,147,178,211,219],[104,109,114,135,147,194,196,211,219],[85,104,147,211,219],[85,86,97,104,147,211,219],[85,88,89,104,147,211,219],[85,89,104,147,211,219],[85,87,88,89,90,91,92,93,94,95,96,104,147,211,219],[85,87,104,147,211,219]],"fileInfos":[{"version":"69684132aeb9b5642cbcd9e22dff7818ff0ee1aa831728af0ecf97d3364d5546","affectsGlobalScope":true,"impliedFormat":1},{"version":"45b7ab580deca34ae9729e97c13cfd999df04416a79116c3bfb483804f85ded4","impliedFormat":1},{"version":"3facaf05f0c5fc569c5649dd359892c98a85557e3e0c847964caeb67076f4d75","impliedFormat":1},{"version":"e44bb8bbac7f10ecc786703fe0a6a4b952189f908707980ba8f3c8975a760962","impliedFormat":1},{"version":"5e1c4c362065a6b95ff952c0eab010f04dcd2c3494e813b493ecfd4fcb9fc0d8","impliedFormat":1},{"version":"68d73b4a11549f9c0b7d352d10e91e5dca8faa3322bfb77b661839c42b1ddec7","impliedFormat":1},{"version":"5efce4fc3c29ea84e8928f97adec086e3dc876365e0982cc8479a07954a3efd4","impliedFormat":1},{"version":"feecb1be483ed332fad555aff858affd90a48ab19ba7272ee084704eb7167569","impliedFormat":1},{"version":"ee7bad0c15b58988daa84371e0b89d313b762ab83cb5b31b8a2d1162e8eb41c2","impliedFormat":1},{"version":"27bdc30a0e32783366a5abeda841bc22757c1797de8681bbe81fbc735eeb1c10","impliedFormat":1},{"version":"8fd575e12870e9944c7e1d62e1f5a73fcf23dd8d3a321f2a2c74c20d022283fe","impliedFormat":1},{"version":"8bf8b5e44e3c9c36f98e1007e8b7018c0f38d8adc07aecef42f5200114547c70","impliedFormat":1},{"version":"092c2bfe125ce69dbb1223c85d68d4d2397d7d8411867b5cc03cec902c233763","affectsGlobalScope":true,"impliedFormat":1},{"version":"07f073f19d67f74d732b1adea08e1dc66b1b58d77cb5b43931dee3d798a2fd53","affectsGlobalScope":true,"impliedFormat":1},{"version":"c57796738e7f83dbc4b8e65132f11a377649c00dd3eee333f672b8f0a6bea671","affectsGlobalScope":true,"impliedFormat":1},{"version":"dc2df20b1bcdc8c2d34af4926e2c3ab15ffe1160a63e58b7e09833f616efff44","affectsGlobalScope":true,"impliedFormat":1},{"version":"515d0b7b9bea2e31ea4ec968e9edd2c39d3eebf4a2d5cbd04e88639819ae3b71","affectsGlobalScope":true,"impliedFormat":1},{"version":"0559b1f683ac7505ae451f9a96ce4c3c92bdc71411651ca6ddb0e88baaaad6a3","affectsGlobalScope":true,"impliedFormat":1},{"version":"0dc1e7ceda9b8b9b455c3a2d67b0412feab00bd2f66656cd8850e8831b08b537","affectsGlobalScope":true,"impliedFormat":1},{"version":"ce691fb9e5c64efb9547083e4a34091bcbe5bdb41027e310ebba8f7d96a98671","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d697a2a929a5fcb38b7a65594020fcef05ec1630804a33748829c5ff53640d0","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ff2a353abf8a80ee399af572debb8faab2d33ad38c4b4474cff7f26e7653b8d","affectsGlobalScope":true,"impliedFormat":1},{"version":"936e80ad36a2ee83fc3caf008e7c4c5afe45b3cf3d5c24408f039c1d47bdc1df","affectsGlobalScope":true,"impliedFormat":1},{"version":"d15bea3d62cbbdb9797079416b8ac375ae99162a7fba5de2c6c505446486ac0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"68d18b664c9d32a7336a70235958b8997ebc1c3b8505f4f1ae2b7e7753b87618","affectsGlobalScope":true,"impliedFormat":1},{"version":"eb3d66c8327153d8fa7dd03f9c58d351107fe824c79e9b56b462935176cdf12a","affectsGlobalScope":true,"impliedFormat":1},{"version":"38f0219c9e23c915ef9790ab1d680440d95419ad264816fa15009a8851e79119","affectsGlobalScope":true,"impliedFormat":1},{"version":"69ab18c3b76cd9b1be3d188eaf8bba06112ebbe2f47f6c322b5105a6fbc45a2e","affectsGlobalScope":true,"impliedFormat":1},{"version":"fef8cfad2e2dc5f5b3d97a6f4f2e92848eb1b88e897bb7318cef0e2820bceaab","affectsGlobalScope":true,"impliedFormat":1},{"version":"2f11ff796926e0832f9ae148008138ad583bd181899ab7dd768a2666700b1893","affectsGlobalScope":true,"impliedFormat":1},{"version":"4de680d5bb41c17f7f68e0419412ca23c98d5749dcaaea1896172f06435891fc","affectsGlobalScope":true,"impliedFormat":1},{"version":"954296b30da6d508a104a3a0b5d96b76495c709785c1d11610908e63481ee667","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac9538681b19688c8eae65811b329d3744af679e0bdfa5d842d0e32524c73e1c","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a969edff4bd52585473d24995c5ef223f6652d6ef46193309b3921d65dd4376","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e9fbd7030c440b33d021da145d3232984c8bb7916f277e8ffd3dc2e3eae2bdb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811ec78f7fefcabbda4bfa93b3eb67d9ae166ef95f9bff989d964061cbf81a0c","affectsGlobalScope":true,"impliedFormat":1},{"version":"717937616a17072082152a2ef351cb51f98802fb4b2fdabd32399843875974ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"d7e7d9b7b50e5f22c915b525acc5a49a7a6584cf8f62d0569e557c5cfc4b2ac2","affectsGlobalScope":true,"impliedFormat":1},{"version":"71c37f4c9543f31dfced6c7840e068c5a5aacb7b89111a4364b1d5276b852557","affectsGlobalScope":true,"impliedFormat":1},{"version":"576711e016cf4f1804676043e6a0a5414252560eb57de9faceee34d79798c850","affectsGlobalScope":true,"impliedFormat":1},{"version":"89c1b1281ba7b8a96efc676b11b264de7a8374c5ea1e6617f11880a13fc56dc6","affectsGlobalScope":true,"impliedFormat":1},{"version":"74f7fa2d027d5b33eb0471c8e82a6c87216223181ec31247c357a3e8e2fddc5b","affectsGlobalScope":true,"impliedFormat":1},{"version":"d6d7ae4d1f1f3772e2a3cde568ed08991a8ae34a080ff1151af28b7f798e22ca","affectsGlobalScope":true,"impliedFormat":1},{"version":"063600664504610fe3e99b717a1223f8b1900087fab0b4cad1496a114744f8df","affectsGlobalScope":true,"impliedFormat":1},{"version":"934019d7e3c81950f9a8426d093458b65d5aff2c7c1511233c0fd5b941e608ab","affectsGlobalScope":true,"impliedFormat":1},{"version":"52ada8e0b6e0482b728070b7639ee42e83a9b1c22d205992756fe020fd9f4a47","affectsGlobalScope":true,"impliedFormat":1},{"version":"3bdefe1bfd4d6dee0e26f928f93ccc128f1b64d5d501ff4a8cf3c6371200e5e6","affectsGlobalScope":true,"impliedFormat":1},{"version":"59fb2c069260b4ba00b5643b907ef5d5341b167e7d1dbf58dfd895658bda2867","affectsGlobalScope":true,"impliedFormat":1},{"version":"639e512c0dfc3fad96a84caad71b8834d66329a1f28dc95e3946c9b58176c73a","affectsGlobalScope":true,"impliedFormat":1},{"version":"368af93f74c9c932edd84c58883e736c9e3d53cec1fe24c0b0ff451f529ceab1","affectsGlobalScope":true,"impliedFormat":1},{"version":"af3dd424cf267428f30ccfc376f47a2c0114546b55c44d8c0f1d57d841e28d74","affectsGlobalScope":true,"impliedFormat":1},{"version":"995c005ab91a498455ea8dfb63aa9f83fa2ea793c3d8aa344be4a1678d06d399","affectsGlobalScope":true,"impliedFormat":1},{"version":"959d36cddf5e7d572a65045b876f2956c973a586da58e5d26cde519184fd9b8a","affectsGlobalScope":true,"impliedFormat":1},{"version":"965f36eae237dd74e6cca203a43e9ca801ce38824ead814728a2807b1910117d","affectsGlobalScope":true,"impliedFormat":1},{"version":"3925a6c820dcb1a06506c90b1577db1fdbf7705d65b62b99dce4be75c637e26b","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a3d63ef2b853447ec4f749d3f368ce642264246e02911fcb1590d8c161b8005","affectsGlobalScope":true,"impliedFormat":1},{"version":"b5ce7a470bc3628408429040c4e3a53a27755022a32fd05e2cb694e7015386c7","affectsGlobalScope":true,"impliedFormat":1},{"version":"8444af78980e3b20b49324f4a16ba35024fef3ee069a0eb67616ea6ca821c47a","affectsGlobalScope":true,"impliedFormat":1},{"version":"3287d9d085fbd618c3971944b65b4be57859f5415f495b33a6adc994edd2f004","affectsGlobalScope":true,"impliedFormat":1},{"version":"b4b67b1a91182421f5df999988c690f14d813b9850b40acd06ed44691f6727ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"df83c2a6c73228b625b0beb6669c7ee2a09c914637e2d35170723ad49c0f5cd4","affectsGlobalScope":true,"impliedFormat":1},{"version":"436aaf437562f276ec2ddbee2f2cdedac7664c1e4c1d2c36839ddd582eeb3d0a","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e3c06ea092138bf9fa5e874a1fdbc9d54805d074bee1de31b99a11e2fec239d","affectsGlobalScope":true,"impliedFormat":1},{"version":"87dc0f382502f5bbce5129bdc0aea21e19a3abbc19259e0b43ae038a9fc4e326","affectsGlobalScope":true,"impliedFormat":1},{"version":"b1cb28af0c891c8c96b2d6b7be76bd394fddcfdb4709a20ba05a7c1605eea0f9","affectsGlobalScope":true,"impliedFormat":1},{"version":"2fef54945a13095fdb9b84f705f2b5994597640c46afeb2ce78352fab4cb3279","affectsGlobalScope":true,"impliedFormat":1},{"version":"ac77cb3e8c6d3565793eb90a8373ee8033146315a3dbead3bde8db5eaf5e5ec6","affectsGlobalScope":true,"impliedFormat":1},{"version":"56e4ed5aab5f5920980066a9409bfaf53e6d21d3f8d020c17e4de584d29600ad","affectsGlobalScope":true,"impliedFormat":1},{"version":"4ece9f17b3866cc077099c73f4983bddbcb1dc7ddb943227f1ec070f529dedd1","affectsGlobalScope":true,"impliedFormat":1},{"version":"0a6282c8827e4b9a95f4bf4f5c205673ada31b982f50572d27103df8ceb8013c","affectsGlobalScope":true,"impliedFormat":1},{"version":"1c9319a09485199c1f7b0498f2988d6d2249793ef67edda49d1e584746be9032","affectsGlobalScope":true,"impliedFormat":1},{"version":"e3a2a0cee0f03ffdde24d89660eba2685bfbdeae955a6c67e8c4c9fd28928eeb","affectsGlobalScope":true,"impliedFormat":1},{"version":"811c71eee4aa0ac5f7adf713323a5c41b0cf6c4e17367a34fbce379e12bbf0a4","affectsGlobalScope":true,"impliedFormat":1},{"version":"51ad4c928303041605b4d7ae32e0c1ee387d43a24cd6f1ebf4a2699e1076d4fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"60037901da1a425516449b9a20073aa03386cce92f7a1fd902d7602be3a7c2e9","affectsGlobalScope":true,"impliedFormat":1},{"version":"d4b1d2c51d058fc21ec2629fff7a76249dec2e36e12960ea056e3ef89174080f","affectsGlobalScope":true,"impliedFormat":1},{"version":"22adec94ef7047a6c9d1af3cb96be87a335908bf9ef386ae9fd50eeb37f44c47","affectsGlobalScope":true,"impliedFormat":1},{"version":"4245fee526a7d1754529d19227ecbf3be066ff79ebb6a380d78e41648f2f224d","affectsGlobalScope":true,"impliedFormat":1},{"version":"8e7f8264d0fb4c5339605a15daadb037bf238c10b654bb3eee14208f860a32ea","affectsGlobalScope":true,"impliedFormat":1},{"version":"782dec38049b92d4e85c1585fbea5474a219c6984a35b004963b00beb1aab538","affectsGlobalScope":true,"impliedFormat":1},{"version":"36a2e4c9a67439aca5f91bb304611d5ae6e20d420503e96c230cf8fcdc948d94","affectsGlobalScope":true,"impliedFormat":1},{"version":"8a8eb4ebffd85e589a1cc7c178e291626c359543403d58c9cd22b81fab5b1fb9","impliedFormat":1},{"version":"65ff5a0aefd7817a03c1ad04fee85c9cdd3ec415cc3c9efec85d8008d4d5e4ee","impliedFormat":1},{"version":"aea201321e7df78b294c9c39c61503ed81fb73b1b1703240013b557dfa25b016","affectsGlobalScope":true,"impliedFormat":1},{"version":"42c169fb8c2d42f4f668c624a9a11e719d5d07dacbebb63cbcf7ef365b0a75b3","impliedFormat":1},{"version":"b0d74cce9e676c2b6c48208ef6c1fabad459205f23e4dde2338c7829dff709ba","signature":"466df547af9cf3861658b08baf3ecbd41c0eaad2101378fadfa54ab24db103e6"},{"version":"72c7269d60a743e28df9b1e5c3afbe833f95fa7821ee24b1a3cd090898ff368d","signature":"67070445e9cb6a031953839e5f673d751255409d0ecd2ce8a8bd8f09bb4a07f2"},{"version":"77f540a9fcb61ade39b8b027e650afdf88bb4c6f9a3e6cc4cc1bdce8418c748e","signature":"91789a99e4f308f5f34ac7dd87445c81ff6ecd2d1255c991b3961a91ae7adb9d"},{"version":"8400bff5f2de1f00f071ac265cf7fab8d6f3aeead7550e8973982c8822667b97","signature":"b1296831e111197bd9ebd73f0d15ad0fe2e11fcc51a6302edb23ffd93794db36"},{"version":"3f9f0fe128ed0883cb114d20a97b2f5ae7f4abe41db41d96f35ba472cea701fc","signature":"91cfb34ae55944c482e431423108c36d8c75af476c710149ce898d3ff9f2d9ad"},{"version":"fb65bb7426501402feebb61da84888967f80b47136af89809077412c244356ac","signature":"ec0b1ad8de385d526b4e16c7ab8da4b84c1fb15a680d4c82b0e0b5f70e9f80c5"},{"version":"d2e93f537b86ee2f10c76708520a173188e8fb081045da7eb60e28de88b384ca","signature":"462c0b72a4911d6356ebbfed5dedd9682edf2bd60bcf6ea025539f1cd8c64bf4"},{"version":"fca6a68f840397c71773cf1e94895e0f65877f447e1942108d057250467460ef","signature":"85fa570b595ee21d9c853453fd2d5a529012b2a231b4ded46a4355ca09ac9035"},{"version":"73f344593733ca1af0ba8ffc6295b418bf5b4ad1a373a1480a884b7b1e283c9c","signature":"f42116e2e8ad600dc90bdf8ceade9dcf593c35812d8aaba9c03a3f1dbb87330e"},{"version":"e69edd6b0cdca3f611af48c8aac743fd929c35cbb026c7630cddccdbdf5e56a4","signature":"54410f2253354330ff63801044c8d826de679724d9b60d5d3053d3af6aee993f"},{"version":"c88218c1acee8645370add51cceb22b3b8e9af4e069fade9f606ddf8a13f977e","signature":"dff2fee737ebe5174f549c9f28e114c0cabac4b5fe4e364654465ba528979ba4"},{"version":"6dd63c3f324b584c843826db188b8dec1d55b4940817f7abac84ceda4b17e977","signature":"ad1f130d5fb49665e218d5366db67ead55593335a2c02733ae5f8466a99def53"},{"version":"c2e2372d5768b6d90e82087d5ef0feebbb2449c153b80c45c2e323e0d2b2f22a","signature":"92404f0f42ffd8d939cf6fb1a911235e931981f94dcab0e85f9ae5faf876ea3c"},{"version":"70521b6ab0dcba37539e5303104f29b721bfb2940b2776da4cc818c07e1fefc1","affectsGlobalScope":true,"impliedFormat":1},{"version":"ab41ef1f2cdafb8df48be20cd969d875602483859dc194e9c97c8a576892c052","affectsGlobalScope":true,"impliedFormat":1},{"version":"d153a11543fd884b596587ccd97aebbeed950b26933ee000f94009f1ab142848","affectsGlobalScope":true,"impliedFormat":1},{"version":"21d819c173c0cf7cc3ce57c3276e77fd9a8a01d35a06ad87158781515c9a438a","impliedFormat":1},{"version":"a79e62f1e20467e11a904399b8b18b18c0c6eea6b50c1168bf215356d5bebfaf","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b80c6175da9de59bace50a72c2d68490d4ab5b07016ff5367bc7ba33cf2f219","affectsGlobalScope":true,"impliedFormat":1},{"version":"4967529644e391115ca5592184d4b63980569adf60ee685f968fd59ab1557188","impliedFormat":1},{"version":"5929864ce17fba74232584d90cb721a89b7ad277220627cc97054ba15a98ea8f","impliedFormat":1},{"version":"24bd580b5743dc56402c440dc7f9a4f5d592ad7a419f25414d37a7bfe11e342b","impliedFormat":1},{"version":"25c8056edf4314820382a5fdb4bb7816999acdcb929c8f75e3f39473b87e85bc","impliedFormat":1},{"version":"c464d66b20788266e5353b48dc4aa6bc0dc4a707276df1e7152ab0c9ae21fad8","impliedFormat":1},{"version":"78d0d27c130d35c60b5e5566c9f1e5be77caf39804636bc1a40133919a949f21","impliedFormat":1},{"version":"c6fd2c5a395f2432786c9cb8deb870b9b0e8ff7e22c029954fabdd692bff6195","impliedFormat":1},{"version":"1d6e127068ea8e104a912e42fc0a110e2aa5a66a356a917a163e8cf9a65e4a75","impliedFormat":1},{"version":"5ded6427296cdf3b9542de4471d2aa8d3983671d4cac0f4bf9c637208d1ced43","impliedFormat":1},{"version":"6bdc71028db658243775263e93a7db2fd2abfce3ca569c3cca5aee6ed5eb186d","impliedFormat":1},{"version":"cadc8aced301244057c4e7e73fbcae534b0f5b12a37b150d80e5a45aa4bebcbd","impliedFormat":1},{"version":"385aab901643aa54e1c36f5ef3107913b10d1b5bb8cbcd933d4263b80a0d7f20","impliedFormat":1},{"version":"9670d44354bab9d9982eca21945686b5c24a3f893db73c0dae0fd74217a4c219","impliedFormat":1},{"version":"0b8a9268adaf4da35e7fa830c8981cfa22adbbe5b3f6f5ab91f6658899e657a7","impliedFormat":1},{"version":"11396ed8a44c02ab9798b7dca436009f866e8dae3c9c25e8c1fbc396880bf1bb","impliedFormat":1},{"version":"ba7bc87d01492633cb5a0e5da8a4a42a1c86270e7b3d2dea5d156828a84e4882","impliedFormat":1},{"version":"4893a895ea92c85345017a04ed427cbd6a1710453338df26881a6019432febdd","impliedFormat":1},{"version":"c21dc52e277bcfc75fac0436ccb75c204f9e1b3fa5e12729670910639f27343e","impliedFormat":1},{"version":"13f6f39e12b1518c6650bbb220c8985999020fe0f21d818e28f512b7771d00f9","impliedFormat":1},{"version":"9b5369969f6e7175740bf51223112ff209f94ba43ecd3bb09eefff9fd675624a","impliedFormat":1},{"version":"4fe9e626e7164748e8769bbf74b538e09607f07ed17c2f20af8d680ee49fc1da","impliedFormat":1},{"version":"24515859bc0b836719105bb6cc3d68255042a9f02a6022b3187948b204946bd2","impliedFormat":1},{"version":"ea0148f897b45a76544ae179784c95af1bd6721b8610af9ffa467a518a086a43","impliedFormat":1},{"version":"24c6a117721e606c9984335f71711877293a9651e44f59f3d21c1ea0856f9cc9","impliedFormat":1},{"version":"dd3273ead9fbde62a72949c97dbec2247ea08e0c6952e701a483d74ef92d6a17","impliedFormat":1},{"version":"405822be75ad3e4d162e07439bac80c6bcc6dbae1929e179cf467ec0b9ee4e2e","impliedFormat":1},{"version":"0db18c6e78ea846316c012478888f33c11ffadab9efd1cc8bcc12daded7a60b6","impliedFormat":1},{"version":"4d2b0eb911816f66abe4970898f97a2cfc902bcd743cbfa5017fad79f7ef90d8","impliedFormat":1},{"version":"bd0532fd6556073727d28da0edfd1736417a3f9f394877b6d5ef6ad88fba1d1a","impliedFormat":1},{"version":"89167d696a849fce5ca508032aabfe901c0868f833a8625d5a9c6e861ef935d2","impliedFormat":1},{"version":"e53a3c2a9f624d90f24bf4588aacd223e7bec1b9d0d479b68d2f4a9e6011147f","impliedFormat":1},{"version":"24b8685c62562f5d98615c5a0c1d05f297cf5065f15246edfe99e81ec4c0e011","impliedFormat":1},{"version":"93507c745e8f29090efb99399c3f77bec07db17acd75634249dc92f961573387","impliedFormat":1},{"version":"339dc5265ee5ed92e536a93a04c4ebbc2128f45eeec6ed29f379e0085283542c","impliedFormat":1},{"version":"4732aec92b20fb28c5fe9ad99521fb59974289ed1e45aecb282616202184064f","impliedFormat":1},{"version":"2e85db9e6fd73cfa3d7f28e0ab6b55417ea18931423bd47b409a96e4a169e8e6","impliedFormat":1},{"version":"c46e079fe54c76f95c67fb89081b3e399da2c7d109e7dca8e4b58d83e332e605","impliedFormat":1},{"version":"bf67d53d168abc1298888693338cb82854bdb2e69ef83f8a0092093c2d562107","impliedFormat":1},{"version":"08faa97886e71757779428dd4c69a545c32c85fd629d1116d42710b32c6378bc","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b042aa5d277ad6963e2837179fd2f8fbb01968ac67115b0833c0244e93d1d50","impliedFormat":1},{"version":"7394959e5a741b185456e1ef5d64599c36c60a323207450991e7a42e08911419","impliedFormat":1},{"version":"3d77c73be94570813f8cadd1f05ebc3dc5e2e4fdefe4d340ca20cd018724ee36","impliedFormat":1},{"version":"23cfd70b42094e54cc3c5dab996d81b97e2b6f38ccb24ead85454b8ddfe2fc4f","affectsGlobalScope":true,"impliedFormat":1},{"version":"f3e58c4c18a031cbb17abec7a4ad0bd5ae9fc70c1f4ba1e7fb921ad87c504aca","impliedFormat":1},{"version":"a3e8bafb2af8e850c644f4be7f5156cf7d23b7bfdc3b786bd4d10ed40329649c","impliedFormat":1},{"version":"35ec8b6760fd7138bbf5809b84551e31028fb2ba7b6dc91d95d098bf212ca8b4","affectsGlobalScope":true,"impliedFormat":1},{"version":"a40826e8476694e90da94aa008283a7de50d1dafd37beada623863f1901cb7fb","impliedFormat":1},{"version":"f77d9188e41291acf14f476e931972460a303e1952538f9546e7b370cb8d0d20","affectsGlobalScope":true,"impliedFormat":1},{"version":"8d04e3640dd9eb67f7f1e5bd3d0bf96c784666f7aefc8ac1537af6f2d38d4c29","impliedFormat":1},{"version":"3c884d9d9ec454bdf0d5a0b8465bf8297d2caa4d853851d92cc417ac6f30b969","impliedFormat":1},{"version":"5a369483ac4cfbdf0331c248deeb36140e6907db5e1daed241546b4a2055f82c","impliedFormat":1},{"version":"e8f5b5cc36615c17d330eaf8eebbc0d6bdd942c25991f96ef122f246f4ff722f","impliedFormat":1},{"version":"f0bd7e6d931657b59605c44112eaf8b980ba7f957a5051ed21cb93d978cf2f45","impliedFormat":1},{"version":"ee1ee365d88c4c6c0c0a5a5701d66ebc27ccd0bcfcfaa482c6e2e7fe7b98edf7","affectsGlobalScope":true,"impliedFormat":1},{"version":"0ada07543808f3b967624645a8e1ccd446f8b01ade47842acf1328aec899fed0","affectsGlobalScope":true,"impliedFormat":1},{"version":"c4a806152acbef81593f96cae6f2b04784d776457d97adbe2694478b243fcf03","impliedFormat":1},{"version":"71adf5dbc59568663d252a46179e71e4d544c053978bfc526d11543a3f716f42","impliedFormat":1},{"version":"c60db41f7bee80fb80c0b12819f5e465c8c8b465578da43e36d04f4a4646f57d","impliedFormat":1},{"version":"93bd413918fa921c8729cef45302b24d8b6c7855d72d5bf82d3972595ae8dcbf","impliedFormat":1},{"version":"4ff41188773cbf465807dd2f7059c7494cbee5115608efc297383832a1150c43","impliedFormat":1},{"version":"dccdf1677e531e33f8ac961a68bc537418c9a414797c1ea7e91307501cdc3f5e","impliedFormat":1},{"version":"e184c4b8918ef56c8c9e68bd79f3f3780e2d0d75bf2b8a41da1509a40c2deb46","affectsGlobalScope":true,"impliedFormat":1},{"version":"d206b4baf4ddcc15d9d69a9a2f4999a72a2c6adeaa8af20fa7a9960816287555","impliedFormat":1},{"version":"93f437e1398a4f06a984f441f7fa7a9f0535c04399619b5c22e0b87bdee182cb","impliedFormat":1},{"version":"afbe24ab0d74694372baa632ecb28bb375be53f3be53f9b07ecd7fc994907de5","impliedFormat":1},{"version":"70731d10d5311bd4cf710ef7f6539b62660f4b0bfdbb3f9fbe1d25fe6366a7fa","affectsGlobalScope":true,"impliedFormat":1},{"version":"6b19db3600a17af69d4f33d08cc7076a7d19fb65bb36e442cac58929ec7c9482","affectsGlobalScope":true,"impliedFormat":1},{"version":"9e043a1bc8fbf2a255bccf9bf27e0f1caf916c3b0518ea34aa72357c0afd42ec","impliedFormat":1},{"version":"137c2894e8f3e9672d401cc0a305dc7b1db7c69511cf6d3970fb53302f9eae09","impliedFormat":1},{"version":"3bc2f1e2c95c04048212c569ed38e338873f6a8593930cf5a7ef24ffb38fc3b6","impliedFormat":1},{"version":"8145e07aad6da5f23f2fcd8c8e4c5c13fb26ee986a79d03b0829b8fce152d8b2","impliedFormat":1},{"version":"f9d9d753d430ed050dc1bf2667a1bab711ccbb1c1507183d794cc195a5b085cc","impliedFormat":1},{"version":"9eece5e586312581ccd106d4853e861aaaa1a39f8e3ea672b8c3847eedd12f6e","impliedFormat":1},{"version":"ba1f814c22fd970255ddd60d61fb7e00c28271c933ab5d5cc19cd3ca66b8f57c","impliedFormat":1},{"version":"37ba7b45141a45ce6e80e66f2a96c8a5ab1bcef0fc2d0f56bb58df96ec67e972","impliedFormat":1},{"version":"93452d394fdd1dc551ec62f5042366f011a00d342d36d50793b3529bfc9bd633","impliedFormat":1},{"version":"295f068af94245ee9d780555351bef98adfd58f8baf0b9dadbc31a489b881f8b","affectsGlobalScope":true,"impliedFormat":1},{"version":"1851a3b4db78664f83901bb9cac9e45e03a37bb5933cc5bf37e10bb7e91ab4eb","impliedFormat":1},{"version":"09d479208911ac3ac6a7c2fe86217fc1abe6c4f04e2d52e4890e500699eeab32","affectsGlobalScope":true,"impliedFormat":1},{"version":"27d8987fd22d92efe6560cf0ce11767bf089903ffe26047727debfd1f3bf438b","affectsGlobalScope":true,"impliedFormat":1},{"version":"578d8bb6dcb2a1c03c4c3f8eb71abc9677e1a5c788b7f24848e3138ce17f3400","impliedFormat":1},{"version":"4f029899f9bae07e225c43aef893590541b2b43267383bf5e32e3a884d219ed5","impliedFormat":1},{"version":"ae56f65caf3be91108707bd8dfbccc2a57a91feb5daabf7165a06a945545ed26","impliedFormat":1},{"version":"a136d5de521da20f31631a0a96bf712370779d1c05b7015d7019a9b2a0446ca9","impliedFormat":1},{"version":"5b566927cad2ed2139655d55d690ffa87df378b956e7fe1c96024c4d9f75c4cf","affectsGlobalScope":true,"impliedFormat":1},{"version":"bce947017cb7a2deebcc4f5ba04cead891ce6ad1602a4438ae45ed9aa1f39104","affectsGlobalScope":true,"impliedFormat":1},{"version":"d3dffd70e6375b872f0b4e152de4ae682d762c61a24881ecc5eb9f04c5caf76f","impliedFormat":1},{"version":"e2c72c065a36bc9ab2a00ac6a6f51e71501619a72c0609defd304d46610487a4","impliedFormat":1},{"version":"d91a7d8b5655c42986f1bdfe2105c4408f472831c8f20cf11a8c3345b6b56c8c","impliedFormat":1},{"version":"616075a6ac578cf5a013ee12964188b4412823796ce0b202c6f1d2e4ca8480d7","affectsGlobalScope":true,"impliedFormat":1},{"version":"e8a979b8af001c9fc2e774e7809d233c8ca955a28756f52ee5dee88ccb0611d2","impliedFormat":1},{"version":"cac793cc47c29e26e4ac3601dcb00b4435ebed26203485790e44f2ad8b6ad847","impliedFormat":1},{"version":"87f287f296f3ff07dbd14ea7853c2400d995dccd7bd83206196d6c0974774e96","impliedFormat":1},{"version":"ae77d81a5541a8abb938a0efedf9ac4bea36fb3a24cc28cfa11c598863aba571","impliedFormat":1},{"version":"03f1d83d61696326ea29c8a1c15cbaccf61e92598d53f2ccae06078531f42448","impliedFormat":1},{"version":"2c8e55457aaf4902941dfdba4061935922e8ee6e120539c9801cd7b400fae050","impliedFormat":1},{"version":"3a9313fe5ace558b8b18e85f931da10b259e738775f411c061e5f15787b138eb","impliedFormat":1},{"version":"670a76db379b27c8ff42f1ba927828a22862e2ab0b0908e38b671f0e912cc5ed","impliedFormat":1},{"version":"9e0cf651e8e2c5b9bebbabdff2f7c6f8cedd91b1d9afcc0a854cdff053a88f1b","impliedFormat":1},{"version":"069bebfee29864e3955378107e243508b163e77ab10de6a5ee03ae06939f0bb9","impliedFormat":1},{"version":"a3d3f704c5339a36da3ca8c62b29072f87e86c783b8452d235992142ec71aa2d","impliedFormat":1},{"version":"104c67f0da1bdf0d94865419247e20eded83ce7f9911a1aa75fc675c077ca66e","impliedFormat":1},{"version":"cc0d0b339f31ce0ab3b7a5b714d8e578ce698f1e13d7f8c60bfb766baeb1d35c","impliedFormat":1},{"version":"eb15edfcef078300657e1d5d678e1944b3518c2dd8f26792fdba2fe29f73d32b","impliedFormat":1},{"version":"720f5d028d71bc22ed4a5311a6ea884329db475d994f805ea86470111eccc1a1","impliedFormat":1},{"version":"8c4df6bbce66d5c39a40a642ce426ec1b2daf16e5be2e4c88751dab596745ab6","affectsGlobalScope":true,"impliedFormat":1},{"version":"fd5e0d9b6792c4789055b2e44381f89d1328c7afa9e03755571f683b0732ed2b","affectsGlobalScope":true,"impliedFormat":1},{"version":"3de9f829f53966384023e023185c0515d18b747f0001924a1919751e6ac5308d","affectsGlobalScope":true,"impliedFormat":1},{"version":"75e5eba775a6a65a949380d689933849e190fef8a12867eb6fe884141af09d30","impliedFormat":1},{"version":"8a5b54c46c65f2f4f7d594dfd9a9bc4fb719d7a2a65d4f582aa7240ca5145a03","affectsGlobalScope":true,"impliedFormat":1},{"version":"2b8af6e8cf44313406800b820bffc49e83a8ec4598772db25954d03a86c96818","affectsGlobalScope":true,"impliedFormat":1},{"version":"95d4d18508a76d6a7036029d974d27e5ffddd742650f967dca22cf035518ca28","impliedFormat":1},{"version":"c3b50cb839f257e949470080b12c737ce0e585d198690dffc8cc4dd91821b083","impliedFormat":1},{"version":"d2e66d9477edaa0e4dea79d699f0855a5a7419915da740e28fbfdb322c6a60a6","affectsGlobalScope":true,"impliedFormat":1},{"version":"ca69bbf884a17e7a485bb4fcd129386874050916b275e414af14b2170b4ea728","affectsGlobalScope":true,"impliedFormat":1},{"version":"b52c121cd491cfdbea04c3a77d23e193c23cb411e7598a04ba13a4592842fe2f","impliedFormat":1},{"version":"37be812b06e518320ba82e2aff3ac2ca37370a9df917db708f081b9043fa3315","impliedFormat":1},{"version":"0504070e7eaba788f5d0d5926782ed177f1db01cee28363c488fae94950c0bbc","impliedFormat":1},{"version":"d3f2d715f57df3f04bf7b16dde01dec10366f64fce44503c92b8f78f614c1769","impliedFormat":1},{"version":"b78cd10245a90e27e62d0558564f5d9a16576294eee724a59ae21b91f9269e4a","impliedFormat":1},{"version":"f0c3a51c7314523b169d4756b2df6e3e59a3f0d9bc4848248362edaf75b5d315","impliedFormat":1},{"version":"2f5747b1508ccf83fad0c251ba1e5da2f5a30b78b09ffa1cfaf633045160afed","impliedFormat":1},{"version":"a899915e1fc41c6130d906ae77067b63ff2d678bb842b4c7a0741dca7f55c218","affectsGlobalScope":true,"impliedFormat":1},{"version":"b71c603a539078a5e3a039b20f2b0a0d1708967530cf97dec8850a9ca45baa2b","impliedFormat":1},{"version":"0e13570a7e86c6d83dd92e81758a930f63747483e2cd34ef36fcdb47d1f9726a","impliedFormat":1},{"version":"5c45abf1e13e4463eacfd5dedda06855da8748a6a6cb3334f582b52e219acc04","impliedFormat":1},{"version":"6847334317c1bc1e6fc4b679b0095bbd2b6ee3b85fe3f26fc26bac462f68ef5e","impliedFormat":1},{"version":"2224f3072e3cc07906eeed5c71746779511fba2dd224addc5489bcdb489bdee5","impliedFormat":1},{"version":"571b035692196df4a26d3dae3c0319bc640d5f07bab3011fb72a8743499dd2f8","impliedFormat":1},{"version":"785b9d575b49124ce01b46f5b9402157c7611e6532effa562ac6aebec0074dfc","impliedFormat":1},{"version":"211440ce81e87b3491cdf07155881344b0a61566df6e749acff0be7e8b9d1a07","impliedFormat":1},{"version":"5d9a0b6e6be8dbb259f64037bce02f34692e8c1519f5cd5d467d7fa4490dced4","impliedFormat":1},{"version":"880da0e0f3ebca42f9bd1bc2d3e5e7df33f2619d85f18ee0ed4bd16d1800bc32","impliedFormat":1},{"version":"fbf802b3a028f5eb22ad406ee5fc7c368f0acfd3a2a6d0f805120766f5717ec8","impliedFormat":1},{"version":"0112a7f3c11fc4792e70f5d0d5c9f80ee6a1c5c548723714433da6a03307e87b","impliedFormat":1},{"version":"a8d630427635fa316e57fa4949132acde9cf23aa067220bffea30612497824cc","impliedFormat":1},{"version":"7a1dd1e9c8bf5e23129495b10718b280340c7500570e0cfe5cffcdee51e13e48","impliedFormat":1},{"version":"f3d8c757e148ad968f0d98697987db363070abada5f503da3c06aefd9d4248c1","impliedFormat":1},{"version":"7e8d3f08435ad2cefe67f58182618bfc9a0a29db08cf2544b94cbcae754a9bd9","impliedFormat":1},{"version":"8cf9b9045a614f883b623c2f1a631ec6a93321747e933330b2eec0ee47164a34","impliedFormat":1},{"version":"cee62e64fc4bdfb3798ab8e21486fadd2027ce4128349989acc63905366f91c5","impliedFormat":1},{"version":"f4b436d9b250c7e7087edef00fc0ecf9a62cbbbfe0f1d1c4f3888f1355c17eeb","impliedFormat":1},{"version":"643976e0b3d579304eafdb817bffc5b33bd8f99636ba9f5ee7a8d33288c1ae94","impliedFormat":1},{"version":"169cc96316cacf8b489aaab4ac6bcef7b33e8779a8902bce57c737b4aa372d16","impliedFormat":1},{"version":"b58c81d4cc365d3986aee6c2a86592edc50f141b796899079196ffb103047390","impliedFormat":1},{"version":"736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","impliedFormat":1},{"version":"4340936f4e937c452ae783514e7c7bbb7fc06d0c97993ff4865370d0962bb9cf","impliedFormat":1},{"version":"b70c7ea83a7d0de17a791d9b5283f664033a96362c42cc4d2b2e0bdaa65ef7d1","impliedFormat":1},{"version":"6825eb4d1c8beb77e9ed6681c830326a15ebf52b171f83ffbca1b1574c90a3b0","impliedFormat":1},{"version":"1741975791f9be7f803a826457273094096e8bba7a50f8fa960d5ed2328cdbcc","impliedFormat":1},{"version":"6ec0d1c15d14d63d08ccb10d09d839bf8a724f6b4b9ed134a3ab5042c54a7721","impliedFormat":1},{"version":"043a3b03dcb40d6b87d36ad26378c80086905232ee5602f067eaaed21baa42ef","impliedFormat":1},{"version":"b61028c5e29a0691e91a03fa2c4501ea7ed27f8fa536286dc2887a39a38b6c44","impliedFormat":1},{"version":"2c3bcb8a4ea2fcb4208a06672af7540dd65bf08298d742f041ffa6cbe487cf80","impliedFormat":1},{"version":"1cce0460d75645fc40044c729da9a16c2e0dabe11a58b5e4bfd62ac840a1835d","impliedFormat":1},{"version":"c784a9f75a6f27cf8c43cc9a12c66d68d3beb2e7376e1babfae5ae4998ffbc4a","impliedFormat":1},{"version":"feb4c51948d875fdbbaa402dad77ee40cf1752b179574094b613d8ad98921ce1","impliedFormat":1},{"version":"a6d3984b706cefe5f4a83c1d3f0918ff603475a2a3afa9d247e4114f18b1f1ef","impliedFormat":1},{"version":"b457d606cabde6ea3b0bc32c23dc0de1c84bb5cb06d9e101f7076440fc244727","impliedFormat":1},{"version":"9d59919309a2d462b249abdefba8ca36b06e8e480a77b36c0d657f83a63af465","impliedFormat":1},{"version":"9faa2661daa32d2369ec31e583df91fd556f74bcbd036dab54184303dee4f311","impliedFormat":1},{"version":"ba2e5b6da441b8cf9baddc30520c59dc3ab47ad3674f6cb51f64e7e1f662df12","impliedFormat":1},{"version":"da3d9c69fe4d916969f59b6553ac79b49e8dea8d35084733c396a3555d155f56","impliedFormat":1},{"version":"a589f9f052276a3fc00b75e62f73b93ea568fce3e935b86ed7052945f99d9dc2","impliedFormat":1},{"version":"17230b34bb564a3a2e36f9d3985372ccab4ad1722df2c43f7c5c2b553f68e5db","impliedFormat":1},{"version":"6e5c9272f6b3783be7bdddaf207cccdb8e033be3d14c5beacc03ae9d27d50929","impliedFormat":1},{"version":"9b4f7ff9681448c72abe38ea8eefd7ffe0c3aefe495137f02012a08801373f71","impliedFormat":1},{"version":"0dfe35191a04e8f9dc7caeb9f52f2ee07402736563d12cbccd15fb5f31ac877f","impliedFormat":1},{"version":"1fcf48177cd64f25c193ecc0bf33995d54ea527e29f7faf8cf666f54f3fa0375","impliedFormat":1},{"version":"6ab263df6465e2ed8f1d02922bae18bb5b407020767de021449a4c509859b22e","impliedFormat":1},{"version":"6805621d9f970cda51ab1516e051febe5f3ec0e45b371c7ad98ac2700d13d57c","impliedFormat":1},{"version":"17ed71200119e86ccef2d96b73b02ce8854b76ad6bd21b5021d4269bec527b5f","impliedFormat":1},{"version":"cf3d384d082b933d987c4e2fe7bfb8710adfd9dc8155190056ed6695a25a559e","impliedFormat":1},{"version":"9871b7ee672bc16c78833bdab3052615834b08375cb144e4d2cba74473f4a589","impliedFormat":1},{"version":"c863198dae89420f3c552b5a03da6ed6d0acfa3807a64772b895db624b0de707","impliedFormat":1},{"version":"8b03a5e327d7db67112ebbc93b4f744133eda2c1743dbb0a990c61a8007823ef","impliedFormat":1},{"version":"86c73f2ee1752bac8eeeece234fd05dfcf0637a4fbd8032e4f5f43102faa8eec","impliedFormat":1},{"version":"42fad1f540271e35ca37cecda12c4ce2eef27f0f5cf0f8dd761d723c744d3159","impliedFormat":1},{"version":"ff3743a5de32bee10906aff63d1de726f6a7fd6ee2da4b8229054dfa69de2c34","impliedFormat":1},{"version":"83acd370f7f84f203e71ebba33ba61b7f1291ca027d7f9a662c6307d74e4ac22","impliedFormat":1},{"version":"1445cec898f90bdd18b2949b9590b3c012f5b7e1804e6e329fb0fe053946d5ec","impliedFormat":1},{"version":"0e5318ec2275d8da858b541920d9306650ae6ac8012f0e872fe66eb50321a669","impliedFormat":1},{"version":"cf530297c3fb3a92ec9591dd4fa229d58b5981e45fe6702a0bd2bea53a5e59be","impliedFormat":1},{"version":"c1f6f7d08d42148ddfe164d36d7aba91f467dbcb3caa715966ff95f55048b3a4","impliedFormat":1},{"version":"f4e9bf9103191ef3b3612d3ec0044ca4044ca5be27711fe648ada06fad4bcc85","impliedFormat":1},{"version":"0c1ee27b8f6a00097c2d6d91a21ee4d096ab52c1e28350f6362542b55380059a","impliedFormat":1},{"version":"7677d5b0db9e020d3017720f853ba18f415219fb3a9597343b1b1012cfd699f7","impliedFormat":1},{"version":"bc1c6bc119c1784b1a2be6d9c47addec0d83ef0d52c8fbe1f14a51b4dfffc675","impliedFormat":1},{"version":"52cf2ce99c2a23de70225e252e9822a22b4e0adb82643ab0b710858810e00bf1","impliedFormat":1},{"version":"770625067bb27a20b9826255a8d47b6b5b0a2d3dfcbd21f89904c731f671ba77","impliedFormat":1},{"version":"d1ed6765f4d7906a05968fb5cd6d1db8afa14dbe512a4884e8ea5c0f5e142c80","impliedFormat":1},{"version":"799c0f1b07c092626cf1efd71d459997635911bb5f7fc1196efe449bba87e965","impliedFormat":1},{"version":"2a184e4462b9914a30b1b5c41cf80c6d3428f17b20d3afb711fff3f0644001fd","impliedFormat":1},{"version":"9eabde32a3aa5d80de34af2c2206cdc3ee094c6504a8d0c2d6d20c7c179503cc","impliedFormat":1},{"version":"397c8051b6cfcb48aa22656f0faca2553c5f56187262135162ee79d2b2f6c966","impliedFormat":1},{"version":"a8ead142e0c87dcd5dc130eba1f8eeed506b08952d905c47621dc2f583b1bff9","impliedFormat":1},{"version":"a02f10ea5f73130efca046429254a4e3c06b5475baecc8f7b99a0014731be8b3","impliedFormat":1},{"version":"c2576a4083232b0e2d9bd06875dd43d371dee2e090325a9eac0133fd5650c1cb","impliedFormat":1},{"version":"4c9a0564bb317349de6a24eb4efea8bb79898fa72ad63a1809165f5bd42970dd","impliedFormat":1},{"version":"f40ac11d8859092d20f953aae14ba967282c3bb056431a37fced1866ec7a2681","impliedFormat":1},{"version":"cc11e9e79d4746cc59e0e17473a59d6f104692fd0eeea1bdb2e206eabed83b03","impliedFormat":1},{"version":"b444a410d34fb5e98aa5ee2b381362044f4884652e8bc8a11c8fe14bbd85518e","impliedFormat":1},{"version":"c35808c1f5e16d2c571aa65067e3cb95afeff843b259ecfa2fc107a9519b5392","impliedFormat":1},{"version":"14d5dc055143e941c8743c6a21fa459f961cbc3deedf1bfe47b11587ca4b3ef5","impliedFormat":1},{"version":"a3ad4e1fc542751005267d50a6298e6765928c0c3a8dce1572f2ba6ca518661c","impliedFormat":1},{"version":"f237e7c97a3a89f4591afd49ecb3bd8d14f51a1c4adc8fcae3430febedff5eb6","impliedFormat":1},{"version":"3ffdfbec93b7aed71082af62b8c3e0cc71261cc68d796665faa1e91604fbae8f","impliedFormat":1},{"version":"662201f943ed45b1ad600d03a90dffe20841e725203ced8b708c91fcd7f9379a","impliedFormat":1},{"version":"c9ef74c64ed051ea5b958621e7fb853fe3b56e8787c1587aefc6ea988b3c7e79","impliedFormat":1},{"version":"2462ccfac5f3375794b861abaa81da380f1bbd9401de59ffa43119a0b644253d","impliedFormat":1},{"version":"34baf65cfee92f110d6653322e2120c2d368ee64b3c7981dff08ed105c4f19b0","impliedFormat":1},{"version":"7d8ddf0f021c53099e34ee831a06c394d50371816caa98684812f089b4c6b3d4","impliedFormat":1}],"root":[[86,98]],"options":{"allowSyntheticDefaultImports":true,"composite":true,"declaration":true,"declarationMap":true,"emitDeclarationOnly":true,"esModuleInterop":true,"experimentalDecorators":true,"jsx":4,"module":99,"noEmitOnError":true,"noImplicitOverride":true,"outDir":"./","skipLibCheck":true,"sourceMap":true,"strict":true,"target":7,"useDefineForClassFields":true},"referencedMap":[[201,1],[199,2],[197,3],[198,2],[204,4],[200,1],[202,5],[203,1],[205,2],[207,6],[221,7],[206,3],[222,2],[232,8],[233,9],[234,2],[227,10],[230,11],[237,12],[238,2],[228,2],[239,2],[240,2],[241,2],[242,2],[235,13],[236,2],[231,2],[245,14],[243,14],[246,15],[244,16],[247,14],[248,2],[223,2],[249,2],[251,2],[252,17],[144,18],[145,18],[146,19],[104,20],[147,21],[148,22],[149,23],[99,2],[102,24],[100,2],[101,2],[150,25],[151,26],[152,27],[153,28],[154,29],[155,30],[156,30],[158,9],[157,31],[159,32],[160,33],[161,34],[143,35],[103,2],[162,36],[163,37],[164,38],[196,39],[165,40],[166,41],[167,42],[168,43],[169,44],[170,45],[171,46],[172,47],[173,48],[174,49],[175,49],[176,50],[177,2],[178,51],[180,52],[179,53],[181,54],[182,55],[183,56],[184,57],[185,58],[186,59],[187,60],[188,61],[189,62],[190,63],[191,64],[192,65],[193,66],[194,67],[195,68],[266,69],[253,70],[260,71],[256,72],[254,73],[257,74],[261,75],[262,71],[259,76],[258,77],[263,78],[264,79],[265,80],[255,81],[267,2],[273,82],[268,2],[275,83],[83,2],[225,2],[226,2],[276,84],[81,2],[84,85],[85,84],[301,86],[302,87],[277,88],[280,88],[299,86],[300,86],[290,86],[289,89],[287,86],[282,86],[295,86],[293,86],[297,86],[281,86],[294,86],[298,86],[283,86],[284,86],[296,86],[278,86],[285,86],[286,86],[288,86],[292,86],[303,90],[291,86],[279,86],[316,91],[315,2],[310,90],[312,92],[311,90],[304,90],[305,90],[307,90],[309,90],[313,92],[314,92],[306,92],[308,92],[224,93],[229,94],[208,95],[105,2],[211,96],[219,97],[209,98],[213,2],[210,99],[215,2],[220,100],[216,2],[212,101],[217,2],[214,102],[218,2],[82,2],[250,103],[274,2],[272,104],[269,105],[271,106],[270,2],[79,2],[80,2],[13,2],[14,2],[16,2],[15,2],[2,2],[17,2],[18,2],[19,2],[20,2],[21,2],[22,2],[23,2],[24,2],[3,2],[25,2],[26,2],[4,2],[27,2],[31,2],[28,2],[29,2],[30,2],[32,2],[33,2],[34,2],[5,2],[35,2],[36,2],[37,2],[38,2],[6,2],[42,2],[39,2],[40,2],[41,2],[43,2],[7,2],[44,2],[49,2],[50,2],[45,2],[46,2],[47,2],[48,2],[8,2],[54,2],[51,2],[52,2],[53,2],[55,2],[9,2],[56,2],[57,2],[58,2],[60,2],[59,2],[61,2],[62,2],[10,2],[63,2],[64,2],[65,2],[11,2],[66,2],[67,2],[68,2],[69,2],[70,2],[1,2],[71,2],[72,2],[12,2],[76,2],[74,2],[78,2],[73,2],[77,2],[75,2],[121,107],[131,108],[120,107],[141,109],[112,110],[111,111],[140,105],[134,112],[139,113],[114,114],[128,115],[113,116],[137,117],[109,118],[108,105],[138,119],[110,120],[115,121],[116,2],[119,121],[106,2],[142,122],[132,123],[123,124],[124,125],[126,126],[122,127],[125,128],[135,105],[117,129],[118,130],[127,131],[107,132],[130,123],[129,121],[133,2],[136,133],[86,134],[98,135],[90,136],[91,137],[92,136],[97,138],[88,139],[89,134],[93,136],[94,139],[95,134],[96,137],[87,134]],"latestChangedDtsFile":"./index.d.ts","version":"5.8.2"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@contember/schema",
3
- "version": "2.1.0-alpha.13",
3
+ "version": "2.1.0-alpha.15",
4
4
  "license": "Apache-2.0",
5
5
  "main": "./dist/production/index.js",
6
6
  "typings": "./dist/types/index.d.ts",
package/src/schema/acl.ts CHANGED
@@ -99,13 +99,15 @@ export namespace Acl {
99
99
  readonly variables?: MembershipVariablesMatchRule
100
100
  }
101
101
 
102
- export type MembershipMatchRule = {
103
- readonly [role: string]: MembershipRoleMatchRule
104
- }
102
+ export type MembershipMatchRule =
103
+ | boolean
104
+ | {
105
+ readonly [role: string]: MembershipRoleMatchRule
106
+ }
105
107
 
106
108
  export type TenantPermissions = {
107
- readonly invite?: boolean | MembershipMatchRule
108
- readonly unmanagedInvite?: boolean | MembershipMatchRule
109
+ readonly invite?: MembershipMatchRule
110
+ readonly unmanagedInvite?:MembershipMatchRule
109
111
  readonly view?: MembershipMatchRule
110
112
  readonly manage?: MembershipMatchRule
111
113
  }