declare const associateMyAgentExtension = "\ntype Mutation  {\n    \"Associates the Agent identified by agentId with the currently authenticated user. Can only be used once.\"\n    associateMyAgent(agentId: ID!): Boolean!\n}\n";
declare const hasIds = "\ntype Measure {\n    hasUnitId: ID!\n}\n\ntype ResourceSpecification {\n    defaultUnitOfResourceId: ID!\n}\n\ntype Intent {\n    providerId: ID!\n    receiverId: ID!\n}\n\ntype Commitment {\n    providerId: ID!\n    receiverId: ID!\n    stageId: ID!\n}\n\ntype EconomicEvent {\n    providerId: ID!\n    receiverId: ID!\n    inputOfId: ID!\n    outputOfId: ID!\n}\n\ntype EconomicResource {\n    stageId: ID!\n}\n";
declare const recipes = "\ntype RecipeProcess {\n    processConformsToId: ID!\n    recipeInputs: [RecipeFlow]\n    recipeOutputs: [RecipeFlow]\n}\n\ntype RecipeFlow {\n    providerRole: String\n    receiverRole: String\n    instructions: String\n}\n\ninput RecipeFlowCreateParams {\n    providerRole: String\n    receiverRole: String\n    instructions: String\n}\n\ninput RecipeFlowUpdateParams {\n    providerRole: String\n    receiverRole: String\n    instructions: String\n}\n\ntype RecipeExchange {\n    recipeClauses: [RecipeFlow]\n    recipeReciprocalClauses: [RecipeFlow]\n}\n";
export { associateMyAgentExtension, hasIds, recipes };
