Comparing version 2.3.10 to 2.3.15
@@ -12,1 +12,2 @@ import { Action } from '../types'; | ||
} | ||
//# sourceMappingURL=action-handler.d.ts.map |
@@ -41,1 +41,2 @@ /// <reference types="node" /> | ||
export {}; | ||
//# sourceMappingURL=core.d.ts.map |
export declare const baseTypeDefs = "\n type Query \n\n type Mutation \n \n type Identity {\n did: ID!\n }\n \n type Message {\n id: ID!\n threadId: String\n rowId: String!\n type: String!\n sender: Identity\n receiver: Identity\n raw: String!\n data: String\n timestamp: Int\n metaData: [MessageMetaData]\n thread: [Message]\n }\n\n type MessageMetaData {\n type: String!\n id: String\n data: String\n }\n \n"; | ||
//# sourceMappingURL=graphql-base-type-defs.d.ts.map |
import { Core } from '../core'; | ||
import { LastMessageTimestampForInstance } from '../service/service-manager'; | ||
import { Message } from '../message/message'; | ||
interface Context { | ||
export interface Context { | ||
core: Core; | ||
@@ -33,2 +33,2 @@ } | ||
export declare const typeDefs = "\n input LastMessageTimestampForInstance {\n timestamp: Int!\n did: String!\n type: String!\n id: String!\n }\n\n type ServiceMessage {\n id: String!\n threadId: String,\n timestamp: Int,\n sender: String,\n receiver: String,\n type: String,\n raw: String,\n data: String,\n metaData: [MessageMetaData]\n }\n\n extend type Query {\n serviceMessagesSince(ts: [LastMessageTimestampForInstance]!): [ServiceMessage]\n }\n\n extend type Mutation {\n newMessage(raw: String!, sourceType: String!, sourceId: String): Message\n }\n"; | ||
export {}; | ||
//# sourceMappingURL=graphql-core.d.ts.map |
@@ -47,1 +47,2 @@ import { Core } from '../core'; | ||
export declare const typeDefs = "\n type IdentityProvider {\n type: String!\n description: String\n }\n extend type Query {\n identityProviders: [IdentityProvider]\n managedIdentities: [Identity]\n managedIdentitySecret(type: String, did: String): String\n }\n\n extend type Mutation {\n createIdentity(type: String): Identity!\n deleteIdentity(type: String, did: String): Boolean!\n importIdentity(type: String, secret: String): Identity!\n }\n\n extend type Identity {\n type: String\n isManaged: Boolean!\n }\n \n"; | ||
//# sourceMappingURL=graphql-identity-manager.d.ts.map |
@@ -13,1 +13,2 @@ export interface ServiceEndpoint { | ||
} | ||
//# sourceMappingURL=abstract-identity-controller.d.ts.map |
@@ -18,1 +18,2 @@ /// <reference types="node" /> | ||
export {}; | ||
//# sourceMappingURL=abstract-identity-provider.d.ts.map |
@@ -13,1 +13,2 @@ import { SerializedKey } from './abstract-key-management-system'; | ||
} | ||
//# sourceMappingURL=abstract-identity-store.d.ts.map |
@@ -14,1 +14,2 @@ import { AbstractKey, KeyType } from './abstract-key-management-system'; | ||
export {}; | ||
//# sourceMappingURL=abstract-identity.d.ts.map |
@@ -28,1 +28,2 @@ export declare type KeyType = 'Ed25519' | 'Secp256k1'; | ||
export {}; | ||
//# sourceMappingURL=abstract-key-management-system.d.ts.map |
@@ -7,1 +7,2 @@ import { SerializedKey } from './abstract-key-management-system'; | ||
} | ||
//# sourceMappingURL=abstract-key-store.d.ts.map |
@@ -22,1 +22,2 @@ import { AbstractIdentity } from './abstract-identity'; | ||
export {}; | ||
//# sourceMappingURL=identity-manager.d.ts.map |
@@ -14,10 +14,4 @@ export { Core, EventTypes, Resolver } from './core'; | ||
export { AbstractServiceController } from './service/abstract-service-controller'; | ||
import * as Types from './types'; | ||
import * as GqlCore from './graphql/graphql-core'; | ||
import * as GqlIdentityManager from './graphql/graphql-identity-manager'; | ||
declare const Gql: { | ||
baseTypeDefs: string; | ||
Core: typeof GqlCore; | ||
IdentityManager: typeof GqlIdentityManager; | ||
}; | ||
export { Types, Gql }; | ||
export { Action } from './types'; | ||
export { Gql } from './graphql/index'; | ||
//# sourceMappingURL=index.d.ts.map |
"use strict"; | ||
var __importStar = (this && this.__importStar) || function (mod) { | ||
if (mod && mod.__esModule) return mod; | ||
var result = {}; | ||
if (mod != null) for (var k in mod) if (Object.hasOwnProperty.call(mod, k)) result[k] = mod[k]; | ||
result["default"] = mod; | ||
return result; | ||
}; | ||
Object.defineProperty(exports, "__esModule", { value: true }); | ||
@@ -39,13 +32,4 @@ var core_1 = require("./core"); | ||
exports.AbstractServiceController = abstract_service_controller_1.AbstractServiceController; | ||
var Types = __importStar(require("./types")); | ||
exports.Types = Types; | ||
var graphql_base_type_defs_1 = require("./graphql/graphql-base-type-defs"); | ||
var GqlCore = __importStar(require("./graphql/graphql-core")); | ||
var GqlIdentityManager = __importStar(require("./graphql/graphql-identity-manager")); | ||
var Gql = { | ||
baseTypeDefs: graphql_base_type_defs_1.baseTypeDefs, | ||
Core: GqlCore, | ||
IdentityManager: GqlIdentityManager, | ||
}; | ||
exports.Gql = Gql; | ||
var index_1 = require("./graphql/index"); | ||
exports.Gql = index_1.Gql; | ||
//# sourceMappingURL=index.js.map |
@@ -13,1 +13,2 @@ import { Message } from './message'; | ||
} | ||
//# sourceMappingURL=abstract-message-validator.d.ts.map |
@@ -32,1 +32,2 @@ export interface MetaData { | ||
} | ||
//# sourceMappingURL=message.d.ts.map |
@@ -23,1 +23,2 @@ /// <reference types="node" /> | ||
export {}; | ||
//# sourceMappingURL=abstract-service-controller.d.ts.map |
@@ -31,1 +31,2 @@ /// <reference types="node" /> | ||
export {}; | ||
//# sourceMappingURL=service-manager.d.ts.map |
@@ -5,1 +5,2 @@ export interface Action { | ||
} | ||
//# sourceMappingURL=types.d.ts.map |
@@ -6,2 +6,13 @@ # Change Log | ||
## [2.3.15](https://github.com/uport-project/daf/compare/v2.3.14...v2.3.15) (2020-03-02) | ||
### Bug Fixes | ||
* Typescript types ([72c1899](https://github.com/uport-project/daf/commit/72c18993ddba6a7a75ae8397e6549cdd29dccb31)) | ||
## [2.3.10](https://github.com/uport-project/daf/compare/v2.3.9...v2.3.10) (2020-02-25) | ||
@@ -8,0 +19,0 @@ |
{ | ||
"name": "daf-core", | ||
"description": "DID Agent Framework Core", | ||
"version": "2.3.10", | ||
"version": "2.3.15", | ||
"main": "build/index.js", | ||
@@ -30,3 +30,3 @@ "types": "build/index.d.ts", | ||
"keywords": [], | ||
"gitHead": "132daeca676f11ac066426f9e5f6ba767a3fce20" | ||
"gitHead": "2af44b98932255b1448f36c5118583c19d33af83" | ||
} |
@@ -6,3 +6,3 @@ import { Core } from '../core' | ||
interface Context { | ||
export interface Context { | ||
core: Core | ||
@@ -9,0 +9,0 @@ } |
@@ -19,13 +19,3 @@ export { Core, EventTypes, Resolver } from './core' | ||
export { AbstractServiceController } from './service/abstract-service-controller' | ||
import * as Types from './types' | ||
import { baseTypeDefs } from './graphql/graphql-base-type-defs' | ||
import * as GqlCore from './graphql/graphql-core' | ||
import * as GqlIdentityManager from './graphql/graphql-identity-manager' | ||
const Gql = { | ||
baseTypeDefs, | ||
Core: GqlCore, | ||
IdentityManager: GqlIdentityManager, | ||
} | ||
export { Types, Gql } | ||
export { Action } from './types' | ||
export { Gql } from './graphql/index' |
Sorry, the diff of this file is not supported yet
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
157485
103
2522