Skip to content

Commit 862148c

Browse files
committed
update vf-graphql to 0.9.0-alpha.11 via forked npm package
1 parent c0d2f13 commit 862148c

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

61 files changed

+369
-77
lines changed

CHANGELOG.md

+3-3

README.md

+1-1

docs/repository-structure.md

+1-1

modules/vf-graphql-holochain/README.md

+2-2

modules/vf-graphql-holochain/index.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import generateResolvers from './resolvers/index.js'
2424
import * as hreaExtensionSchemas from './schema-extensions.js'
2525
import { mapZomeFn, autoConnect, openConnection, sniffHolochainAppCells, remapCellId } from './connection.js'
2626
// @ts-ignore
27-
import { buildSchema, printSchema } from '@valueflows/vf-graphql'
27+
import { buildSchema, printSchema } from '@leosprograms/vf-graphql'
2828

2929
export {
3030
// direct access to resolver callbacks generator for apps that need to bind to other GraphQL schemas

modules/vf-graphql-holochain/mutations/agent.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ import {
1818
OrganizationResponse,
1919
AccountingScope,
2020
Person,
21-
} from '@valueflows/vf-graphql'
21+
} from '@leosprograms/vf-graphql'
2222

2323
// export type AgentResponse = OrganizationResponse
2424
export interface AgentResponse {

modules/vf-graphql-holochain/mutations/agreement.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
AgreementCreateParams,
1414
AgreementUpdateParams,
1515
AgreementResponse,
16-
} from '@valueflows/vf-graphql'
16+
} from '@leosprograms/vf-graphql'
1717

1818
export interface CreateArgs {
1919
agreement: AgreementCreateParams,

modules/vf-graphql-holochain/mutations/commitment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
CommitmentCreateParams,
1414
CommitmentUpdateParams,
1515
CommitmentResponse,
16-
} from '@valueflows/vf-graphql'
16+
} from '@leosprograms/vf-graphql'
1717

1818
export interface CreateArgs {
1919
commitment: CommitmentCreateParams,

modules/vf-graphql-holochain/mutations/economicEvent.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ import {
1414
EconomicResourceCreateParams,
1515
EconomicEventUpdateParams,
1616
EconomicEventResponse,
17-
} from '@valueflows/vf-graphql'
17+
} from '@leosprograms/vf-graphql'
1818

1919
export interface CreateArgs {
2020
event: EconomicEventCreateParams,

modules/vf-graphql-holochain/mutations/economicResource.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { mapZomeFn } from '../connection.js'
1111
import {
1212
EconomicResourceUpdateParams,
1313
EconomicResourceResponse,
14-
} from '@valueflows/vf-graphql'
14+
} from '@leosprograms/vf-graphql'
1515

1616
export interface UpdateArgs {
1717
resource: EconomicResourceUpdateParams,

modules/vf-graphql-holochain/mutations/fulfillment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
FulfillmentCreateParams,
1414
FulfillmentUpdateParams,
1515
FulfillmentResponse,
16-
} from '@valueflows/vf-graphql'
16+
} from '@leosprograms/vf-graphql'
1717

1818
export interface CreateArgs {
1919
fulfillment: FulfillmentCreateParams,

modules/vf-graphql-holochain/mutations/intent.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
IntentCreateParams,
1414
IntentUpdateParams,
1515
IntentResponse,
16-
} from '@valueflows/vf-graphql'
16+
} from '@leosprograms/vf-graphql'
1717

1818
export interface CreateArgs {
1919
intent: IntentCreateParams,

modules/vf-graphql-holochain/mutations/plan.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
PlanCreateParams,
1414
PlanUpdateParams,
1515
PlanResponse,
16-
} from '@valueflows/vf-graphql'
16+
} from '@leosprograms/vf-graphql'
1717

1818
export interface CreateArgs {
1919
plan: PlanCreateParams,

modules/vf-graphql-holochain/mutations/process.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
ProcessCreateParams,
1414
ProcessUpdateParams,
1515
ProcessResponse,
16-
} from '@valueflows/vf-graphql'
16+
} from '@leosprograms/vf-graphql'
1717

1818
export interface CreateArgs {
1919
process: ProcessCreateParams,

modules/vf-graphql-holochain/mutations/processSpecification.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
ProcessSpecificationCreateParams,
1414
ProcessSpecificationUpdateParams,
1515
ProcessSpecificationResponse,
16-
} from '@valueflows/vf-graphql'
16+
} from '@leosprograms/vf-graphql'
1717

1818
export interface CreateArgs {
1919
processSpecification: ProcessSpecificationCreateParams,

modules/vf-graphql-holochain/mutations/proposal.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
ProposalCreateParams,
1414
ProposalUpdateParams,
1515
ProposalResponse,
16-
} from '@valueflows/vf-graphql'
16+
} from '@leosprograms/vf-graphql'
1717

1818
export interface CreateArgs {
1919
proposal: ProposalCreateParams,

modules/vf-graphql-holochain/mutations/proposedIntent.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { deleteHandler } from './'
1111

1212
import {
1313
ProposedIntentResponse,
14-
} from '@valueflows/vf-graphql'
14+
} from '@leosprograms/vf-graphql'
1515

1616
export interface CreateParams {
1717
proposedIntent: CreateRequest,

modules/vf-graphql-holochain/mutations/proposedTo.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ import { deleteHandler } from './'
1111

1212
import {
1313
ProposedToResponse,
14-
} from '@valueflows/vf-graphql'
14+
} from '@leosprograms/vf-graphql'
1515

1616
export interface CreateParams {
1717
proposedTo: CreateRequest,

modules/vf-graphql-holochain/mutations/resourceSpecification.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
ResourceSpecificationCreateParams,
1414
ResourceSpecificationUpdateParams,
1515
ResourceSpecificationResponse,
16-
} from '@valueflows/vf-graphql'
16+
} from '@leosprograms/vf-graphql'
1717

1818
export interface CreateArgs {
1919
resourceSpecification: ResourceSpecificationCreateParams,

modules/vf-graphql-holochain/mutations/satisfaction.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
SatisfactionCreateParams,
1414
SatisfactionUpdateParams,
1515
SatisfactionResponse,
16-
} from '@valueflows/vf-graphql'
16+
} from '@leosprograms/vf-graphql'
1717

1818
export interface CreateArgs {
1919
satisfaction: SatisfactionCreateParams,

modules/vf-graphql-holochain/mutations/unit.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
UnitCreateParams,
1414
UnitUpdateParams,
1515
UnitResponse,
16-
} from '@valueflows/vf-graphql'
16+
} from '@leosprograms/vf-graphql'
1717

1818
export interface CreateArgs {
1919
unit: UnitCreateParams,

modules/vf-graphql-holochain/package.json

+1-1
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
"@graphql-tools/schema": "^9.0.14",
4343
"@graphql-tools/utils": "^9.1.4",
4444
"@holochain/client": "=0.17.0-dev.9",
45-
"@valueflows/vf-graphql": "0.9.0-alpha.9",
45+
"@leosprograms/vf-graphql": "0.9.0-alpha.11",
4646
"big.js": "^6.2.1",
4747
"buffer": "^6.0.3",
4848
"dataloader": "^1.4.0",

modules/vf-graphql-holochain/queries/action.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'
1010

1111
import {
1212
Action,
13-
} from '@valueflows/vf-graphql'
13+
} from '@leosprograms/vf-graphql'
1414

1515
export default (dnaConfig: DNAIdMappings, conductorUri: string) => {
1616
const read = mapZomeFn<ReadParams, Action>(dnaConfig, conductorUri, 'combined', 'action', 'get_action')

modules/vf-graphql-holochain/queries/agent.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import {
1919
OrganizationConnection,
2020
Person,
2121
PersonConnection
22-
} from '@valueflows/vf-graphql'
22+
} from '@leosprograms/vf-graphql'
2323
import { AgentPubKey } from '@holochain/client'
2424
import { AgentResponse } from '../mutations/agent'
2525
import { AgentSearchInput, PagingParams } from '../resolvers/zomeSearchInputTypes.js'

modules/vf-graphql-holochain/queries/agreement.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'
1010

1111
import {
1212
Agreement, AgreementConnection, AgreementResponse,
13-
} from '@valueflows/vf-graphql'
13+
} from '@leosprograms/vf-graphql'
1414
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'
1515

1616
export default (dnaConfig: DNAIdMappings, conductorUri: string) => {

modules/vf-graphql-holochain/queries/commitment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'
1010

1111
import {
1212
Commitment, CommitmentConnection, CommitmentResponse,
13-
} from '@valueflows/vf-graphql'
13+
} from '@leosprograms/vf-graphql'
1414
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'
1515

1616
export default (dnaConfig: DNAIdMappings, conductorUri: string) => {

modules/vf-graphql-holochain/queries/economicEvent.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
EconomicEvent,
1313
EconomicEventConnection,
1414
EconomicEventResponse,
15-
} from '@valueflows/vf-graphql'
15+
} from '@leosprograms/vf-graphql'
1616
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'
1717

1818
export default (dnaConfig: DNAIdMappings, conductorUri: string) => {

modules/vf-graphql-holochain/queries/economicResource.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
EconomicResource,
1313
EconomicResourceConnection,
1414
EconomicResourceResponse,
15-
} from '@valueflows/vf-graphql'
15+
} from '@leosprograms/vf-graphql'
1616
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'
1717

1818
export default (dnaConfig: DNAIdMappings, conductorUri: string) => {

modules/vf-graphql-holochain/queries/fulfillment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'
1010

1111
import {
1212
Fulfillment, FulfillmentConnection, FulfillmentResponse,
13-
} from '@valueflows/vf-graphql'
13+
} from '@leosprograms/vf-graphql'
1414
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'
1515

1616
export default (dnaConfig: DNAIdMappings, conductorUri: string) => {

modules/vf-graphql-holochain/queries/intent.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'
1010

1111
import {
1212
Intent, IntentConnection, IntentResponse,
13-
} from '@valueflows/vf-graphql'
13+
} from '@leosprograms/vf-graphql'
1414
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'
1515

1616
// :TODO: how to inject DNA identifier?

modules/vf-graphql-holochain/queries/plan.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ import {
1212
Plan,
1313
PlanConnection,
1414
PlanResponse,
15-
} from '@valueflows/vf-graphql'
15+
} from '@leosprograms/vf-graphql'
1616
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'
1717

1818
export default (dnaConfig: DNAIdMappings, conductorUri: string) => {

modules/vf-graphql-holochain/queries/process.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'
1010

1111
import {
1212
Process, ProcessConnection, ProcessResponse,
13-
} from '@valueflows/vf-graphql'
13+
} from '@leosprograms/vf-graphql'
1414
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'
1515

1616
export default (dnaConfig: DNAIdMappings, conductorUri: string) => {

modules/vf-graphql-holochain/queries/processSpecification.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'
1010

1111
import {
1212
ProcessSpecification, ProcessSpecificationConnection, ProcessSpecificationResponse,
13-
} from '@valueflows/vf-graphql'
13+
} from '@leosprograms/vf-graphql'
1414
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'
1515

1616
export default (dnaConfig: DNAIdMappings, conductorUri: string) => {

modules/vf-graphql-holochain/queries/proposal.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ import {
1313
ProposedIntent,
1414
ProposalResponse,
1515
ProposalConnection,
16-
} from '@valueflows/vf-graphql'
16+
} from '@leosprograms/vf-graphql'
1717
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'
1818

1919

modules/vf-graphql-holochain/queries/resourceSpecification.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'
1010

1111
import {
1212
ResourceSpecification, ResourceSpecificationConnection, ResourceSpecificationResponse,
13-
} from '@valueflows/vf-graphql'
13+
} from '@leosprograms/vf-graphql'
1414
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'
1515

1616
export default (dnaConfig: DNAIdMappings, conductorUri: string) => {

modules/vf-graphql-holochain/queries/satisfaction.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'
1010

1111
import {
1212
Satisfaction, SatisfactionConnection, SatisfactionResponse,
13-
} from '@valueflows/vf-graphql'
13+
} from '@leosprograms/vf-graphql'
1414
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'
1515

1616
export default (dnaConfig: DNAIdMappings, conductorUri: string) => {

modules/vf-graphql-holochain/queries/unit.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ import { mapZomeFn } from '../connection.js'
1010

1111
import {
1212
Unit, UnitConnection, UnitResponse,
13-
} from '@valueflows/vf-graphql'
13+
} from '@leosprograms/vf-graphql'
1414
import { PagingParams } from '../resolvers/zomeSearchInputTypes.js'
1515

1616
export default (dnaConfig: DNAIdMappings, conductorUri: string) => {

modules/vf-graphql-holochain/resolvers/agent.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ import {
2121
ProposalConnection,
2222
AgentRelationshipConnection,
2323
AgentRelationshipRole
24-
} from '@valueflows/vf-graphql'
24+
} from '@leosprograms/vf-graphql'
2525
import { extractEdges, mapZomeFn } from '../connection.js'
2626
import { DNAIdMappings, DEFAULT_VF_MODULES, VfModule, ByRevision, AddressableIdentifier } from '../types.js'
2727
import { CommitmentSearchInput, EconomicEventSearchInput, EconomicResourceSearchInput, IntentSearchInput, PlanSearchInput, ProcessSearchInput, ProposalSearchInput } from './zomeSearchInputTypes.js'

modules/vf-graphql-holochain/resolvers/agreement.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import {
1717
CommitmentConnection,
1818
EconomicEvent,
1919
EconomicEventConnection,
20-
} from '@valueflows/vf-graphql'
20+
} from '@leosprograms/vf-graphql'
2121
import { CommitmentSearchInput, EconomicEventSearchInput } from './zomeSearchInputTypes.js'
2222
import { AgentResponse } from '../mutations/agent'
2323

modules/vf-graphql-holochain/resolvers/commitment.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import {
2727
AccountingScope,
2828
ProcessSpecification,
2929
EconomicResource,
30-
} from '@valueflows/vf-graphql'
30+
} from '@leosprograms/vf-graphql'
3131

3232
import agentQueries from '../queries/agent.js'
3333
import agreementQueries from '../queries/agreement.js'

modules/vf-graphql-holochain/resolvers/economicEvent.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ import {
2424
ProcessConnection,
2525
ResourceSpecificationResponse,
2626
AccountingScope,
27-
} from '@valueflows/vf-graphql'
27+
} from '@leosprograms/vf-graphql'
2828

2929
import agentQueries from '../queries/agent.js'
3030
import agreementQueries from '../queries/agreement.js'

0 commit comments

Comments
 (0)